From 0f5fc696f0cbacad95cf53697ebaf9bc86d1852d Mon Sep 17 00:00:00 2001 From: Kodjo Sossouvi Date: Fri, 24 Oct 2025 12:24:10 +0200 Subject: [PATCH] Added icons Updated README.md Started test framework utils --- README.md | 180 +- requirements.txt | 34 + src/myfasthtml/controls/__init__.py | 0 src/myfasthtml/controls/button.py | 11 + src/myfasthtml/core/__init__.py | 0 src/myfasthtml/core/commands.py | 109 + src/myfasthtml/core/constants.py | 4 + src/myfasthtml/core/testclient.py | 342 + src/myfasthtml/core/utils.py | 3 + src/myfasthtml/icons/Readme.md | 21 + src/myfasthtml/icons/__init__.py | 0 src/myfasthtml/icons/antd.py | 1679 ++ src/myfasthtml/icons/carbon.py | 8907 +++++++ src/myfasthtml/icons/fa.py | 1617 ++ src/myfasthtml/icons/fluent.py | 30900 +++++++++++++++++++++++++ src/myfasthtml/icons/ionicons4.py | 8653 +++++++ src/myfasthtml/icons/ionicons5.py | 5295 +++++ src/myfasthtml/icons/material.py | 19062 +++++++++++++++ src/myfasthtml/icons/tabler.py | 10870 +++++++++ src/myfasthtml/icons/update_icons.py | 51 + src/myfasthtml/pages/LoginPage.py | 86 + src/myfasthtml/pages/__init__.py | 0 tests/test_commands.py | 25 + tests/test_integration_commands.py | 26 + tests/test_mytestclient.py | 326 + 25 files changed, 88199 insertions(+), 2 deletions(-) create mode 100644 requirements.txt create mode 100644 src/myfasthtml/controls/__init__.py create mode 100644 src/myfasthtml/controls/button.py create mode 100644 src/myfasthtml/core/__init__.py create mode 100644 src/myfasthtml/core/commands.py create mode 100644 src/myfasthtml/core/constants.py create mode 100644 src/myfasthtml/core/testclient.py create mode 100644 src/myfasthtml/core/utils.py create mode 100644 src/myfasthtml/icons/Readme.md create mode 100644 src/myfasthtml/icons/__init__.py create mode 100644 src/myfasthtml/icons/antd.py create mode 100644 src/myfasthtml/icons/carbon.py create mode 100644 src/myfasthtml/icons/fa.py create mode 100644 src/myfasthtml/icons/fluent.py create mode 100644 src/myfasthtml/icons/ionicons4.py create mode 100644 src/myfasthtml/icons/ionicons5.py create mode 100644 src/myfasthtml/icons/material.py create mode 100644 src/myfasthtml/icons/tabler.py create mode 100644 src/myfasthtml/icons/update_icons.py create mode 100644 src/myfasthtml/pages/LoginPage.py create mode 100644 src/myfasthtml/pages/__init__.py create mode 100644 tests/test_commands.py create mode 100644 tests/test_integration_commands.py create mode 100644 tests/test_mytestclient.py diff --git a/README.md b/README.md index 22189e0..3ac2fb5 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,179 @@ -# MyFastHtml Module +# MyFastHtml -Set of tools to quickly create HTML pages using FastHTML. \ No newline at end of file +A utility library designed to simplify the development of FastHtml applications by providing: +- Predefined pages for common functionalities (e.g., authentication, user management). +- A command management system to facilitate client-server interactions. +- Helpers to create interactive controls more easily. +- A system for control state persistence. + +--- + +## Features + +- **Dynamic HTML with HTMX**: Simplify dynamic interaction using attributes like `hx-post` and custom routes like `/commands`. +- **Command management**: Write server-side logic in Python while abstracting the complexities of HTMX. +- **Control helpers**: Easily create reusable components like buttons. +- **Predefined Pages (Roadmap)**: Include common pages like login, user management, and customizable dashboards. + +> _**Note:** Support for state persistence is currently under construction._ + +--- + +## Installation + +Ensure you have Python >= 3.12 installed, then install the library with `pip`: + +```bash +pip install myfasthtml +``` + +--- + +## Quick Start + +Here’s a simple example of creating an **interactive button** linked to a command: + +### Example: Button with a Command + +```python +from fasthtml.fastapp import fast_app +from myfasthtml.core.commands import Command +from myfasthtml.controls.button import mk_button + +# Define a simple command action +def say_hello(): + return "Hello, FastHtml!" + +# Create the command +hello_command = Command("say_hello", "Responds with a greeting", say_hello) + +# Create the app and define a route with a button +app, rt = fast_app(default_hdrs=False) + +@rt("/") +def get_homepage(): + return mk_button("Click Me!", command=hello_command) +``` + +- When the button is clicked, the `say_hello` command will be executed, and the server will return the response. +- HTMX automatically handles the client-server interaction behind the scenes. + +--- + +## Planned Features (Roadmap) + +### Predefined Pages +The library will include predefined pages for: +- **Authentication**: Login, signup, password reset. +- **User Management**: User profile and administration pages. +- **Dashboard Templates**: Fully customizable dashboard components. +- **Error Pages**: Detailed and styled error messages (e.g., 404, 500). + +### State Persistence +Controls will have their state automatically synchronized between the client and the server. This feature is currently under construction. + +--- + +## Advanced Features + +### Command Management System +Commands allow you to simplify frontend/backend interaction. Instead of writing HTMX attributes manually, you can define Python methods and handle them as commands. + +#### Example +Here’s how `Command` simplifies dynamic interaction: + +```python +from myfasthtml.core.commands import Command + +# Define a command +def custom_action(data): + return f"Received: {data}" + +my_command = Command("custom", "Handles custom logic", custom_action) + +# Get the HTMX parameters automatically +htmx_attrs = my_command.get_htmx_params() +print(htmx_attrs) + +# Output: +# { +# "hx-post": "/commands", +# "hx-vals": '{"c_id": "unique-command-id"}' +# } +``` + +Use the `get_htmx_params()` method to directly integrate commands into HTML components. + +--- + +## Contributing + +We welcome contributions! To get started: +1. Fork the repository. +2. Create a feature branch. +3. Submit a pull request with clear descriptions of your changes. + +For detailed guidelines, see the [Contributing Section](./CONTRIBUTING.md) (coming soon). + +--- + +## License + +This project is licensed under the terms of the MIT License. See the `LICENSE` file for details. + +--- + +## Technical Overview + +### Project Structure + +``` +MyFastHtml +├── src +│ ├── myfasthtml/ # Main library code +│ │ ├── core/commands.py # Command definitions +│ │ ├── controls/button.py # Control helpers +│ │ └── pages/LoginPage.py # Predefined Login page +│ └── ... +├── tests # Unit and integration tests +├── LICENSE # License file (MIT) +├── README.md # Project documentation +└── pyproject.toml # Build configuration +``` + +### Notable Classes and Methods + +#### 1. `Command` +Represents a backend action with server communication. +- **Attributes:** + - `id`: Unique identifier for the command. + - `name`: Command name (e.g., `say_hello`). + - `description`: Description of the command. +- **Method:** `get_htmx_params()` generates HTMX attributes. + +#### 2. `mk_button` +Simplifies the creation of interactive buttons linked to commands. +- **Arguments:** + - `element` (str): The label for the button. + - `command` (Command): Command associated with the button. + - `kwargs`: Additional button attributes. + +#### 3. `LoginPage` +Predefined login page that provides a UI template ready for integration. +- **Constructor Parameters:** + - `settings_manager`: Configuration/settings object. + - `error_message`: Optional error message to display. + - `success_message`: Optional success message to display. + +--- + +## Entry Points + +- `/commands`: Handles HTMX requests from the command attributes. + +--- + +## Exceptions + +No custom exceptions defined yet. (Placeholder for future use.) +``` \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..5a73794 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,34 @@ +anyio==4.11.0 +apsw==3.50.4.0 +apswutils==0.1.0 +beautifulsoup4==4.14.2 +certifi==2025.10.5 +click==8.3.0 +fastcore==1.8.13 +fastlite==0.2.1 +h11==0.16.0 +httpcore==1.0.9 +httptools==0.7.1 +httpx==0.28.1 +idna==3.11 +iniconfig==2.3.0 +itsdangerous==2.2.0 +oauthlib==3.3.1 +packaging==25.0 +pluggy==1.6.0 +Pygments==2.19.2 +pytest==8.4.2 +python-dateutil==2.9.0.post0 +python-dotenv==1.1.1 +python-fasthtml==0.12.30 +python-multipart==0.0.20 +PyYAML==6.0.3 +six==1.17.0 +sniffio==1.3.1 +soupsieve==2.8 +starlette==0.48.0 +typing_extensions==4.15.0 +uvicorn==0.38.0 +uvloop==0.22.1 +watchfiles==1.1.1 +websockets==15.0.1 diff --git a/src/myfasthtml/controls/__init__.py b/src/myfasthtml/controls/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/myfasthtml/controls/button.py b/src/myfasthtml/controls/button.py new file mode 100644 index 0000000..bbcc933 --- /dev/null +++ b/src/myfasthtml/controls/button.py @@ -0,0 +1,11 @@ +from fasthtml.components import * + +from myfasthtml.core.commands import Command + + +def mk_button(element, command: Command = None, **kwargs): + if command is None: + return Button(element, **kwargs) + + htmx = command.get_htmx_params() + return Button(element, **htmx, **kwargs) diff --git a/src/myfasthtml/core/__init__.py b/src/myfasthtml/core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/myfasthtml/core/commands.py b/src/myfasthtml/core/commands.py new file mode 100644 index 0000000..68e3042 --- /dev/null +++ b/src/myfasthtml/core/commands.py @@ -0,0 +1,109 @@ +import logging +import uuid +from typing import Optional + +from fasthtml.fastapp import fast_app + +from myfasthtml.core.constants import Routes, ROUTE_ROOT + +commands_app, rt = fast_app() +logger = logging.getLogger("Commands") + + +class BaseCommand: + """ + Represents the base command class for defining executable actions. + + This class serves as a foundation for commands that can be registered, + executed, and utilized within a system. Each command has a unique identifier, + a name, and a description. Commands should override the `execute` method + to provide specific functionality. + + :ivar id: A unique identifier for the command. + :type id: uuid.UUID + :ivar name: The name of the command. + :type name: str + :ivar description: A brief description of the command's functionality. + :type description: str + """ + + def __init__(self, name, description): + self.id = uuid.uuid4() + self.name = name + self.description = description + + # register the command + CommandsManager.register(self) + + def get_htmx_params(self): + return { + "hx-post": f"{ROUTE_ROOT}{Routes.Commands}", + "hx-vals": f'{{"c_id": "{self.id}"}}', + } + + def execute(self): + raise NotImplementedError + + +class Command(BaseCommand): + """ + Represents a command that encapsulates a callable action with parameters. + + This class is designed to hold a defined action (callback) alongside its arguments + and keyword arguments. + + :ivar name: The name of the command. + :type name: str + :ivar description: A brief description of the command. + :type description: str + :ivar callback: The function or callable to be executed. + :type callback: Callable + :ivar args: Positional arguments to be passed to the callback. + :type args: tuple + :ivar kwargs: Keyword arguments to be passed to the callback. + :type kwargs: dict + """ + + def __init__(self, name, description, callback, *args, **kwargs): + super().__init__(name, description) + self.callback = callback + self.args = args + self.kwargs = kwargs + + def execute(self): + return self.callback(*self.args, **self.kwargs) + + def __str__(self): + return f"Command({self.name})" + + +class CommandsManager: + commands = {} + + @staticmethod + def register(command: BaseCommand): + CommandsManager.commands[str(command.id)] = command + + @staticmethod + def get_command(command_id: str) -> Optional[BaseCommand]: + return CommandsManager.commands.get(command_id) + + @staticmethod + def reset(): + return CommandsManager.commands.clear() + + +@rt(Routes.Commands) +def post(session: str, c_id: str): + """ + Default routes for all commands. + :param session: + :param c_id: + :return: + """ + logger.debug(f"Entering {Routes.Commands} with {session=}, {c_id=}") + command = CommandsManager.get_command(c_id) + if command: + return command.execute() + + return None diff --git a/src/myfasthtml/core/constants.py b/src/myfasthtml/core/constants.py new file mode 100644 index 0000000..415d59c --- /dev/null +++ b/src/myfasthtml/core/constants.py @@ -0,0 +1,4 @@ +ROUTE_ROOT = "/myfasthtml" + +class Routes: + Commands = "/commands" \ No newline at end of file diff --git a/src/myfasthtml/core/testclient.py b/src/myfasthtml/core/testclient.py new file mode 100644 index 0000000..565ee5c --- /dev/null +++ b/src/myfasthtml/core/testclient.py @@ -0,0 +1,342 @@ +from bs4 import BeautifulSoup, Tag +from fasthtml.common import FastHTML +from starlette.testclient import TestClient + + +class TestableElement: + """ + Represents an HTML element that can be interacted with in tests. + + This class will be used for future interactions like clicking elements + or verifying element properties. + """ + + def __init__(self, client, html_fragment): + """ + Initialize a testable element. + + Args: + client: The MyTestClient instance. + ft: The FastHTML element representation. + """ + self.client = client + self.html_fragment = html_fragment + + def click(self): + """Click the element (to be implemented).""" + pass + + def matches(self, ft): + """Check if element matches given FastHTML element (to be implemented).""" + pass + + +class MyTestClient: + """ + A test client helper for FastHTML applications that provides + a more user-friendly API for testing HTML responses. + + This class wraps Starlette's TestClient and provides methods + to verify page content in a way similar to NiceGui's test fixtures. + """ + + def __init__(self, app: FastHTML, parent_levels: int = 1): + """ + Initialize the test client. + + Args: + app: The FastHTML application to test. + parent_levels: Number of parent levels to show in error messages (default: 1). + """ + self.app = app + self.client = TestClient(app) + self._content = None + self._soup = None + self.parent_levels = parent_levels + + def open(self, path: str): + """ + Open a page and store its content for subsequent assertions. + + Args: + path: The URL path to request (e.g., '/home', '/api/users'). + + Returns: + self: Returns the client instance for method chaining. + + Raises: + AssertionError: If the response status code is not 200. + """ + res = self.client.get(path) + assert res.status_code == 200, ( + f"Failed to open '{path}'. " + f"status code={res.status_code} : reason='{res.text}'" + ) + self.set_content(res.text) + return self + + def should_see(self, text: str): + """ + Assert that the given text is present in the visible page content. + + This method parses the HTML and searches only in the visible text, + ignoring HTML tags and attributes. + + Args: + text: The text string to search for (case-sensitive). + + Returns: + self: Returns the client instance for method chaining. + + Raises: + AssertionError: If the text is not found in the page content. + ValueError: If no page has been opened yet. + """ + if self._content is None: + raise ValueError( + "No page content available. Call open() before should_see()." + ) + + visible_text = self._soup.get_text() + + if text not in visible_text: + # Provide a snippet of the actual content for debugging + snippet_length = 200 + content_snippet = ( + visible_text[:snippet_length] + "..." + if len(visible_text) > snippet_length + else visible_text + ) + raise AssertionError( + f"Expected to see '{text}' in page content but it was not found.\n" + f"Visible content (first {snippet_length} chars): {content_snippet}" + ) + + return self + + def should_not_see(self, text: str): + """ + Assert that the given text is NOT present in the visible page content. + + This method parses the HTML and searches only in the visible text, + ignoring HTML tags and attributes. + + Args: + text: The text string that should not be present (case-sensitive). + + Returns: + self: Returns the client instance for method chaining. + + Raises: + AssertionError: If the text is found in the page content. + ValueError: If no page has been opened yet. + """ + if self._content is None: + raise ValueError( + "No page content available. Call open() before should_not_see()." + ) + + visible_text = self._soup.get_text() + + if text in visible_text: + element = self._find_visible_text_element(self._soup, text) + + if element: + context = self._format_element_with_context(element, self.parent_levels) + error_msg = ( + f"Expected NOT to see '{text}' in page content but it was found.\n" + f"Found in:\n{context}" + ) + else: + error_msg = ( + f"Expected NOT to see '{text}' in page content but it was found.\n" + f"Unable to locate the element containing this text." + ) + + raise AssertionError(error_msg) + + return self + + def find_element(self, selector: str): + """ + Find a single HTML element using a CSS selector. + + This method searches for elements matching the given CSS selector. + It expects to find exactly one matching element. + + Args: + selector: A CSS selector string (e.g., '#my-id', '.my-class', 'button.primary'). + + Returns: + TestableElement: A testable element wrapping the HTML fragment. + + Raises: + ValueError: If no page has been opened yet. + AssertionError: If no element or multiple elements match the selector. + + Examples: + element = client.open('/').find_element('#login-button') + element = client.find_element('button.primary') + """ + if self._content is None: + raise ValueError( + "No page content available. Call open() before find_element()." + ) + + results = self._soup.select(selector) + + if len(results) == 0: + raise AssertionError( + f"No element found matching selector '{selector}'." + ) + elif len(results) == 1: + return TestableElement(self, str(results[0])) + else: + raise AssertionError( + f"Found {len(results)} elements matching selector '{selector}'. Expected exactly 1." + ) + + def get_content(self) -> str: + """ + Get the raw HTML content of the last opened page. + + Returns: + The HTML content as a string, or None if no page has been opened. + """ + return self._content + + def set_content(self, content: str): + """ + Set the HTML content and parse it with BeautifulSoup. + + Args: + content: The HTML content string to set. + """ + self._content = content + self._soup = BeautifulSoup(content, 'html.parser') + + @staticmethod + def _find_visible_text_element(soup, text: str): + """ + Find the first element containing the visible text. + + This method traverses the BeautifulSoup tree to find the first element + whose visible text content (including descendants) contains the search text. + + Args: + soup: BeautifulSoup object representing the parsed HTML. + text: The text to search for. + + Returns: + BeautifulSoup element containing the text, or None if not found. + """ + # Traverse all elements in the document + for element in soup.descendants: + # Skip NavigableString nodes, we want Tag elements + if not isinstance(element, Tag): + continue + + # Get visible text of this element and its descendants + element_text = element.get_text() + + # Check if our search text is in this element's visible text + if text in element_text: + # Found it! But we want the smallest element containing the text + # So let's check if any of its children also contain the text + found_in_child = False + + for child in element.children: + if isinstance(child, Tag) and text in child.get_text(): + found_in_child = True + break + + # If no child contains the text, this is our target element + if not found_in_child: + return element + + return None + + @staticmethod + def _indent_html(html_str: str, indent: int = 2): + """ + Add indentation to HTML string. + + Args: + html_str: HTML string to indent. + indent: Number of spaces for indentation. + + Returns: + str: Indented HTML string. + """ + lines = html_str.split('\n') + indented_lines = [' ' * indent + line for line in lines if line.strip()] + return '\n'.join(indented_lines) + + def _format_element_with_context(self, element, parent_levels: int): + """ + Format an element with its parent context for display. + + Args: + element: BeautifulSoup element to format. + parent_levels: Number of parent levels to include. + + Returns: + str: Formatted HTML string with indentation. + """ + # Collect the element and its parents + elements_to_show = [element] + current = element + + for _ in range(parent_levels): + if current.parent and current.parent.name: # Skip NavigableString parents + elements_to_show.insert(0, current.parent) + current = current.parent + else: + break + + # Format the top-level element with proper indentation + if len(elements_to_show) == 1: + return self._indent_html(str(element), indent=2) + + # Build the nested structure + result = self._build_nested_context(elements_to_show, element) + return self._indent_html(result, indent=2) + + def _build_nested_context(self, elements_chain, target_element): + """ + Build nested HTML context showing parents and target element. + + Args: + elements_chain: List of elements from outermost parent to target. + target_element: The element that contains the searched text. + + Returns: + str: Nested HTML structure. + """ + if len(elements_chain) == 1: + return str(target_element) + + # Get the outermost element + outer = elements_chain[0] + + # Start with opening tag + result = f"<{outer.name}" + if outer.attrs: + attrs = ' '.join(f'{k}="{v}"' if not isinstance(v, list) else f'{k}="{" ".join(v)}"' + for k, v in outer.attrs.items()) + result += f" {attrs}" + result += ">\n" + + # Add nested content + if len(elements_chain) == 2: + # This is the target element + result += self._indent_html(str(target_element), indent=2) + "\n" + else: + # Recursive call for deeper nesting + nested = self._build_nested_context(elements_chain[1:], target_element) + result += self._indent_html(nested, indent=2) + "\n" + + # Closing tag + result += f"" + + return result diff --git a/src/myfasthtml/core/utils.py b/src/myfasthtml/core/utils.py new file mode 100644 index 0000000..274a769 --- /dev/null +++ b/src/myfasthtml/core/utils.py @@ -0,0 +1,3 @@ +from myfasthtml.core.commands import Command +from myfasthtml.core.constants import ROUTE_ROOT, Routes + diff --git a/src/myfasthtml/icons/Readme.md b/src/myfasthtml/icons/Readme.md new file mode 100644 index 0000000..ecc3baa --- /dev/null +++ b/src/myfasthtml/icons/Readme.md @@ -0,0 +1,21 @@ +# Generate Icons + +Create the icons files for FastHtml applications. + +## How to generate the svg files +```sh +npm i -D @sicons/fa +npm i -D @sicons/fluent +npm i -D @sicons/ionicons4 +npm i -D @sicons/ionicons5 +npm i -D @sicons/antd +npm i -D @sicons/material +npm i -D @sicons/tabler +npm i -D @sicons/carbon +``` +Update the root folder in `update_icons.py` to point to the root folder of the icons. + +## +```sh +python update_icons.py +``` \ No newline at end of file diff --git a/src/myfasthtml/icons/__init__.py b/src/myfasthtml/icons/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/myfasthtml/icons/antd.py b/src/myfasthtml/icons/antd.py new file mode 100644 index 0000000..71f4ac4 --- /dev/null +++ b/src/myfasthtml/icons/antd.py @@ -0,0 +1,1679 @@ +# @sicons/antd +# +# SVG icons integrated from [`ant-design-icons`](https://github.com/ant-design/ant-design-icons) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_bug_outlined = NotStr(''' + + +''') +icon_account_book_filled = NotStr('''''') +icon_rise_outlined = NotStr('''''') +icon_api_twotone = NotStr(''' + + +''') +icon_info_circle_filled = NotStr('''''') +icon_calendar_twotone = NotStr(''' + + +''') +icon_dashboard_twotone = NotStr(''' + + + + +''') +icon_signal_filled = NotStr(''' + + +''') +icon_fund_outlined = NotStr('''''') +icon_backward_filled = NotStr('''''') +icon_environment_outlined = NotStr('''''') +icon_hourglass_twotone = NotStr(''' + + +''') +icon_build_outlined = NotStr('''''') +icon_carry_out_twotone = NotStr(''' + + + +''') +icon_group_outlined = NotStr(''' + + + +''') +icon_gift_twotone = NotStr(''' + + +''') +icon_clock_circle_filled = NotStr('''''') +icon_facebook_outlined = NotStr('''''') +icon_question_circle_twotone = NotStr(''' + + + +''') +icon_switcher_outlined = NotStr('''''') +icon_book_outlined = NotStr('''''') +icon_google_plus_square_filled = NotStr('''''') +icon_clock_circle_twotone = NotStr(''' + + + +''') +icon_copyright_circle_twotone = NotStr(''' + + + +''') +icon_project_outlined = NotStr('''''') +icon_security_scan_outlined = NotStr('''''') +icon_pie_chart_twotone = NotStr(''' + + + + + +''') +icon_merge_cells_outlined = NotStr(''' + + +''') +icon_book_filled = NotStr('''''') +icon_subnode_outlined = NotStr(''' + + +''') +icon_play_square_twotone = NotStr(''' + + + +''') +icon_whats_app_outlined = NotStr(''' + + + +''') +icon_phone_outlined = NotStr('''''') +icon_coffee_outlined = NotStr('''''') +icon_up_circle_filled = NotStr('''''') +icon_security_scan_twotone = NotStr(''' + + + + +''') +icon_file_zip_outlined = NotStr('''''') +icon_fire_filled = NotStr('''''') +icon_mobile_filled = NotStr('''''') +icon_reload_outlined = NotStr('''''') +icon_reddit_circle_filled = NotStr('''''') +icon_wallet_outlined = NotStr('''''') +icon_tag_outlined = NotStr('''''') +icon_check_square_outlined = NotStr(''' + + +''') +icon_scan_outlined = NotStr('''''') +icon_copy_filled = NotStr('''''') +icon_import_outlined = NotStr('''''') +icon_info_circle_outlined = NotStr(''' + + +''') +icon_safety_certificate_outlined = NotStr('''''') +icon_smile_filled = NotStr('''''') +icon_meh_outlined = NotStr('''''') +icon_security_scan_filled = NotStr('''''') +icon_idcard_filled = NotStr('''''') +icon_file_markdown_outlined = NotStr('''''') +icon_code_filled = NotStr('''''') +icon_github_outlined = NotStr('''''') +icon_dribbble_circle_filled = NotStr('''''') +icon_property_safety_twotone = NotStr(''' + + + +''') +icon_to_top_outlined = NotStr('''''') +icon_dashboard_filled = NotStr('''''') +icon_split_cells_outlined = NotStr(''' + + +''') +icon_dollar_twotone = NotStr(''' + + + + +''') +icon_export_outlined = NotStr('''''') +icon_rotate_left_outlined = NotStr(''' + + + +''') +icon_ellipsis_outlined = NotStr('''''') +icon_contacts_outlined = NotStr('''''') +icon_pound_circle_outlined = NotStr('''''') +icon_medicine_box_twotone = NotStr(''' + + + +''') +icon_file_ppt_filled = NotStr('''''') +icon_gold_filled = NotStr('''''') +icon_layout_filled = NotStr('''''') +icon_sisternode_outlined = NotStr(''' + + +''') +icon_forward_filled = NotStr('''''') +icon_cloud_upload_outlined = NotStr(''' + + +''') +icon_border_bottom_outlined = NotStr('''''') +icon_shopping_outlined = NotStr('''''') +icon_crown_twotone = NotStr(''' + + + + +''') +icon_check_outlined = NotStr('''''') +icon_gift_filled = NotStr('''''') +icon_arrow_up_outlined = NotStr('''''') +icon_compass_filled = NotStr('''''') +icon_file_zip_filled = NotStr('''''') +icon_node_index_outlined = NotStr(''' + + +''') +icon_file_zip_twotone = NotStr(''' + + + + +''') +icon_file_word_filled = NotStr('''''') +icon_code_twotone = NotStr(''' + + + +''') +icon_compass_twotone = NotStr(''' + + + +''') +icon_verified_outlined = NotStr(''' + + + + +''') +icon_file_outlined = NotStr('''''') +icon_sketch_outlined = NotStr('''''') +icon_form_outlined = NotStr(''' + + +''') +icon_caret_right_outlined = NotStr('''''') +icon_column_height_outlined = NotStr('''''') +icon_up_circle_twotone = NotStr(''' + + + +''') +icon_file_markdown_filled = NotStr('''''') +icon_carry_out_outlined = NotStr('''''') +icon_printer_filled = NotStr('''''') +icon_windows_outlined = NotStr('''''') +icon_global_outlined = NotStr('''''') +icon_money_collect_filled = NotStr('''''') +icon_codepen_circle_filled = NotStr('''''') +icon_delete_outlined = NotStr('''''') +icon_dingtalk_square_filled = NotStr('''''') +icon_menu_unfold_outlined = NotStr('''''') +icon_man_outlined = NotStr('''''') +icon_file_image_outlined = NotStr('''''') +icon_dingtalk_circle_filled = NotStr('''''') +icon_code_sandbox_circle_filled = NotStr('''''') +icon_dropbox_square_filled = NotStr('''''') +icon_taobao_circle_filled = NotStr('''''') +icon_read_filled = NotStr('''''') +icon_unordered_list_outlined = NotStr('''''') +icon_insert_row_below_outlined = NotStr(''' + + +''') +icon_build_filled = NotStr('''''') +icon_dribbble_outlined = NotStr('''''') +icon_file_excel_outlined = NotStr('''''') +icon_wallet_filled = NotStr('''''') +icon_close_square_filled = NotStr('''''') +icon_smile_outlined = NotStr('''''') +icon_pause_outlined = NotStr('''''') +icon_node_expand_outlined = NotStr(''' + + +''') +icon_meh_filled = NotStr('''''') +icon_star_outlined = NotStr('''''') +icon_slack_circle_filled = NotStr('''''') +icon_edit_twotone = NotStr(''' + + +''') +icon_file_add_twotone = NotStr(''' + + + +''') +icon_apple_outlined = NotStr('''''') +icon_dollar_circle_filled = NotStr('''''') +icon_video_camera_filled = NotStr('''''') +icon_field_binary_outlined = NotStr(''' + + +''') +icon_behance_square_outlined = NotStr('''''') +icon_strikethrough_outlined = NotStr('''''') +icon_arrow_left_outlined = NotStr('''''') +icon_ungroup_outlined = NotStr(''' + + +''') +icon_dislike_twotone = NotStr(''' + + +''') +icon_behance_square_filled = NotStr('''''') +icon_file_ppt_twotone = NotStr(''' + + + + +''') +icon_eye_invisible_outlined = NotStr(''' + + +''') +icon_inbox_outlined = NotStr('''''') +icon_fund_view_outlined = NotStr(''' + + + + + +''') +icon_fast_forward_filled = NotStr('''''') +icon_ordered_list_outlined = NotStr('''''') +icon_setting_twotone = NotStr(''' + + + + +''') +icon_phone_filled = NotStr('''''') +icon_notification_twotone = NotStr(''' + + +''') +icon_profile_filled = NotStr('''''') +icon_file_sync_outlined = NotStr('''''') +icon_message_outlined = NotStr('''''') +icon_zoom_in_outlined = NotStr('''''') +icon_bg_colors_outlined = NotStr('''''') +icon_shake_outlined = NotStr('''''') +icon_plus_circle_outlined = NotStr(''' + + +''') +icon_car_twotone = NotStr(''' + + + + +''') +icon_eye_outlined = NotStr('''''') +icon_minus_circle_twotone = NotStr(''' + + + +''') +icon_yuque_filled = NotStr('''''') +icon_rocket_twotone = NotStr(''' + + + +''') +icon_step_backward_outlined = NotStr('''''') +icon_check_circle_twotone = NotStr(''' + + + +''') +icon_html5_outlined = NotStr('''''') +icon_usergroup_delete_outlined = NotStr('''''') +icon_amazon_square_filled = NotStr('''''') +icon_yahoo_outlined = NotStr('''''') +icon_branches_outlined = NotStr('''''') +icon_database_outlined = NotStr('''''') +icon_linkedin_outlined = NotStr('''''') +icon_yahoo_filled = NotStr('''''') +icon_transaction_outlined = NotStr('''''') +icon_caret_left_filled = NotStr('''''') +icon_like_outlined = NotStr('''''') +icon_down_square_filled = NotStr('''''') +icon_exclamation_outlined = NotStr('''''') +icon_issues_close_outlined = NotStr('''''') +icon_user_outlined = NotStr('''''') +icon_left_square_twotone = NotStr(''' + + + +''') +icon_pause_circle_outlined = NotStr('''''') +icon_unlock_outlined = NotStr('''''') +icon_medium_workmark_outlined = NotStr('''''') +icon_dislike_filled = NotStr('''''') +icon_close_square_twotone = NotStr(''' + + + +''') +icon_fast_backward_filled = NotStr('''''') +icon_like_filled = NotStr('''''') +icon_star_twotone = NotStr(''' + + +''') +icon_funnel_plot_outlined = NotStr('''''') +icon_customer_service_filled = NotStr('''''') +icon_file_unknown_filled = NotStr('''''') +icon_facebook_filled = NotStr('''''') +icon_field_string_outlined = NotStr(''' + + + + +''') +icon_experiment_outlined = NotStr('''''') +icon_setting_outlined = NotStr('''''') +icon_file_text_twotone = NotStr(''' + + + +''') +icon_delete_row_outlined = NotStr(''' + + +''') +icon_desktop_outlined = NotStr('''''') +icon_github_filled = NotStr('''''') +icon_search_outlined = NotStr('''''') +icon_alipay_outlined = NotStr('''''') +icon_api_filled = NotStr('''''') +icon_youtube_outlined = NotStr('''''') +icon_usergroup_add_outlined = NotStr('''''') +icon_line_chart_outlined = NotStr('''''') +icon_zhihu_square_filled = NotStr('''''') +icon_behance_outlined = NotStr('''''') +icon_pause_circle_filled = NotStr('''''') +icon_shop_filled = NotStr('''''') +icon_skype_outlined = NotStr('''''') +icon_qq_outlined = NotStr('''''') +icon_border_left_outlined = NotStr('''''') +icon_twitter_circle_filled = NotStr('''''') +icon_schedule_filled = NotStr('''''') +icon_loading_outlined = NotStr('''''') +icon_file_protect_outlined = NotStr('''''') +icon_snippets_twotone = NotStr(''' + + +''') +icon_thunderbolt_twotone = NotStr(''' + + +''') +icon_align_center_outlined = NotStr('''''') +icon_step_forward_filled = NotStr('''''') +icon_build_twotone = NotStr(''' + + +''') +icon_notification_filled = NotStr('''''') +icon_borderless_table_outlined = NotStr(''' + + +''') +icon_schedule_outlined = NotStr('''''') +icon_down_circle_filled = NotStr('''''') +icon_ci_outlined = NotStr('''''') +icon_fund_projection_screen_outlined = NotStr(''' + + + +''') +icon_aliyun_outlined = NotStr('''''') +icon_exclamation_circle_outlined = NotStr(''' + + +''') +icon_qrcode_outlined = NotStr('''''') +icon_eye_invisible_filled = NotStr(''' + + +''') +icon_login_outlined = NotStr(''' + + +''') +icon_money_collect_outlined = NotStr('''''') +icon_laptop_outlined = NotStr('''''') +icon_share_alt_outlined = NotStr('''''') +icon_bar_chart_outlined = NotStr('''''') +icon_lock_filled = NotStr('''''') +icon_schedule_twotone = NotStr(''' + + + + +''') +icon_edit_filled = NotStr('''''') +icon_ci_circle_twotone = NotStr(''' + + + +''') +icon_calculator_outlined = NotStr('''''') +icon_right_square_filled = NotStr('''''') +icon_dot_chart_outlined = NotStr('''''') +icon_exclamation_circle_twotone = NotStr(''' + + + +''') +icon_rocket_filled = NotStr('''''') +icon_pull_request_outlined = NotStr('''''') +icon_ci_circle_outlined = NotStr('''''') +icon_euro_circle_filled = NotStr('''''') +icon_play_circle_filled = NotStr('''''') +icon_font_colors_outlined = NotStr('''''') +icon_folder_outlined = NotStr('''''') +icon_close_circle_outlined = NotStr(''' + + +''') +icon_heart_outlined = NotStr('''''') +icon_instagram_outlined = NotStr('''''') +icon_vertical_align_middle_outlined = NotStr('''''') +icon_caret_right_filled = NotStr('''''') +icon_alipay_square_filled = NotStr('''''') +icon_box_plot_outlined = NotStr('''''') +icon_double_right_outlined = NotStr('''''') +icon_stop_outlined = NotStr('''''') +icon_insert_row_left_outlined = NotStr(''' + + +''') +icon_bold_outlined = NotStr('''''') +icon_check_square_filled = NotStr('''''') +icon_experiment_twotone = NotStr(''' + + + +''') +icon_right_circle_twotone = NotStr(''' + + + +''') +icon_close_circle_twotone = NotStr(''' + + + +''') +icon_enter_outlined = NotStr('''''') +icon_alipay_circle_filled = NotStr('''''') +icon_caret_down_outlined = NotStr('''''') +icon_filter_outlined = NotStr('''''') +icon_red_envelope_twotone = NotStr(''' + + + + +''') +icon_plus_outlined = NotStr(''' + + + +''') +icon_border_verticle_outlined = NotStr('''''') +icon_filter_filled = NotStr('''''') +icon_radius_upleft_outlined = NotStr('''''') +icon_code_sandbox_outlined = NotStr('''''') +icon_golden_filled = NotStr('''''') +icon_appstore_filled = NotStr('''''') +icon_contacts_twotone = NotStr(''' + + + + +''') +icon_file_exclamation_outlined = NotStr('''''') +icon_compress_outlined = NotStr(''' + + +''') +icon_left_circle_twotone = NotStr(''' + + + +''') +icon_file_word_twotone = NotStr(''' + + + +''') +icon_bug_twotone = NotStr(''' + + +''') +icon_comment_outlined = NotStr(''' + + + + +''') +icon_picture_twotone = NotStr(''' + + + + + +''') +icon_team_outlined = NotStr('''''') +icon_mac_command_outlined = NotStr(''' + + + +''') +icon_info_circle_twotone = NotStr(''' + + + +''') +icon_mobile_outlined = NotStr('''''') +icon_flag_filled = NotStr('''''') +icon_tablet_filled = NotStr('''''') +icon_calendar_filled = NotStr('''''') +icon_file_markdown_twotone = NotStr(''' + + + +''') +icon_check_circle_filled = NotStr('''''') +icon_home_filled = NotStr('''''') +icon_download_outlined = NotStr('''''') +icon_holder_outlined = NotStr('''''') +icon_edit_outlined = NotStr('''''') +icon_control_outlined = NotStr('''''') +icon_alert_filled = NotStr('''''') +icon_file_excel_twotone = NotStr(''' + + + +''') +icon_caret_down_filled = NotStr('''''') +icon_interaction_filled = NotStr('''''') +icon_message_twotone = NotStr(''' + + + + +''') +icon_snippets_filled = NotStr('''''') +icon_bulb_twotone = NotStr(''' + + +''') +icon_pause_circle_twotone = NotStr(''' + + + +''') +icon_dislike_outlined = NotStr('''''') +icon_video_camera_twotone = NotStr(''' + + + +''') +icon_sketch_square_filled = NotStr('''''') +icon_send_outlined = NotStr(''' + + +''') +icon_customer_service_outlined = NotStr('''''') +icon_usb_outlined = NotStr('''''') +icon_meh_twotone = NotStr(''' + + + +''') +icon_gitlab_filled = NotStr('''''') +icon_weibo_square_filled = NotStr('''''') +icon_switcher_filled = NotStr('''''') +icon_upload_outlined = NotStr('''''') +icon_hdd_twotone = NotStr(''' + + + +''') +icon_book_twotone = NotStr(''' + + + +''') +icon_file_unknown_outlined = NotStr('''''') +icon_pushpin_outlined = NotStr('''''') +icon_partition_outlined = NotStr(''' + + +''') +icon_vertical_right_outlined = NotStr('''''') +icon_file_text_outlined = NotStr('''''') +icon_stop_filled = NotStr('''''') +icon_eye_filled = NotStr('''''') +icon_line_outlined = NotStr('''''') +icon_close_outlined = NotStr('''''') +icon_snippets_outlined = NotStr('''''') +icon_html5_filled = NotStr('''''') +icon_insert_row_above_outlined = NotStr(''' + + +''') +icon_tablet_outlined = NotStr('''''') +icon_block_outlined = NotStr('''''') +icon_control_twotone = NotStr(''' + + + + +''') +icon_database_twotone = NotStr(''' + + + +''') +icon_copyright_circle_filled = NotStr('''''') +icon_wallet_twotone = NotStr(''' + + + + +''') +icon_radius_bottomright_outlined = NotStr('''''') +icon_cloud_download_outlined = NotStr(''' + + +''') +icon_smile_twotone = NotStr(''' + + + +''') +icon_interaction_outlined = NotStr('''''') +icon_google_plus_circle_filled = NotStr('''''') +icon_fast_forward_outlined = NotStr('''''') +icon_layout_twotone = NotStr(''' + + +''') +icon_mail_filled = NotStr('''''') +icon_chrome_outlined = NotStr('''''') +icon_audio_muted_outlined = NotStr(''' + + + +''') +icon_stop_twotone = NotStr(''' + + +''') +icon_field_number_outlined = NotStr(''' + + +''') +icon_gateway_outlined = NotStr('''''') +icon_format_painter_outlined = NotStr(''' + + +''') +icon_scissor_outlined = NotStr('''''') +icon_read_outlined = NotStr('''''') +icon_car_filled = NotStr('''''') +icon_code_outlined = NotStr('''''') +icon_left_circle_filled = NotStr('''''') +icon_swap_outlined = NotStr('''''') +icon_step_backward_filled = NotStr('''''') +icon_twitter_outlined = NotStr('''''') +icon_node_collapse_outlined = NotStr(''' + + +''') +icon_exclamation_circle_filled = NotStr('''''') +icon_fire_outlined = NotStr('''''') +icon_minus_circle_outlined = NotStr(''' + + +''') +icon_codepen_circle_outlined = NotStr('''''') +icon_tool_filled = NotStr('''''') +icon_minus_outlined = NotStr('''''') +icon_container_filled = NotStr('''''') +icon_apartment_outlined = NotStr('''''') +icon_trademark_outlined = NotStr('''''') +icon_credit_card_filled = NotStr('''''') +icon_dollar_outlined = NotStr('''''') +icon_border_horizontal_outlined = NotStr('''''') +icon_border_top_outlined = NotStr('''''') +icon_logout_outlined = NotStr('''''') +icon_google_outlined = NotStr('''''') +icon_switcher_twotone = NotStr(''' + + + + +''') +icon_arrow_right_outlined = NotStr('''''') +icon_folder_open_outlined = NotStr('''''') +icon_alibaba_outlined = NotStr('''''') +icon_ie_circle_filled = NotStr('''''') +icon_bars_outlined = NotStr('''''') +icon_plus_square_filled = NotStr('''''') +icon_google_plus_outlined = NotStr('''''') +icon_up_circle_outlined = NotStr(''' + + +''') +icon_audio_twotone = NotStr(''' + + + +''') +icon_up_square_twotone = NotStr(''' + + + +''') +icon_experiment_filled = NotStr('''''') +icon_more_outlined = NotStr('''''') +icon_red_envelope_outlined = NotStr('''''') +icon_bell_filled = NotStr('''''') +icon_sliders_twotone = NotStr(''' + + +''') +icon_file_word_outlined = NotStr('''''') +icon_right_circle_filled = NotStr('''''') +icon_fork_outlined = NotStr('''''') +icon_fullscreen_outlined = NotStr('''''') +icon_area_chart_outlined = NotStr('''''') +icon_credit_card_outlined = NotStr('''''') +icon_fullscreen_exit_outlined = NotStr('''''') +icon_minus_square_outlined = NotStr(''' + + +''') +icon_shopping_cart_outlined = NotStr('''''') +icon_euro_outlined = NotStr('''''') +icon_medium_square_filled = NotStr('''''') +icon_reconciliation_twotone = NotStr(''' + + + + + +''') +icon_trophy_twotone = NotStr(''' + + +''') +icon_code_sandbox_square_filled = NotStr('''''') +icon_picture_outlined = NotStr('''''') +icon_camera_outlined = NotStr('''''') +icon_linkedin_filled = NotStr('''''') +icon_file_excel_filled = NotStr('''''') +icon_file_twotone = NotStr(''' + + +''') +icon_copyright_outlined = NotStr('''''') +icon_safety_certificate_filled = NotStr('''''') +icon_paper_clip_outlined = NotStr('''''') +icon_file_image_twotone = NotStr(''' + + + +''') +icon_play_square_outlined = NotStr(''' + + +''') +icon_key_outlined = NotStr('''''') +icon_environment_filled = NotStr('''''') +icon_rollback_outlined = NotStr('''''') +icon_frown_outlined = NotStr('''''') +icon_euro_circle_outlined = NotStr('''''') +icon_copyright_twotone = NotStr(''' + + + +''') +icon_diff_outlined = NotStr('''''') +icon_check_square_twotone = NotStr(''' + + + +''') +icon_mail_outlined = NotStr('''''') +icon_usb_filled = NotStr('''''') +icon_file_add_filled = NotStr('''''') +icon_zoom_out_outlined = NotStr('''''') +icon_ie_square_filled = NotStr('''''') +icon_yuque_outlined = NotStr('''''') +icon_highlight_twotone = NotStr(''' + + +''') +icon_delete_twotone = NotStr(''' + + +''') +icon_play_circle_outlined = NotStr(''' + + +''') +icon_usb_twotone = NotStr(''' + + + +''') +icon_backward_outlined = NotStr('''''') +icon_plus_square_twotone = NotStr(''' + + + +''') +icon_sort_ascending_outlined = NotStr('''''') +icon_barcode_outlined = NotStr('''''') +icon_wechat_outlined = NotStr('''''') +icon_gif_outlined = NotStr(''' + + +''') +icon_instagram_filled = NotStr('''''') +icon_shopping_filled = NotStr('''''') +icon_fund_filled = NotStr('''''') +icon_wifi_outlined = NotStr('''''') +icon_reconciliation_outlined = NotStr('''''') +icon_user_delete_outlined = NotStr('''''') +icon_minus_square_filled = NotStr('''''') +icon_crown_outlined = NotStr('''''') +icon_printer_twotone = NotStr(''' + + + +''') +icon_shop_outlined = NotStr('''''') +icon_google_square_filled = NotStr('''''') +icon_tag_twotone = NotStr(''' + + + +''') +icon_dropbox_circle_filled = NotStr('''''') +icon_cluster_outlined = NotStr('''''') +icon_tags_twotone = NotStr(''' + + + + +''') +icon_account_book_outlined = NotStr('''''') +icon_close_circle_filled = NotStr('''''') +icon_column_width_outlined = NotStr('''''') +icon_vertical_align_top_outlined = NotStr('''''') +icon_folder_add_outlined = NotStr('''''') +icon_safety_certificate_twotone = NotStr(''' + + + +''') +icon_message_filled = NotStr('''''') +icon_check_circle_outlined = NotStr(''' + + +''') +icon_vertical_left_outlined = NotStr('''''') +icon_small_dash_outlined = NotStr('''''') +icon_ant_cloud_outlined = NotStr('''''') +icon_hdd_outlined = NotStr('''''') +icon_expand_outlined = NotStr(''' + + +''') +icon_mac_command_filled = NotStr(''' + + + + +''') +icon_undo_outlined = NotStr('''''') +icon_skin_outlined = NotStr('''''') +icon_dollar_circle_outlined = NotStr('''''') +icon_hourglass_filled = NotStr('''''') +icon_align_right_outlined = NotStr('''''') +icon_video_camera_outlined = NotStr('''''') +icon_taobao_outlined = NotStr('''''') +icon_sliders_filled = NotStr('''''') +icon_clear_outlined = NotStr(''' + + +''') +icon_forward_outlined = NotStr('''''') +icon_shrink_outlined = NotStr('''''') +icon_arrow_down_outlined = NotStr('''''') +icon_camera_filled = NotStr('''''') +icon_left_square_outlined = NotStr(''' + + +''') +icon_profile_twotone = NotStr(''' + + + +''') +icon_amazon_outlined = NotStr('''''') +icon_redo_outlined = NotStr('''''') +icon_delete_filled = NotStr('''''') +icon_trademark_circle_twotone = NotStr(''' + + + + +''') +icon_font_size_outlined = NotStr('''''') +icon_heat_map_outlined = NotStr('''''') +icon_medicine_box_outlined = NotStr('''''') +icon_amazon_circle_filled = NotStr('''''') +icon_link_outlined = NotStr('''''') +icon_funnel_plot_filled = NotStr('''''') +icon_euro_twotone = NotStr(''' + + + +''') +icon_sound_twotone = NotStr(''' + + +''') +icon_video_camera_add_outlined = NotStr(''' + + + + +''') +icon_apple_filled = NotStr('''''') +icon_warning_twotone = NotStr(''' + + + +''') +icon_printer_outlined = NotStr('''''') +icon_format_painter_filled = NotStr(''' + + +''') +icon_left_outlined = NotStr('''''') +icon_save_outlined = NotStr('''''') +icon_compass_outlined = NotStr('''''') +icon_vertical_align_bottom_outlined = NotStr('''''') +icon_bell_twotone = NotStr(''' + + +''') +icon_woman_outlined = NotStr('''''') +icon_safety_outlined = NotStr(''' + + +''') +icon_database_filled = NotStr('''''') +icon_tool_twotone = NotStr(''' + + +''') +icon_calculator_filled = NotStr('''''') +icon_phone_twotone = NotStr(''' + + +''') +icon_filter_twotone = NotStr(''' + + +''') +icon_api_outlined = NotStr('''''') +icon_carry_out_filled = NotStr('''''') +icon_plus_square_outlined = NotStr(''' + + +''') +icon_dingtalk_outlined = NotStr('''''') +icon_audit_outlined = NotStr('''''') +icon_medicine_box_filled = NotStr('''''') +icon_pay_circle_filled = NotStr('''''') +icon_environment_twotone = NotStr(''' + + + +''') +icon_field_time_outlined = NotStr(''' + + + +''') +icon_folder_view_outlined = NotStr(''' + + + + +''') +icon_behance_circle_filled = NotStr('''''') +icon_flag_twotone = NotStr(''' + + + +''') +icon_pie_chart_outlined = NotStr('''''') +icon_minus_circle_filled = NotStr('''''') +icon_html5_twotone = NotStr(''' + + + +''') +icon_folder_add_filled = NotStr('''''') +icon_border_outlined = NotStr('''''') +icon_down_circle_twotone = NotStr(''' + + + +''') +icon_up_square_filled = NotStr('''''') +icon_appstore_twotone = NotStr(''' + + +''') +icon_drag_outlined = NotStr('''''') +icon_gold_outlined = NotStr('''''') +icon_bulb_outlined = NotStr('''''') +icon_heart_filled = NotStr('''''') +icon_down_square_twotone = NotStr(''' + + + +''') +icon_right_square_twotone = NotStr(''' + + + +''') +icon_weibo_circle_filled = NotStr('''''') +icon_ant_design_outlined = NotStr('''''') +icon_translation_outlined = NotStr(''' + + + +''') +icon_cloud_filled = NotStr('''''') +icon_taobao_circle_outlined = NotStr('''''') +icon_file_pdf_outlined = NotStr('''''') +icon_underline_outlined = NotStr('''''') +icon_dribbble_square_outlined = NotStr('''''') +icon_fund_twotone = NotStr(''' + + + +''') +icon_pound_circle_filled = NotStr('''''') +icon_aim_outlined = NotStr(''' + + + +''') +icon_aliwangwang_outlined = NotStr('''''') +icon_warning_filled = NotStr('''''') +icon_up_outlined = NotStr('''''') +icon_bug_filled = NotStr(''' + + +''') +icon_fall_outlined = NotStr('''''') +icon_rest_outlined = NotStr(''' + + + +''') +icon_ci_twotone = NotStr(''' + + + +''') +icon_history_outlined = NotStr('''''') +icon_swap_left_outlined = NotStr('''''') +icon_medium_circle_filled = NotStr('''''') +icon_warning_outlined = NotStr('''''') +icon_clock_circle_outlined = NotStr(''' + + +''') +icon_youtube_filled = NotStr('''''') +icon_trademark_circle_filled = NotStr('''''') +icon_hdd_filled = NotStr('''''') +icon_android_outlined = NotStr('''''') +icon_down_outlined = NotStr('''''') +icon_cloud_twotone = NotStr(''' + + +''') +icon_eye_invisible_twotone = NotStr(''' + + + + + +''') +icon_menu_fold_outlined = NotStr('''''') +icon_robot_outlined = NotStr('''''') +icon_arrows_alt_outlined = NotStr('''''') +icon_unlock_filled = NotStr('''''') +icon_unlock_twotone = NotStr(''' + + + +''') +icon_down_square_outlined = NotStr(''' + + +''') +icon_gitlab_outlined = NotStr('''''') +icon_border_outer_outlined = NotStr('''''') +icon_insurance_filled = NotStr('''''') +icon_red_envelope_filled = NotStr('''''') +icon_folder_twotone = NotStr(''' + + +''') +icon_google_circle_filled = NotStr('''''') +icon_pay_circle_outlined = NotStr('''''') +icon_insert_row_right_outlined = NotStr(''' + + +''') +icon_tag_filled = NotStr('''''') +icon_chrome_filled = NotStr('''''') +icon_cloud_outlined = NotStr('''''') +icon_play_circle_twotone = NotStr(''' + + + +''') +icon_like_twotone = NotStr(''' + + +''') +icon_file_image_filled = NotStr('''''') +icon_ci_circle_filled = NotStr('''''') +icon_pie_chart_filled = NotStr('''''') +icon_sort_descending_outlined = NotStr('''''') +icon_plus_circle_filled = NotStr('''''') +icon_gift_outlined = NotStr('''''') +icon_property_safety_outlined = NotStr('''''') +icon_number_outlined = NotStr('''''') +icon_interaction_twotone = NotStr(''' + + + +''') +icon_disconnect_outlined = NotStr('''''') +icon_appstore_outlined = NotStr('''''') +icon_thunderbolt_filled = NotStr('''''') +icon_robot_filled = NotStr(''' + + +''') +icon_play_square_filled = NotStr('''''') +icon_table_outlined = NotStr('''''') +icon_customer_service_twotone = NotStr(''' + + +''') +icon_camera_twotone = NotStr(''' + + + +''') +icon_windows_filled = NotStr('''''') +icon_sketch_circle_filled = NotStr('''''') +icon_wechat_filled = NotStr('''''') +icon_idcard_twotone = NotStr(''' + + + + +''') +icon_flag_outlined = NotStr('''''') +icon_control_filled = NotStr('''''') +icon_crown_filled = NotStr('''''') +icon_sync_outlined = NotStr('''''') +icon_weibo_circle_outlined = NotStr('''''') +icon_dollar_circle_twotone = NotStr(''' + + + + +''') +icon_weibo_square_outlined = NotStr('''''') +icon_caret_up_outlined = NotStr('''''') +icon_audio_filled = NotStr('''''') +icon_folder_open_filled = NotStr('''''') +icon_deployment_unit_outlined = NotStr('''''') +icon_radar_chart_outlined = NotStr('''''') +icon_property_safety_filled = NotStr('''''') +icon_copy_twotone = NotStr(''' + + + +''') +icon_alert_outlined = NotStr('''''') +icon_money_collect_twotone = NotStr(''' + + + +''') +icon_double_left_outlined = NotStr('''''') +icon_line_height_outlined = NotStr('''''') +icon_dashboard_outlined = NotStr('''''') +icon_user_add_outlined = NotStr('''''') +icon_file_pdf_twotone = NotStr(''' + + + + + +''') +icon_info_outlined = NotStr('''''') +icon_dingding_outlined = NotStr('''''') +icon_save_filled = NotStr('''''') +icon_trophy_filled = NotStr('''''') +icon_question_circle_filled = NotStr('''''') +icon_box_plot_twotone = NotStr(''' + + +''') +icon_home_twotone = NotStr(''' + + +''') +icon_container_outlined = NotStr('''''') +icon_diff_twotone = NotStr(''' + + + + +''') +icon_dribbble_square_filled = NotStr('''''') +icon_cloud_sync_outlined = NotStr(''' + + +''') +icon_retweet_outlined = NotStr('''''') +icon_container_twotone = NotStr(''' + + + + +''') +icon_swap_right_outlined = NotStr('''''') +icon_ie_outlined = NotStr('''''') +icon_skin_twotone = NotStr(''' + + +''') +icon_cloud_server_outlined = NotStr(''' + + + +''') +icon_highlight_outlined = NotStr('''''') +icon_file_exclamation_twotone = NotStr(''' + + + +''') +icon_codepen_outlined = NotStr('''''') +icon_exception_outlined = NotStr('''''') +icon_skype_filled = NotStr('''''') +icon_pushpin_filled = NotStr('''''') +icon_euro_circle_twotone = NotStr(''' + + + +''') +icon_star_filled = NotStr('''''') +icon_lock_outlined = NotStr('''''') +icon_monitor_outlined = NotStr('''''') +icon_zhihu_circle_filled = NotStr('''''') +icon_pic_left_outlined = NotStr('''''') +icon_close_square_outlined = NotStr(''' + + +''') +icon_bell_outlined = NotStr('''''') +icon_notification_outlined = NotStr('''''') +icon_file_add_outlined = NotStr('''''') +icon_caret_left_outlined = NotStr('''''') +icon_solution_outlined = NotStr('''''') +icon_left_circle_outlined = NotStr(''' + + +''') +icon_folder_open_twotone = NotStr(''' + + +''') +icon_file_jpg_outlined = NotStr('''''') +icon_rotate_right_outlined = NotStr(''' + + + +''') +icon_save_twotone = NotStr(''' + + + +''') +icon_bank_filled = NotStr('''''') +icon_delete_column_outlined = NotStr(''' + + +''') +icon_insurance_outlined = NotStr('''''') +icon_plus_circle_twotone = NotStr(''' + + + +''') +icon_file_pdf_filled = NotStr('''''') +icon_dash_outlined = NotStr('''''') +icon_file_ppt_outlined = NotStr('''''') +icon_slack_square_filled = NotStr('''''') +icon_twitter_square_filled = NotStr('''''') +icon_right_outlined = NotStr('''''') +icon_highlight_filled = NotStr('''''') +icon_pic_center_outlined = NotStr('''''') +icon_border_inner_outlined = NotStr('''''') +icon_heart_twotone = NotStr(''' + + +''') +icon_fast_backward_outlined = NotStr('''''') +icon_radius_bottomleft_outlined = NotStr('''''') +icon_trophy_outlined = NotStr('''''') +icon_skin_filled = NotStr('''''') +icon_file_unknown_twotone = NotStr(''' + + + +''') +icon_step_forward_outlined = NotStr('''''') +icon_hourglass_outlined = NotStr('''''') +icon_expand_alt_outlined = NotStr('''''') +icon_up_square_outlined = NotStr(''' + + +''') +icon_aliwangwang_filled = NotStr('''''') +icon_down_circle_outlined = NotStr(''' + + +''') +icon_qq_square_filled = NotStr('''''') +icon_frown_filled = NotStr('''''') +icon_shopping_twotone = NotStr(''' + + +''') +icon_select_outlined = NotStr('''''') +icon_box_plot_filled = NotStr('''''') +icon_tablet_twotone = NotStr(''' + + + +''') +icon_reddit_square_filled = NotStr('''''') +icon_account_book_twotone = NotStr(''' + + + +''') +icon_copyright_circle_outlined = NotStr('''''') +icon_tags_filled = NotStr('''''') +icon_file_filled = NotStr('''''') +icon_mail_twotone = NotStr(''' + + + +''') +icon_pushpin_twotone = NotStr(''' + + +''') +icon_folder_filled = NotStr('''''') +icon_weibo_outlined = NotStr('''''') +icon_border_right_outlined = NotStr('''''') +icon_delivered_procedure_outlined = NotStr(''' + + +''') +icon_poweroff_outlined = NotStr('''''') +icon_layout_outlined = NotStr('''''') +icon_loading3_quarters_outlined = NotStr('''''') +icon_one_to_one_outlined = NotStr(''' + + + + +''') +icon_eye_twotone = NotStr(''' + + + + +''') +icon_slack_outlined = NotStr('''''') +icon_profile_outlined = NotStr('''''') +icon_stock_outlined = NotStr('''''') +icon_file_exclamation_filled = NotStr('''''') +icon_lock_twotone = NotStr(''' + + + +''') +icon_appstore_add_outlined = NotStr(''' + + +''') +icon_folder_add_twotone = NotStr(''' + + + +''') +icon_picture_filled = NotStr('''''') +icon_gold_twotone = NotStr(''' + + +''') +icon_radius_setting_outlined = NotStr('''''') +icon_sound_filled = NotStr('''''') +icon_copy_outlined = NotStr('''''') +icon_reddit_outlined = NotStr('''''') +icon_android_filled = NotStr('''''') +icon_credit_card_twotone = NotStr(''' + + + +''') +icon_calculator_twotone = NotStr(''' + + + +''') +icon_dropbox_outlined = NotStr('''''') +icon_menu_outlined = NotStr('''''') +icon_file_text_filled = NotStr('''''') +icon_funnel_plot_twotone = NotStr(''' + + +''') +icon_shop_twotone = NotStr(''' + + +''') +icon_trademark_circle_outlined = NotStr('''''') +icon_pic_right_outlined = NotStr('''''') +icon_home_outlined = NotStr('''''') +icon_qq_circle_filled = NotStr('''''') +icon_sound_outlined = NotStr('''''') +icon_bank_outlined = NotStr('''''') +icon_thunderbolt_outlined = NotStr('''''') +icon_fire_twotone = NotStr(''' + + +''') +icon_calendar_outlined = NotStr('''''') +icon_tags_outlined = NotStr('''''') +icon_minus_square_twotone = NotStr(''' + + + +''') +icon_question_circle_outlined = NotStr(''' + + +''') +icon_rest_filled = NotStr('''''') +icon_italic_outlined = NotStr('''''') +icon_idcard_outlined = NotStr('''''') +icon_audio_outlined = NotStr('''''') +icon_project_twotone = NotStr(''' + + + +''') +icon_console_sql_outlined = NotStr(''' + + + + +''') +icon_file_search_outlined = NotStr('''''') +icon_reconciliation_filled = NotStr('''''') +icon_rocket_outlined = NotStr('''''') +icon_left_square_filled = NotStr('''''') +icon_question_outlined = NotStr('''''') +icon_percentage_outlined = NotStr('''''') +icon_mobile_twotone = NotStr(''' + + + +''') +icon_zhihu_outlined = NotStr('''''') +icon_bulb_filled = NotStr('''''') +icon_file_done_outlined = NotStr('''''') +icon_bank_twotone = NotStr(''' + + +''') +icon_insurance_twotone = NotStr(''' + + + + +''') +icon_alipay_circle_outlined = NotStr('''''') +icon_rest_twotone = NotStr(''' + + + +''') +icon_file_gif_outlined = NotStr(''' + + + + +''') +icon_caret_up_filled = NotStr('''''') +icon_slack_square_outlined = NotStr('''''') +icon_pound_outlined = NotStr('''''') +icon_tool_outlined = NotStr('''''') +icon_diff_filled = NotStr('''''') +icon_setting_filled = NotStr('''''') +icon_pound_circle_twotone = NotStr(''' + + + +''') +icon_frown_twotone = NotStr(''' + + + +''') +icon_project_filled = NotStr('''''') +icon_codepen_square_filled = NotStr('''''') +icon_function_outlined = NotStr(''' + + +''') +icon_user_switch_outlined = NotStr(''' + + +''') +icon_radius_upright_outlined = NotStr('''''') +icon_medium_outlined = NotStr('''''') +icon_car_outlined = NotStr('''''') +icon_alert_twotone = NotStr(''' + + +''') +icon_right_square_outlined = NotStr(''' + + +''') +icon_right_circle_outlined = NotStr(''' + + +''') +icon_align_left_outlined = NotStr('''''') +icon_sliders_outlined = NotStr('''''') +icon_contacts_filled = NotStr('''''') +icon_taobao_square_filled = NotStr('''''') diff --git a/src/myfasthtml/icons/carbon.py b/src/myfasthtml/icons/carbon.py new file mode 100644 index 0000000..832fda7 --- /dev/null +++ b/src/myfasthtml/icons/carbon.py @@ -0,0 +1,8907 @@ +# @sicons/carbon +# +# SVG icons integrated from [`Carbon`](undefined) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_user_multiple = NotStr(''' + + + + +''') +icon_scales = NotStr('''''') +icon_direction_loop_right = NotStr(''' + + +''') +icon_quadrant_plot = NotStr(''' + + + + + + + + + + + +''') +icon_fog = NotStr(''' + + +''') +icon_identification = NotStr(''' + + + + + +''') +icon_temperature_celsius = NotStr(''' + + + + +''') +icon_favorite_filled = NotStr('''''') +icon_playlist = NotStr(''' + + + + +''') +icon_medication_alert = NotStr(''' + + + + +''') +icon_skip_forward_filled = NotStr(''' + + +''') +icon_pin_filled = NotStr('''''') +icon_gateway_mail = NotStr(''' + + +''') +icon_not_available = NotStr(''' + + +''') +icon_calendar = NotStr('''''') +icon_split_discard = NotStr('''''') +icon_recording_filled = NotStr(''' + + +''') +icon_cursor1 = NotStr('''''') +icon_navaid_vhfor = NotStr(''' + + + +''') +icon_alarm_add = NotStr(''' + + + + + +''') +icon_navaid_helipad = NotStr(''' + + +''') +icon_help_filled = NotStr(''' + + +''') +icon_branch = NotStr('''''') +icon_add = NotStr('''''') +icon_edge_cluster = NotStr(''' + + + + + + + + +''') +icon_traffic_flow_incident = NotStr(''' + + + + + + + + +''') +icon_logo_snapchat = NotStr(''' + + +''') +icon_text_leading = NotStr(''' + + + + + + +''') +icon_chart_stacked = NotStr('''''') +icon_id_management = NotStr(''' + + + + + + +''') +icon_pet_image_b = NotStr(''' + + + + + + + + + + + + +''') +icon_undefined_filled = NotStr(''' + + +''') +icon_battery_half = NotStr(''' + + + +''') +icon_person_favorite = NotStr(''' + + + +''') +icon_flow_modeler = NotStr(''' + + + + + +''') +icon_location_star_filled = NotStr(''' + + +''') +icon_code_hide = NotStr(''' + + + +''') +icon_cloud_satellite_services = NotStr(''' + + + + + +''') +icon_wifi_not_secure = NotStr(''' + + + +''') +icon_csv = NotStr(''' + + + +''') +icon_object_storage = NotStr(''' + + + + +''') +icon_windy_dust = NotStr(''' + + + + + + + +''') +icon_rotate_clockwise = NotStr(''' + + +''') +icon_open_panel_filled_left = NotStr('''''') +icon_chart_custom = NotStr(''' + + + + + +''') +icon_earth_europe_africa = NotStr('''''') +icon_skip_forward_outline = NotStr(''' + + + +''') +icon_soil_moisture_global = NotStr(''' + + + + +''') +icon_letter_mm = NotStr(''' + + +''') +icon_airline_rapid_board = NotStr(''' + + + + + + + + +''') +icon_table = NotStr('''''') +icon_monster = NotStr(''' + + + + +''') +icon_chart_bar_floating = NotStr(''' + + + +''') +icon_text_line_spacing = NotStr(''' + + + + + + +''') +icon_scale = NotStr(''' + + +''') +icon_point_of_presence = NotStr(''' + + + +''') +icon_mostly_cloudy_night = NotStr('''''') +icon_face_mask = NotStr(''' + + + +''') +icon_search_advanced = NotStr(''' + + +''') +icon_satellite_weather = NotStr(''' + + +''') +icon_deployment_unit_installation = NotStr('''''') +icon_script_reference = NotStr(''' + + + + +''') +icon_warning_alt = NotStr(''' + + + +''') +icon_arrow_up = NotStr('''''') +icon_soil_temperature = NotStr(''' + + + + + + + + + +''') +icon_satellite_radar = NotStr(''' + + + +''') +icon_snow = NotStr(''' + + + + +''') +icon_server_time = NotStr(''' + + + + +''') +icon_connection_receive = NotStr(''' + + + + + + + + +''') +icon_microphone = NotStr(''' + + +''') +icon_text_font = NotStr(''' + + +''') +icon_tif = NotStr(''' + + + +''') +icon_window_auto = NotStr(''' + + + + + + + + + + + +''') +icon_registration = NotStr(''' + + + + + +''') +icon_iso_outline = NotStr(''' + + + + +''') +icon_zip = NotStr(''' + + + +''') +icon_logout = NotStr(''' + + +''') +icon_send_filled = NotStr('''''') +icon_annotation_visibility = NotStr(''' + + + + +''') +icon_mobility_services = NotStr(''' + + +''') +icon_chart_waterfall = NotStr(''' + + +''') +icon_asleep_filled = NotStr('''''') +icon_face_neutral_filled = NotStr('''''') +icon_gender_male = NotStr('''''') +icon_pedestrian = NotStr(''' + + + +''') +icon_in_progress_warning = NotStr(''' + + +''') +icon_application_mobile = NotStr(''' + + + + + + +''') +icon_location_save = NotStr(''' + + + +''') +icon_gateway_vpn = NotStr(''' + + +''') +icon_router_voice = NotStr(''' + + + + +''') +icon_wikis = NotStr('''''') +icon_text_creation = NotStr(''' + + +''') +icon_skip_forward_outline_filled = NotStr(''' + + + +''') +icon_hashtag = NotStr('''''') +icon_analytics = NotStr(''' + + +''') +icon_show_data_cards = NotStr(''' + + + +''') +icon_arrows_horizontal = NotStr(''' + + +''') +icon_png = NotStr(''' + + + +''') +icon_phone_outgoing_filled = NotStr(''' + + +''') +icon_circle_solid = NotStr('''''') +icon_restaurant_fine = NotStr(''' + + + +''') +icon_direction_fork = NotStr('''''') +icon_bar = NotStr(''' + + +''') +icon_align_box_top_left = NotStr(''' + + + +''') +icon_uv_index_alt = NotStr(''' + + + + + + + + +''') +icon_list_dropdown = NotStr(''' + + + + + + + +''') +icon_data_vis4 = NotStr('''''') +icon_asset_confirm = NotStr(''' + + + +''') +icon_jpg = NotStr(''' + + + +''') +icon_thumbs_up_filled = NotStr(''' + + +''') +icon_dna = NotStr('''''') +icon_media_library_filled = NotStr(''' + + + + +''') +icon_contour_finding = NotStr(''' + + + + + + + + + + + + +''') +icon_health_cross = NotStr('''''') +icon_border_none = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_category_new_each = NotStr(''' + + + +''') +icon_quotes = NotStr(''' + + +''') +icon_align_vertical_center = NotStr('''''') +icon_chart_marimekko = NotStr('''''') +icon_dicom_overlay = NotStr(''' + + + + +''') +icon_face_dizzy_filled = NotStr('''''') +icon_object_storage_alt = NotStr(''' + + + +''') +icon_usb = NotStr(''' + + + +''') +icon_logo_xing = NotStr(''' + + +''') +icon_currency = NotStr(''' + + +''') +icon_solar_panel = NotStr(''' + + + + + + +''') +icon_number2 = NotStr('''''') +icon_location_current = NotStr('''''') +icon_row_insert = NotStr(''' + + + +''') +icon_text_scale = NotStr(''' + + +''') +icon_globe = NotStr(''' + + +''') +icon_logo_twitter = NotStr('''''') +icon_data_reference = NotStr(''' + + + + +''') +icon_text_annotation_toggle = NotStr(''' + + + +''') +icon_skill_level_basic = NotStr(''' + + + +''') +icon_radio_push_to_talk = NotStr(''' + + + + +''') +icon_recommend = NotStr('''''') +icon_contour_draw = NotStr(''' + + + + + + + + + + + +''') +icon_arrow_left = NotStr('''''') +icon_wave_height = NotStr(''' + + + + + +''') +icon_tides = NotStr(''' + + + + +''') +icon_security_services = NotStr(''' + + +''') +icon_category_add = NotStr(''' + + +''') +icon_letter_gg = NotStr(''' + + +''') +icon_fit_to_screen = NotStr(''' + + + +''') +icon_security = NotStr(''' + + +''') +icon_ai_results_high = NotStr(''' + + + + + +''') +icon_document_vertical = NotStr(''' + + +''') +icon_restaurant = NotStr(''' + + + +''') +icon_save_model = NotStr(''' + + +''') +icon_map_center = NotStr(''' + + + + + +''') +icon_currency_pound = NotStr('''''') +icon_skip_forward = NotStr(''' + + +''') +icon_type_pattern = NotStr(''' + + + + + +''') +icon_rewind30 = NotStr(''' + + + +''') +icon_trophy = NotStr('''''') +icon_add_comment = NotStr(''' + + +''') +icon_deployment_unit_data = NotStr('''''') +icon_traffic_flow = NotStr(''' + + + + + + + + +''') +icon_currency_dollar = NotStr('''''') +icon_development = NotStr(''' + + + + +''') +icon_direction_loop_right_filled = NotStr(''' + + +''') +icon_store = NotStr('''''') +icon_filter_remove = NotStr(''' + + +''') +icon_z = NotStr('''''') +icon_tsunami = NotStr('''''') +icon_cicsplex = NotStr(''' + + + + +''') +icon_hanging_protocol = NotStr('''''') +icon_password = NotStr(''' + + +''') +icon_chart_histogram = NotStr('''''') +icon_region_analysis_volume = NotStr(''' + + +''') +icon_medication_reminder = NotStr(''' + + +''') +icon_document_import = NotStr(''' + + +''') +icon_window_overlay = NotStr(''' + + + + + + + + + + +''') +icon_drone = NotStr(''' + + + + + +''') +icon_battery_quarter = NotStr(''' + + + +''') +icon_soccer = NotStr(''' + + + + +''') +icon_bullhorn = NotStr('''''') +icon_interactions = NotStr(''' + + + +''') +icon_pause_future = NotStr(''' + + + +''') +icon_txt_reference = NotStr(''' + + + + +''') +icon_carbon3_d_cursor_alt = NotStr(''' + + + + + +''') +icon_tree_fall_risk = NotStr(''' + + + + + +''') +icon_logo_quora = NotStr('''''') +icon_blockchain = NotStr('''''') +icon_terminal = NotStr(''' + + +''') +icon_stacked_scrolling2 = NotStr(''' + + + + +''') +icon_pills_subtract = NotStr(''' + + +''') +icon_edge_device = NotStr(''' + + + + +''') +icon_document_attachment = NotStr(''' + + + + + +''') +icon_tree_view = NotStr('''''') +icon_pause_outline_filled = NotStr('''''') +icon_music_remove = NotStr(''' + + + +''') +icon_logo_glassdoor = NotStr(''' + + + +''') +icon_table_split = NotStr('''''') +icon_letter_aa = NotStr(''' + + +''') +icon_game_console = NotStr(''' + + + + + + +''') +icon_crossroads = NotStr('''''') +icon_text_link_analysis = NotStr(''' + + + + +''') +icon_temperature_frigid = NotStr(''' + + + +''') +icon_weather_front_warm = NotStr(''' + + +''') +icon_notification = NotStr('''''') +icon_license_draft = NotStr(''' + + + + + + +''') +icon_mixed_rain_hail = NotStr(''' + + + + + +''') +icon_information = NotStr(''' + + + +''') +icon_fish = NotStr(''' + + +''') +icon_data_refinery = NotStr(''' + + + +''') +icon_operations_record = NotStr(''' + + + + + +''') +icon_breaking_change = NotStr(''' + + + + +''') +icon_direction_right01_filled = NotStr(''' + + +''') +icon_video = NotStr('''''') +icon_managed_solutions = NotStr(''' + + +''') +icon_brightness_contrast = NotStr(''' + + + + + + + + + +''') +icon_caret_sort_up = NotStr('''''') +icon_color_palette = NotStr(''' + + + + + + +''') +icon_data_error = NotStr(''' + + + + + +''') +icon_rss = NotStr(''' + + + +''') +icon_area_custom = NotStr('''''') +icon_cloud_app = NotStr(''' + + + + + + + + + + +''') +icon_direction_bear_right02_filled = NotStr(''' + + +''') +icon_convert_to_cloud = NotStr(''' + + + + + +''') +icon_monument = NotStr('''''') +icon_overflow_menu_horizontal = NotStr(''' + + + +''') +icon_data_collection = NotStr(''' + + + + + +''') +icon_smoke = NotStr(''' + + + + + +''') +icon_ibm_cloud_pak_watson_aiops = NotStr(''' + + +''') +icon_align_horizontal_right = NotStr(''' + + + +''') +icon_temperature_fahrenheit = NotStr(''' + + + + +''') +icon_light = NotStr(''' + + + + + + + + + +''') +icon_loop = NotStr(''' + + +''') +icon_network_enterprise = NotStr(''' + + + + + + +''') +icon_spell_check = NotStr(''' + + + +''') +icon_chart_parallel = NotStr('''''') +icon_incomplete_warning = NotStr(''' + + + + +''') +icon_list_checked = NotStr(''' + + + + +''') +icon_pest = NotStr(''' + + + + +''') +icon_ticket = NotStr(''' + + +''') +icon_align_box_top_center = NotStr(''' + + + +''') +icon_currency_won = NotStr('''''') +icon_text_kerning = NotStr(''' + + + + +''') +icon_flash_off_filled = NotStr(''' + + +''') +icon_ibm_cloud_subnets = NotStr('''''') +icon_navaid_ndb_dme = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_heat_map03 = NotStr('''''') +icon_tropical_warning = NotStr(''' + + + +''') +icon_upgrade = NotStr(''' + + +''') +icon_vmdk_disk = NotStr(''' + + + + + +''') +icon_help = NotStr(''' + + + +''') +icon_angle = NotStr(''' + + +''') +icon_query_queue = NotStr(''' + + + + + +''') +icon_flag = NotStr('''''') +icon_snow_scattered_night = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_flagging_taxi = NotStr(''' + + +''') +icon_types = NotStr(''' + + + +''') +icon_chart_ring = NotStr('''''') +icon_hotel = NotStr(''' + + +''') +icon_media_library = NotStr(''' + + + + +''') +icon_share = NotStr('''''') +icon_cda = NotStr(''' + + + +''') +icon_vehicle_insights = NotStr(''' + + + + +''') +icon_sys_provision = NotStr(''' + + + + +''') +icon_delivery = NotStr(''' + + + +''') +icon_category_and = NotStr(''' + + +''') +icon_chart_river = NotStr('''''') +icon_tablet_landscape = NotStr(''' + + +''') +icon_thumbnail1 = NotStr(''' + + + + +''') +icon_user_data = NotStr(''' + + + + + +''') +icon_schematics = NotStr('''''') +icon_sunny = NotStr(''' + + + + + + + + + +''') +icon_diagram = NotStr(''' + + +''') +icon_chevron_sort = NotStr(''' + + +''') +icon_rule_test = NotStr(''' + + + + + +''') +icon_devices = NotStr(''' + + +''') +icon_zoom_out = NotStr(''' + + +''') +icon_play_filled_alt = NotStr('''''') +icon_direction_bear_right01 = NotStr('''''') +icon_legend = NotStr(''' + + + + +''') +icon_cics_region = NotStr(''' + + + +''') +icon_hd = NotStr(''' + + + +''') +icon_inventory_management = NotStr(''' + + + + + +''') +icon_calendar_tools = NotStr(''' + + +''') +icon_text_italic = NotStr('''''') +icon_upload = NotStr(''' + + +''') +icon_calendar_settings = NotStr(''' + + +''') +icon_hdr = NotStr(''' + + + +''') +icon_drone_front = NotStr(''' + + + + + +''') +icon_van = NotStr('''''') +icon_circuit_composer = NotStr(''' + + +''') +icon_scalpel_cursor = NotStr(''' + + +''') +icon_border_right = NotStr(''' + + + + + + + + + + + + + + + + + + + + +''') +icon_database_mongodb = NotStr(''' + + +''') +icon_data_set = NotStr(''' + + + + +''') +icon_face_wink = NotStr(''' + + + + +''') +icon_spine_label = NotStr(''' + + + + +''') +icon_coronavirus = NotStr(''' + + + + + + +''') +icon_data_center = NotStr(''' + + + + +''') +icon_insert_page = NotStr(''' + + + +''') +icon_shuttle = NotStr('''''') +icon_money = NotStr(''' + + + + + + +''') +icon_caret_sort_down = NotStr('''''') +icon_data_bin = NotStr(''' + + + +''') +icon_phone_incoming_filled = NotStr(''' + + +''') +icon_alarm = NotStr(''' + + + + + +''') +icon_deployment_unit_technical_data = NotStr(''' + + +''') +icon_wifi_bridge = NotStr(''' + + + + + + +''') +icon_crop_growth = NotStr('''''') +icon_box_plot = NotStr(''' + + +''') +icon_hole_filling_cursor = NotStr(''' + + + +''') +icon_volume_object_storage = NotStr(''' + + +''') +icon_pressure_filled = NotStr(''' + + +''') +icon_airport_location = NotStr('''''') +icon_building_insights3 = NotStr(''' + + + + + + + + + + +''') +icon_shape_unite = NotStr('''''') +icon_deployment_unit_technical_installation = NotStr(''' + + +''') +icon_screen_off = NotStr('''''') +icon_chart_radar = NotStr('''''') +icon_research_matrix = NotStr(''' + + + + +''') +icon_box_small = NotStr(''' + + + +''') +icon_filter_edit = NotStr(''' + + +''') +icon_shopping_cart_clear = NotStr(''' + + + + +''') +icon_box = NotStr(''' + + +''') +icon_application = NotStr(''' + + + + +''') +icon_chart_minimum = NotStr(''' + + + + + + + +''') +icon_user_settings = NotStr(''' + + + +''') +icon_send = NotStr('''''') +icon_letter_qq = NotStr(''' + + +''') +icon_mp4 = NotStr(''' + + + + +''') +icon_cu1 = NotStr(''' + + + +''') +icon_direction_u_turn_filled = NotStr(''' + + +''') +icon_document_word_processor = NotStr(''' + + +''') +icon_distribute_vertical_center = NotStr(''' + + +''') +icon_border_full = NotStr(''' + + + +''') +icon_volume_up_alt = NotStr(''' + + +''') +icon_rule_cancelled = NotStr(''' + + + + +''') +icon_tools = NotStr('''''') +icon_number_small1 = NotStr('''''') +icon_navaid_seaplane = NotStr(''' + + +''') +icon_tree_view_alt = NotStr('''''') +icon_misuse = NotStr('''''') +icon_ai_status_queued = NotStr(''' + + + + + +''') +icon_rotate360 = NotStr('''''') +icon_portfolio = NotStr('''''') +icon_laptop = NotStr(''' + + +''') +icon_lightning = NotStr('''''') +icon_chat_bot = NotStr(''' + + + + +''') +icon_wifi = NotStr(''' + + + + +''') +icon_cd_create_archive = NotStr(''' + + + + +''') +icon_map_boundary_vegetation = NotStr(''' + + + + + +''') +icon_router_wifi = NotStr(''' + + + + + + +''') +icon_reply_all = NotStr(''' + + +''') +icon_user_avatar_filled_alt = NotStr(''' + + +''') +icon_user = NotStr(''' + + +''') +icon_airport01 = NotStr(''' + + +''') +icon_book = NotStr(''' + + + + + + + +''') +icon_phone_filled = NotStr('''''') +icon_launch_study3 = NotStr(''' + + + + + +''') +icon_retry_failed = NotStr(''' + + +''') +icon_rule_draft = NotStr(''' + + + + +''') +icon_license_maintenance = NotStr(''' + + + + + + +''') +icon_tornado_warning = NotStr(''' + + + + + + + + + +''') +icon_ppt = NotStr(''' + + + +''') +icon_snow_blizzard = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_list_numbered = NotStr(''' + + + + +''') +icon_flow_stream_reference = NotStr(''' + + + + + + +''') +icon_color_switch = NotStr('''''') +icon_wheat = NotStr('''''') +icon_sort_descending = NotStr(''' + + + + +''') +icon_closed_caption_alt = NotStr(''' + + + + + + + +''') +icon_bastion_host = NotStr('''''') +icon_model_alt = NotStr('''''') +icon_chart_combo = NotStr(''' + + +''') +icon_text_mining = NotStr(''' + + + + +''') +icon_s_alt = NotStr(''' + + +''') +icon_milestone = NotStr('''''') +icon_concept = NotStr('''''') +icon_down_to_bottom = NotStr(''' + + +''') +icon_basketball = NotStr('''''') +icon_thunderstorm_scattered_night = NotStr(''' + + +''') +icon_letter_uu = NotStr(''' + + +''') +icon_continue = NotStr(''' + + +''') +icon_login = NotStr(''' + + +''') +icon_favorite = NotStr('''''') +icon_cd_archive = NotStr(''' + + + +''') +icon_carbon3_d_curve_auto_colon = NotStr('''''') +icon_tsv = NotStr(''' + + + +''') +icon_ai_results_medium = NotStr(''' + + + + + +''') +icon_bicycle = NotStr('''''') +icon_load_balancer_application = NotStr(''' + + + + + +''') +icon_t = NotStr('''''') +icon_ibm_cloud_pak_applications = NotStr(''' + + + +''') +icon_cics_region_target = NotStr(''' + + + + + + + +''') +icon_reminder = NotStr(''' + + +''') +icon_manage_protection = NotStr(''' + + +''') +icon_sunrise = NotStr(''' + + + + + + + +''') +icon_save_annotation = NotStr(''' + + + + +''') +icon_align_box_bottom_left = NotStr(''' + + + +''') +icon_horizontal_view = NotStr(''' + + +''') +icon_pan_vertical = NotStr('''''') +icon_rewind10 = NotStr(''' + + + +''') +icon_subtract = NotStr('''''') +icon_view_off_filled = NotStr(''' + + +''') +icon_area = NotStr('''''') +icon_arrow_annotation = NotStr(''' + + + +''') +icon_sleet = NotStr(''' + + + + + + + +''') +icon_direction_merge = NotStr('''''') +icon_omega = NotStr('''''') +icon_aperture = NotStr('''''') +icon_tool_box = NotStr('''''') +icon_send_backward = NotStr(''' + + + + + + +''') +icon_pdf_reference = NotStr(''' + + + + +''') +icon_table_of_contents = NotStr(''' + + + + + + + + +''') +icon_voice_activate = NotStr(''' + + + + +''') +icon_magic_wand_filled = NotStr(''' + + + + +''') +icon_thunderstorm_strong = NotStr(''' + + + + +''') +icon_earth_americas = NotStr('''''') +icon_asset_view = NotStr(''' + + + + +''') +icon_user_filled = NotStr(''' + + +''') +icon_recording_filled_alt = NotStr('''''') +icon_distribute_horizontal_center = NotStr(''' + + +''') +icon_pen = NotStr(''' + + +''') +icon_lifesaver = NotStr('''''') +icon_service_desk = NotStr('''''') +icon_direction_loop_left_filled = NotStr(''' + + +''') +icon_scan_alt = NotStr(''' + + + + + + + +''') +icon_tools_alt = NotStr('''''') +icon_non_certified = NotStr(''' + + + + +''') +icon_code_reference = NotStr(''' + + + + +''') +icon_vertical_view = NotStr(''' + + +''') +icon_html_reference = NotStr(''' + + + + + +''') +icon_character_patterns = NotStr(''' + + + + +''') +icon_touch1_down = NotStr(''' + + +''') +icon_study_skip = NotStr(''' + + + +''') +icon_redo = NotStr('''''') +icon_ccx = NotStr(''' + + + +''') +icon_mpeg = NotStr(''' + + + + +''') +icon_column_dependency = NotStr('''''') +icon_direction_straight_right_filled = NotStr(''' + + +''') +icon_open_panel_filled_top = NotStr('''''') +icon_direction_straight_filled = NotStr(''' + + +''') +icon_heat_map_stocks = NotStr('''''') +icon_harbor = NotStr('''''') +icon_study_previous = NotStr(''' + + + +''') +icon_chart_pie = NotStr('''''') +icon_maximize = NotStr(''' + + +''') +icon_user_speaker = NotStr(''' + + +''') +icon_page_first = NotStr(''' + + +''') +icon_ibm_cloud = NotStr(''' + + + + + + +''') +icon_keep_dry = NotStr(''' + + +''') +icon_carbon3_d_ica = NotStr(''' + + + + + +''') +icon_logo_flickr = NotStr(''' + + +''') +icon_chart_spiral = NotStr('''''') +icon_mp3 = NotStr(''' + + + +''') +icon_cross_tab = NotStr('''''') +icon_checkmark_outline_error = NotStr(''' + + + +''') +icon_text_align_center = NotStr(''' + + + + +''') +icon_two_factor_authentication = NotStr(''' + + + +''') +icon_report = NotStr(''' + + + + +''') +icon_location_heart = NotStr(''' + + +''') +icon_data_table = NotStr(''' + + + + + + + +''') +icon_gateway_public = NotStr(''' + + +''') +icon_chart_error_bar = NotStr('''''') +icon_logo_wechat = NotStr('''''') +icon_ibm_cloud_pak_system = NotStr(''' + + + + +''') +icon_mobile_download = NotStr(''' + + +''') +icon_server_proxy = NotStr(''' + + + +''') +icon_text_all_caps = NotStr(''' + + +''') +icon_table_alias = NotStr(''' + + +''') +icon_lasso = NotStr('''''') +icon_edge_enhancement02 = NotStr(''' + + + + + + +''') +icon_flow_logs_vpc = NotStr(''' + + + + +''') +icon_text_footnote = NotStr(''' + + +''') +icon_chart_venn_diagram = NotStr('''''') +icon_touch1_down_filled = NotStr(''' + + +''') +icon_phrase_sentiment = NotStr(''' + + +''') +icon_reply = NotStr('''''') +icon_number3 = NotStr('''''') +icon_container_services = NotStr('''''') +icon_user_service_desk = NotStr(''' + + + +''') +icon_scalpel_lasso = NotStr(''' + + +''') +icon_thumbs_up = NotStr('''''') +icon_flash = NotStr('''''') +icon_wind_power = NotStr('''''') +icon_temperature_celsius_alt = NotStr(''' + + +''') +icon_satellite = NotStr('''''') +icon_request_quote = NotStr(''' + + +''') +icon_status_resolved = NotStr(''' + + + +''') +icon_flow_connection = NotStr('''''') +icon_logo_github = NotStr('''''') +icon_volume_block_storage = NotStr(''' + + + + + +''') +icon_drill_through = NotStr(''' + + + +''') +icon_row_expand = NotStr(''' + + +''') +icon_communication_unified = NotStr(''' + + + + + +''') +icon_linux_alt = NotStr(''' + + +''') +icon_skip_back = NotStr(''' + + +''') +icon_database_elastic = NotStr(''' + + +''') +icon_circle_filled = NotStr(''' + + +''') +icon_intrusion_prevention = NotStr(''' + + + + + +''') +icon_flight_international = NotStr(''' + + +''') +icon_events = NotStr(''' + + + + + + +''') +icon_stop_outline = NotStr(''' + + +''') +icon_document = NotStr(''' + + + +''') +icon_app = NotStr(''' + + + +''') +icon_shape_intersect = NotStr('''''') +icon_settings_view = NotStr(''' + + + + +''') +icon_connect_recursive = NotStr('''''') +icon_user_online = NotStr(''' + + + +''') +icon_marine_warning = NotStr(''' + + + + +''') +icon_undo = NotStr('''''') +icon_unlocked = NotStr('''''') +icon_direction_right02_filled = NotStr(''' + + +''') +icon_letter_aa_large = NotStr(''' + + +''') +icon_draggable = NotStr(''' + + + + + + +''') +icon_open_panel_top = NotStr('''''') +icon_corn = NotStr('''''') +icon_cloud_foundry2 = NotStr(''' + + +''') +icon_save_series = NotStr(''' + + + +''') +icon_code = NotStr(''' + + + +''') +icon_equalizer = NotStr(''' + + + + + + + + + + + + + +''') +icon_join_right = NotStr(''' + + + + +''') +icon_session_border_control = NotStr('''''') +icon_pause = NotStr(''' + + +''') +icon_update_now = NotStr(''' + + + + +''') +icon_text_vertical_alignment = NotStr(''' + + + + + + + +''') +icon_vlan_ibm = NotStr(''' + + + +''') +icon_navaid_military = NotStr(''' + + + +''') +icon_user_access = NotStr(''' + + + +''') +icon_align_box_bottom_right = NotStr(''' + + + +''') +icon_calendar_heat_map = NotStr('''''') +icon_distribute_horizontal_right = NotStr(''' + + + + +''') +icon_wind_stream = NotStr(''' + + + +''') +icon_notification_filled = NotStr('''''') +icon_graphical_data_flow = NotStr(''' + + + + +''') +icon_study_transfer = NotStr(''' + + + + +''') +icon_instance_cx = NotStr(''' + + + + + + + + + +''') +icon_logical_partition = NotStr(''' + + +''') +icon_windy = NotStr(''' + + +''') +icon_face_activated_filled = NotStr('''''') +icon_ai_results = NotStr(''' + + + + + +''') +icon_phone_block_filled = NotStr(''' + + +''') +icon_license_maintenance_draft = NotStr(''' + + + +''') +icon_page_break = NotStr(''' + + + + + + +''') +icon_text_align_mixed = NotStr(''' + + + + +''') +icon_dns_services = NotStr(''' + + + +''') +icon_y = NotStr('''''') +icon_rocket = NotStr(''' + + +''') +icon_logo_skype = NotStr('''''') +icon_ibm_security = NotStr('''''') +icon_mpg2 = NotStr(''' + + + + +''') +icon_chart_radial = NotStr(''' + + + +''') +icon_virtual_column_key = NotStr(''' + + + +''') +icon_tag_import = NotStr(''' + + + +''') +icon_radio_button_checked = NotStr(''' + + +''') +icon_soil_moisture = NotStr(''' + + + + + + + + + + +''') +icon_mammogram_stacked = NotStr(''' + + + + +''') +icon_progress_bar = NotStr(''' + + +''') +icon_chart_line_data = NotStr('''''') +icon_logo_livestream = NotStr(''' + + +''') +icon_chart_violin_plot = NotStr(''' + + + +''') +icon_location_hazard = NotStr(''' + + + +''') +icon_chevron_sort_up = NotStr('''''') +icon_edge_enhancement03 = NotStr(''' + + + + + + +''') +icon_event_schedule = NotStr(''' + + + +''') +icon_location_company = NotStr(''' + + + + +''') +icon_information_square_filled = NotStr(''' + + +''') +icon_chart_point = NotStr(''' + + + + + + + + + + +''') +icon_raw = NotStr(''' + + + +''') +icon_explore = NotStr(''' + + +''') +icon_align_horizontal_left = NotStr(''' + + + +''') +icon_calculator_check = NotStr(''' + + + + + + + + + + + +''') +icon_document_tasks = NotStr(''' + + +''') +icon_snow_heavy = NotStr(''' + + + + + + + + + + + + + + + + + + + + + +''') +icon_group_objects_save = NotStr(''' + + +''') +icon_cafe = NotStr(''' + + + +''') +icon_data_table_reference = NotStr(''' + + + + + + +''') +icon_closed_caption = NotStr(''' + + + +''') +icon_app_connectivity = NotStr('''''') +icon_import_export = NotStr(''' + + + +''') +icon_task_add = NotStr(''' + + +''') +icon_barrier = NotStr(''' + + + + + +''') +icon_direction_sharp_turn_filled = NotStr(''' + + +''') +icon_folder_open = NotStr('''''') +icon_load_balancer_classic = NotStr(''' + + + + + +''') +icon_firewall_classic = NotStr(''' + + + + + +''') +icon_license_third_party_draft = NotStr(''' + + + + +''') +icon_misuse_outline = NotStr(''' + + +''') +icon_letter_ee = NotStr(''' + + +''') +icon_tropical_storm = NotStr(''' + + +''') +icon_phone_voice_filled = NotStr(''' + + + +''') +icon_dot_mark = NotStr('''''') +icon_drone_delivery = NotStr(''' + + + + +''') +icon_person = NotStr(''' + + +''') +icon_percentage_filled = NotStr(''' + + + +''') +icon_data_view_alt = NotStr(''' + + + + + + +''') +icon_file_storage = NotStr(''' + + + +''') +icon_ice_vision = NotStr(''' + + + +''') +icon_temperature_inversion = NotStr(''' + + +''') +icon_view_off = NotStr(''' + + + +''') +icon_heat_map02 = NotStr(''' + + + + + + + +''') +icon_battery_low = NotStr(''' + + + +''') +icon_open_panel_filled_right = NotStr('''''') +icon_number_small6 = NotStr('''''') +icon_error_outline = NotStr(''' + + +''') +icon_view_mode1 = NotStr(''' + + + +''') +icon_thumbnail2 = NotStr(''' + + + + + + + + + +''') +icon_cloud_auditing = NotStr(''' + + +''') +icon_number5 = NotStr('''''') +icon_outlook_severe = NotStr(''' + + + +''') +icon_hail = NotStr(''' + + + + + + + +''') +icon_data_base = NotStr(''' + + + + +''') +icon_face_cool = NotStr(''' + + +''') +icon_insert_syntax = NotStr(''' + + + +''') +icon_search_locate = NotStr(''' + + + + +''') +icon_shopping_cart = NotStr(''' + + + +''') +icon_document_audio = NotStr(''' + + +''') +icon_theater = NotStr(''' + + + + +''') +icon_folder_move_to = NotStr(''' + + +''') +icon_document_add = NotStr(''' + + +''') +icon_number1 = NotStr(''' + + +''') +icon_column_delete = NotStr(''' + + + +''') +icon_study_read = NotStr(''' + + + +''') +icon_group_security = NotStr(''' + + + + + +''') +icon_cut_out = NotStr(''' + + + + +''') +icon_region_analysis_area = NotStr(''' + + + +''') +icon_email_new = NotStr(''' + + +''') +icon_image_search_alt = NotStr(''' + + +''') +icon_window_base = NotStr(''' + + + + + + + + + + +''') +icon_gui_management = NotStr(''' + + + + + +''') +icon_game_wireless = NotStr(''' + + + + + + + + +''') +icon_direction_curve = NotStr('''''') +icon_data_backup = NotStr(''' + + + + + +''') +icon_h = NotStr('''''') +icon_chart_bubble_packed = NotStr('''''') +icon_hardware_security_module = NotStr(''' + + + + +''') +icon_function = NotStr(''' + + + +''') +icon_mobile = NotStr('''''') +icon_rule = NotStr(''' + + + +''') +icon_folder_off = NotStr(''' + + +''') +icon_passenger_drinks = NotStr(''' + + + + +''') +icon_battery_full = NotStr(''' + + + +''') +icon_finance = NotStr(''' + + +''') +icon_logo_vmware = NotStr('''''') +icon_text_underline = NotStr(''' + + +''') +icon_chevron_left = NotStr('''''') +icon_ibm_cloud_pak_network_automation = NotStr(''' + + + + + + +''') +icon_number_small4 = NotStr('''''') +icon_review = NotStr(''' + + +''') +icon_edge_enhancement01 = NotStr(''' + + + + + + +''') +icon_box_extra_large = NotStr(''' + + + + +''') +icon_ica2_d = NotStr(''' + + + + + +''') +icon_play_outline_filled = NotStr(''' + + + +''') +icon_folder_details = NotStr(''' + + + + +''') +icon_gif = NotStr(''' + + + +''') +icon_stethoscope = NotStr('''''') +icon_align_box_bottom_center = NotStr(''' + + + +''') +icon_direct_link = NotStr(''' + + +''') +icon_distribute_vertical_bottom = NotStr(''' + + + + +''') +icon_rain_scattered = NotStr(''' + + + + + + + +''') +icon_forecast_hail = NotStr(''' + + + + + + +''') +icon_vehicle_services = NotStr(''' + + +''') +icon_load_balancer_pool = NotStr(''' + + + + + + + +''') +icon_vpn_connection = NotStr('''''') +icon_cut = NotStr('''''') +icon_cognitive = NotStr('''''') +icon_face_satisfied = NotStr(''' + + + + +''') +icon_stack_limitation = NotStr(''' + + + + +''') +icon_chart_bar_target = NotStr(''' + + + +''') +icon_document_horizontal = NotStr(''' + + +''') +icon_chart_line = NotStr('''''') +icon_stamp = NotStr('''''') +icon_text_indent_less = NotStr(''' + + + + + + +''') +icon_commit = NotStr('''''') +icon_data_format = NotStr(''' + + + + + +''') +icon_chat_launch = NotStr(''' + + + +''') +icon_touch2_filled = NotStr(''' + + + +''') +icon_json = NotStr(''' + + + + +''') +icon_zoom_in = NotStr(''' + + +''') +icon_face_dissatisfied = NotStr(''' + + + + +''') +icon_information_square = NotStr(''' + + + +''') +icon_asleep = NotStr('''''') +icon_flag_filled = NotStr('''''') +icon_partly_cloudy_night = NotStr('''''') +icon_text_mining_applier = NotStr(''' + + +''') +icon_cloud_data_ops = NotStr(''' + + + + +''') +icon_calibrate = NotStr('''''') +icon_mail_all = NotStr(''' + + + +''') +icon_user_identification = NotStr(''' + + + + + +''') +icon_crowd_report_filled = NotStr(''' + + +''') +icon_logo_linkedin = NotStr('''''') +icon_circle_measurement = NotStr(''' + + +''') +icon_play = NotStr('''''') +icon_agriculture_analytics = NotStr(''' + + + + +''') +icon_cloud_registry = NotStr(''' + + + +''') +icon_text_highlight = NotStr(''' + + + +''') +icon_not_sent_filled = NotStr(''' + + +''') +icon_rain_drop = NotStr(''' + + +''') +icon_matrix = NotStr(''' + + + + +''') +icon_two_person_lift = NotStr(''' + + + + + +''') +icon_radio_button = NotStr('''''') +icon_haze = NotStr(''' + + + + + + + + +''') +icon_model_reference = NotStr(''' + + +''') +icon_fire = NotStr('''''') +icon_block_storage = NotStr(''' + + + + +''') +icon_weather_front_cold = NotStr(''' + + +''') +icon_delete = NotStr(''' + + + + +''') +icon_archive = NotStr(''' + + +''') +icon_battery_charging = NotStr(''' + + + + +''') +icon_skip_back_outline_solid = NotStr(''' + + + +''') +icon_brush_freehand = NotStr(''' + + +''') +icon_rotate_counterclockwise = NotStr(''' + + +''') +icon_growth = NotStr('''''') +icon_zip_reference = NotStr(''' + + + + +''') +icon_connect_target = NotStr(''' + + +''') +icon_cube_view = NotStr(''' + + + +''') +icon_skill_level_intermediate = NotStr(''' + + + +''') +icon_medication = NotStr('''''') +icon_cloud_snow = NotStr(''' + + + + +''') +icon_chat_off = NotStr(''' + + +''') +icon_user_favorite = NotStr(''' + + + +''') +icon_cursor2 = NotStr('''''') +icon_mammogram = NotStr(''' + + + + + + + +''') +icon_user_activity = NotStr(''' + + + +''') +icon_volume_down = NotStr(''' + + +''') +icon_task = NotStr(''' + + +''') +icon_warning_hex = NotStr(''' + + + +''') +icon_chart_rose = NotStr('''''') +icon_pcn_p_node = NotStr(''' + + +''') +icon_flow_stream = NotStr(''' + + + +''') +icon_connection_two_way = NotStr(''' + + + + + + + + + +''') +icon_logo_openshift = NotStr('''''') +icon_temperature_hot = NotStr(''' + + + + + + + +''') +icon_forecast_lightning30 = NotStr(''' + + + + +''') +icon_load_balancer_vpc = NotStr(''' + + + + + +''') +icon_letter_vv = NotStr(''' + + +''') +icon_at = NotStr('''''') +icon_moonset = NotStr(''' + + + + +''') +icon_download_study = NotStr(''' + + + + + + +''') +icon_cloud_upload = NotStr(''' + + +''') +icon_u1 = NotStr(''' + + +''') +icon_ibm_cloud_pak_security = NotStr(''' + + +''') +icon_number7 = NotStr('''''') +icon_information_filled = NotStr(''' + + +''') +icon_chart_population = NotStr('''''') +icon_checkmark_filled_warning = NotStr(''' + + + +''') +icon_unknown = NotStr(''' + + + +''') +icon_headphones = NotStr('''''') +icon_awake = NotStr(''' + + + + + + + + + +''') +icon_cell_tower = NotStr(''' + + + +''') +icon_fetch_upload_cloud = NotStr(''' + + +''') +icon_cloud_ceiling = NotStr(''' + + + + +''') +icon_voicemail = NotStr('''''') +icon_pause_filled = NotStr(''' + + +''') +icon_navaid_civil = NotStr('''''') +icon_fingerprint_recognition = NotStr(''' + + + + + +''') +icon_cics_region_routing = NotStr(''' + + + + +''') +icon_blog = NotStr(''' + + + + +''') +icon_chart_line_smooth = NotStr('''''') +icon_humidity = NotStr('''''') +icon_plane = NotStr('''''') +icon_fusion_blender = NotStr('''''') +icon_shopping_cart_arrow_down = NotStr(''' + + + + +''') +icon_pending = NotStr(''' + + + + +''') +icon_magnify = NotStr(''' + + + +''') +icon_radar_weather = NotStr('''''') +icon_mac_option = NotStr(''' + + +''') +icon_bluetooth = NotStr('''''') +icon_stop_filled = NotStr('''''') +icon_text_subscript = NotStr(''' + + +''') +icon_tank = NotStr('''''') +icon_catalog = NotStr(''' + + + + +''') +icon_policy = NotStr(''' + + + + +''') +icon_dashboard_reference = NotStr(''' + + + + + +''') +icon_select02 = NotStr(''' + + +''') +icon_audio_console = NotStr(''' + + + +''') +icon_temperature_max = NotStr(''' + + + + + +''') +icon_weather_station = NotStr(''' + + + + + +''') +icon_operation_if = NotStr(''' + + + +''') +icon_delivery_add = NotStr(''' + + +''') +icon_run = NotStr(''' + + + +''') +icon_letter_zz = NotStr(''' + + +''') +icon_ibm_cloud_pak_integration = NotStr(''' + + + + + +''') +icon_construction = NotStr(''' + + +''') +icon_contour_edit = NotStr(''' + + + + + + + +''') +icon_direction_loop_left = NotStr(''' + + +''') +icon_split_screen = NotStr(''' + + + +''') +icon_pause_past = NotStr(''' + + + +''') +icon_warning_other = NotStr(''' + + + + + + +''') +icon_traffic_incident = NotStr(''' + + + +''') +icon_storm_tracker = NotStr('''''') +icon_camera = NotStr(''' + + +''') +icon_folder_add = NotStr(''' + + +''') +icon_user_admin = NotStr(''' + + + +''') +icon_taste = NotStr(''' + + + + + + +''') +icon_scooter = NotStr(''' + + +''') +icon_tool_kit = NotStr(''' + + + +''') +icon_sailboat_offshore = NotStr(''' + + +''') +icon_bookmark = NotStr('''''') +icon_crop_health = NotStr(''' + + + +''') +icon_windy_snow = NotStr(''' + + + + + + + + + + + + + + + + + +''') +icon_cloud_satellite = NotStr(''' + + + + + +''') +icon_ibm_match360 = NotStr(''' + + + + + + + +''') +icon_open_panel_filled_bottom = NotStr('''''') +icon_group_objects = NotStr(''' + + +''') +icon_logo_youtube = NotStr('''''') +icon_temperature_fahrenheit_alt = NotStr(''' + + +''') +icon_checkbox_undeterminate = NotStr(''' + + +''') +icon_list = NotStr(''' + + + + + + +''') +icon_data_view = NotStr(''' + + + + + + +''') +icon_gas_station_filled = NotStr(''' + + +''') +icon_u2 = NotStr(''' + + +''') +icon_network3 = NotStr(''' + + + + + +''') +icon_overlay = NotStr('''''') +icon_car_front = NotStr(''' + + +''') +icon_cloud_rain = NotStr(''' + + + + +''') +icon_fade = NotStr(''' + + + + + +''') +icon_server_dns = NotStr(''' + + + +''') +icon_chevron_down = NotStr('''''') +icon_checkmark_outline_warning = NotStr(''' + + + +''') +icon_group_resource = NotStr(''' + + + +''') +icon_face_wink_filled = NotStr('''''') +icon_page_last = NotStr(''' + + +''') +icon_select_window = NotStr(''' + + + + + + +''') +icon_lasso_polygon = NotStr('''''') +icon_direction_rotary_first_right_filled = NotStr(''' + + + +''') +icon_center_circle = NotStr('''''') +icon_credentials = NotStr(''' + + + +''') +icon_airplay = NotStr(''' + + +''') +icon_drill_back = NotStr(''' + + + +''') +icon_ice_accretion = NotStr(''' + + + + + +''') +icon_virtual_machine = NotStr(''' + + +''') +icon_checkbox_checked = NotStr(''' + + +''') +icon_airline_digital_gate = NotStr(''' + + + + +''') +icon_volume_mute_filled = NotStr(''' + + +''') +icon_snow_density = NotStr(''' + + +''') +icon_sight = NotStr(''' + + + + + +''') +icon_drought = NotStr('''''') +icon_stress_breath_editor = NotStr(''' + + + + +''') +icon_drop_photo = NotStr(''' + + + + + + + + + + + + + + + + + + +''') +icon_data_share = NotStr(''' + + + + + +''') +icon_face_dizzy = NotStr(''' + + + + +''') +icon_report_data = NotStr(''' + + + + +''') +icon_home = NotStr('''''') +icon_cyclist = NotStr(''' + + + + +''') +icon_volume_file_storage = NotStr(''' + + +''') +icon_carousel_vertical = NotStr(''' + + + +''') +icon_network_admin_control = NotStr(''' + + + +''') +icon_earth = NotStr('''''') +icon_accessibility_color_filled = NotStr(''' + + + + +''') +icon_letter_kk = NotStr(''' + + +''') +icon_filter_reset = NotStr(''' + + +''') +icon_minimize = NotStr(''' + + +''') +icon_direction_merge_filled = NotStr(''' + + +''') +icon_phone_voice = NotStr(''' + + + +''') +icon_chart_multi_line = NotStr('''''') +icon_timer = NotStr(''' + + + +''') +icon_meter = NotStr(''' + + + + +''') +icon_language = NotStr(''' + + + + + +''') +icon_classifier_language = NotStr(''' + + + + +''') +icon_double_integer = NotStr(''' + + +''') +icon_worship_muslim = NotStr(''' + + +''') +icon_radio_combat = NotStr(''' + + + + +''') +icon_share_knowledge = NotStr(''' + + + + + + + + +''') +icon_back_to_top = NotStr(''' + + +''') +icon_chat = NotStr(''' + + + +''') +icon_direction_straight_right = NotStr('''''') +icon_accumulation_snow = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_checkbox_checked_filled = NotStr(''' + + +''') +icon_x_axis = NotStr('''''') +icon_video_add = NotStr(''' + + +''') +icon_airport02 = NotStr(''' + + +''') +icon_warning_alt_inverted = NotStr(''' + + + +''') +icon_increase_level = NotStr('''''') +icon_zoom_pan = NotStr(''' + + + + + +''') +icon_number_small2 = NotStr('''''') +icon_transgender = NotStr('''''') +icon_scalpel_select = NotStr(''' + + +''') +icon_moonrise = NotStr(''' + + + + +''') +icon_circle_packing = NotStr('''''') +icon_deployment_unit_technical_presentation = NotStr(''' + + +''') +icon_text_link = NotStr(''' + + + + + +''') +icon_binoculars = NotStr('''''') +icon_doc = NotStr(''' + + + +''') +icon_user_avatar_filled = NotStr(''' + + +''') +icon_jump_link = NotStr('''''') +icon_help_desk = NotStr(''' + + + + +''') +icon_view = NotStr(''' + + +''') +icon_bee = NotStr(''' + + + + + +''') +icon_virtual_private_cloud_alt = NotStr(''' + + + +''') +icon_stop_sign = NotStr('''''') +icon_reset = NotStr('''''') +icon_windy_strong = NotStr(''' + + + +''') +icon_box_large = NotStr(''' + + + +''') +icon_debug = NotStr('''''') +icon_checkbox_undeterminate_filled = NotStr('''''') +icon_chart_column_target = NotStr(''' + + + +''') +icon_caret_up = NotStr('''''') +icon_translate = NotStr(''' + + +''') +icon_threshold = NotStr(''' + + + + + + + + + + +''') +icon_boot = NotStr('''''') +icon_watson = NotStr(''' + + + + + + +''') +icon_txt = NotStr(''' + + + +''') +icon_vehicle_api = NotStr(''' + + +''') +icon_application_virtual = NotStr(''' + + + + + +''') +icon_reflect_vertical = NotStr(''' + + + + +''') +icon_collaborate = NotStr(''' + + + + + + +''') +icon_ibm_cloud_pak_multicloud_mgmt = NotStr(''' + + +''') +icon_function_math = NotStr(''' + + +''') +icon_cy = NotStr(''' + + +''') +icon_earth_europe_africa_filled = NotStr('''''') +icon_replicate = NotStr(''' + + + + +''') +icon_html = NotStr(''' + + + + +''') +icon_misuse_alt = NotStr(''' + + +''') +icon_flash_filled = NotStr('''''') +icon_ai_status_failed = NotStr(''' + + + + + +''') +icon_label = NotStr(''' + + + +''') +icon_sql = NotStr(''' + + + +''') +icon_qr_code = NotStr(''' + + + + + + + + + + + + + + +''') +icon_keyboard = NotStr(''' + + + + + + + + + + + + + + +''') +icon_uv_index_filled = NotStr('''''') +icon_task_location = NotStr(''' + + + +''') +icon_launch_study2 = NotStr(''' + + + + +''') +icon_picnic_area = NotStr(''' + + +''') +icon_gas_station = NotStr(''' + + + +''') +icon_train_profile = NotStr(''' + + + +''') +icon_send_alt_filled = NotStr('''''') +icon_group_objects_new = NotStr(''' + + +''') +icon_denominate = NotStr(''' + + + + +''') +icon_rotate_clockwise_alt = NotStr(''' + + +''') +icon_bring_forward = NotStr(''' + + + + + + + + + +''') +icon_navaid_ndb = NotStr(''' + + + + + + + + + + +''') +icon_helicopter = NotStr('''''') +icon_unlink = NotStr(''' + + + + + + + + +''') +icon_cabin_care_alert = NotStr(''' + + + +''') +icon_previous_outline = NotStr(''' + + +''') +icon_gamification = NotStr('''''') +icon_instance_virtual = NotStr(''' + + + + + + + + +''') +icon_database_datastax = NotStr(''' + + +''') +icon_chart_error_bar_alt = NotStr(''' + + + +''') +icon_microscope = NotStr('''''') +icon_license_third_party = NotStr(''' + + + + + + + +''') +icon_forward5 = NotStr(''' + + +''') +icon_u3 = NotStr(''' + + +''') +icon_chart_multitype = NotStr(''' + + + + + + + + + + +''') +icon_user_simulation = NotStr(''' + + + + + + + + +''') +icon_skip_back_outline_filled = NotStr(''' + + + +''') +icon_calculation_alt = NotStr(''' + + + + + +''') +icon_nominal = NotStr(''' + + + +''') +icon_departure = NotStr(''' + + +''') +icon_user_profile_alt = NotStr(''' + + + + + +''') +icon_contrast = NotStr('''''') +icon_rotate_counterclockwise_alt = NotStr(''' + + +''') +icon_tropical_storm_model_tracks = NotStr(''' + + + +''') +icon_interactive_segmentation_cursor = NotStr(''' + + + + + +''') +icon_text_wrap = NotStr(''' + + + +''') +icon_cloudy = NotStr('''''') +icon_worship_jewish = NotStr('''''') +icon_direction_rotary_right_filled = NotStr(''' + + + +''') +icon_text_indent_more = NotStr(''' + + + + + + +''') +icon_load_balancer_global = NotStr(''' + + + + + +''') +icon_warning = NotStr(''' + + + +''') +icon_mountain = NotStr('''''') +icon_qq_plot = NotStr(''' + + + + + + +''') +icon_query = NotStr(''' + + + +''') +icon_checkmark_outline = NotStr(''' + + +''') +icon_logo_yelp = NotStr(''' + + + + + + +''') +icon_grid = NotStr(''' + + + + +''') +icon_exit = NotStr(''' + + +''') +icon_generate_pdf = NotStr(''' + + + + + +''') +icon_wallet = NotStr(''' + + +''') +icon_energy_renewable = NotStr('''''') +icon_tag_export = NotStr(''' + + + +''') +icon_settings_services = NotStr(''' + + + + +''') +icon_cost = NotStr(''' + + +''') +icon_car = NotStr('''''') +icon_video_off = NotStr(''' + + +''') +icon_chart_bar_stacked = NotStr('''''') +icon_logo_discord = NotStr(''' + + +''') +icon_chart_scatter = NotStr(''' + + + + + + +''') +icon_map_boundary = NotStr(''' + + + + + +''') +icon_purchase = NotStr(''' + + +''') +icon_content_delivery_network = NotStr(''' + + + + +''') +icon_deployment_unit_execution = NotStr('''''') +icon_download = NotStr(''' + + +''') +icon_crop = NotStr(''' + + +''') +icon_observed_hail = NotStr(''' + + + + + + +''') +icon_machine_learning_model = NotStr(''' + + + + +''') +icon_link = NotStr(''' + + +''') +icon_ai_results_low = NotStr(''' + + + + + +''') +icon_settings_adjust = NotStr(''' + + +''') +icon_code_signing_service = NotStr(''' + + + + + + + + + + + + + +''') +icon_radio = NotStr(''' + + + + + + +''') +icon_sailboat_coastal = NotStr('''''') +icon_chevron_right = NotStr('''''') +icon_cics_cmas = NotStr(''' + + + + + + +''') +icon_volume_down_filled_alt = NotStr(''' + + +''') +icon_direction_rotary_right = NotStr('''''') +icon_phone_outgoing = NotStr(''' + + +''') +icon_previous_filled = NotStr(''' + + +''') +icon_expand_all = NotStr('''''') +icon_number_small8 = NotStr('''''') +icon_script = NotStr(''' + + + +''') +icon_change_catalog = NotStr(''' + + + +''') +icon_piggy_bank = NotStr(''' + + +''') +icon_logo_digg = NotStr(''' + + + + + +''') +icon_traffic_cone = NotStr('''''') +icon_chart_bar = NotStr('''''') +icon_shape_except = NotStr('''''') +icon_border_top = NotStr(''' + + + + + + + + + + + + + + + + + + + + +''') +icon_arrow_down_right = NotStr('''''') +icon_palm_tree = NotStr('''''') +icon_user_avatar = NotStr(''' + + +''') +icon_arrow_right = NotStr('''''') +icon_mobile_audio = NotStr(''' + + + + + + + + +''') +icon_rain = NotStr(''' + + + + +''') +icon_cd_create_exchange = NotStr(''' + + + + +''') +icon_industry = NotStr('''''') +icon_settings_check = NotStr(''' + + + +''') +icon_text_tracking = NotStr(''' + + + +''') +icon_exam_mode = NotStr(''' + + + +''') +icon_skip_forward_outline_solid = NotStr(''' + + + +''') +icon_reflect_horizontal = NotStr(''' + + + + +''') +icon_join_left = NotStr(''' + + + + +''') +icon_rotate_clockwise_alt_filled = NotStr(''' + + +''') +icon_align_vertical_bottom = NotStr(''' + + + +''') +icon_border_bottom = NotStr(''' + + + + + + + + + + + + + + + + + + + + +''') +icon_data_vis1 = NotStr('''''') +icon_tennis = NotStr(''' + + + +''') +icon_license = NotStr(''' + + + + + +''') +icon_letter_tt = NotStr(''' + + +''') +icon_fragile = NotStr('''''') +icon_plane_sea = NotStr(''' + + +''') +icon_research_hinton_plot = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_microphone_off_filled = NotStr(''' + + + +''') +icon_pdf = NotStr(''' + + + +''') +icon_api = NotStr('''''') +icon_document_unknown = NotStr(''' + + + +''') +icon_bluetooth_off = NotStr(''' + + +''') +icon_shape_exclude = NotStr(''' + + +''') +icon_transmission_lte = NotStr(''' + + + +''') +icon_database_postgresql = NotStr(''' + + +''') +icon_instance_mx = NotStr(''' + + + + + + + + + +''') +icon_document_word_processor_reference = NotStr(''' + + + +''') +icon_data_blob = NotStr(''' + + + + + + + +''') +icon_train_time = NotStr(''' + + + +''') +icon_id = NotStr(''' + + + +''') +icon_location_star = NotStr(''' + + +''') +icon_microphone_filled = NotStr(''' + + +''') +icon_category_new = NotStr(''' + + +''') +icon_charging_station_filled = NotStr(''' + + +''') +icon_document_subtract = NotStr(''' + + +''') +icon_campsite = NotStr('''''') +icon_text_superscript = NotStr(''' + + +''') +icon_database_rabbit = NotStr(''' + + +''') +icon_noodle_bowl = NotStr(''' + + +''') +icon_paste = NotStr(''' + + +''') +icon_gateway = NotStr('''''') +icon_phone = NotStr('''''') +icon_snow_scattered = NotStr(''' + + + + + + + + + + + + + + + + + + + + + +''') +icon_video_chat = NotStr(''' + + + +''') +icon_mac_command = NotStr('''''') +icon_charging_station = NotStr(''' + + + +''') +icon_queued = NotStr(''' + + + + + + + + + + + + + + +''') +icon_cloud_satellite_config = NotStr(''' + + + + + +''') +icon_navaid_dme = NotStr(''' + + + + +''') +icon_carbon3_d_mpr_toggle = NotStr(''' + + + + + +''') +icon_chart_relationship = NotStr('''''') +icon_weather_front_stationary = NotStr(''' + + + +''') +icon_save_image = NotStr(''' + + +''') +icon_row = NotStr(''' + + + +''') +icon_rain_heavy = NotStr(''' + + + +''') +icon_number_small7 = NotStr('''''') +icon_arrival = NotStr(''' + + +''') +icon_tag_group = NotStr(''' + + + +''') +icon_copy_link = NotStr(''' + + + +''') +icon_navaid_vor = NotStr(''' + + +''') +icon_warning_alt_filled = NotStr(''' + + + +''') +icon_task_settings = NotStr(''' + + +''') +icon_text_small_caps = NotStr(''' + + +''') +icon_tag_edit = NotStr(''' + + + +''') +icon_checkbox_indeterminate_filled = NotStr(''' + + +''') +icon_rain_scattered_night = NotStr(''' + + +''') +icon_navaid_vordme = NotStr(''' + + +''') +icon_skip_back_solid_filled = NotStr(''' + + +''') +icon_chart_area_smooth = NotStr('''''') +icon_stop = NotStr('''''') +icon_direction_bear_right01_filled = NotStr(''' + + +''') +icon_sunset = NotStr(''' + + + + + + + +''') +icon_warning_hex_filled = NotStr(''' + + +''') +icon_edit_filter = NotStr(''' + + +''') +icon_pin = NotStr('''''') +icon_notification_off = NotStr(''' + + +''') +icon_cut_in_half = NotStr('''''') +icon_image_copy = NotStr(''' + + + +''') +icon_brush_polygon = NotStr(''' + + +''') +icon_skill_level = NotStr(''' + + + +''') +icon_roadmap = NotStr(''' + + + +''') +icon_wireless_checkout = NotStr(''' + + + +''') +icon_checkmark_filled_error = NotStr(''' + + + +''') +icon_face_satisfied_filled = NotStr('''''') +icon_condition_wait_point = NotStr(''' + + +''') +icon_document_epdf = NotStr(''' + + +''') +icon_text_new_line = NotStr('''''') +icon_data_accessor = NotStr(''' + + + +''') +icon_rain_drizzle = NotStr(''' + + +''') +icon_phone_off = NotStr(''' + + +''') +icon_cz = NotStr(''' + + +''') +icon_view_filled = NotStr(''' + + +''') +icon_plane_private = NotStr(''' + + +''') +icon_popup = NotStr(''' + + +''') +icon_hybrid_networking_alt = NotStr('''''') +icon_window_black_saturation = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_directory_domain = NotStr('''''') +icon_apple = NotStr(''' + + +''') +icon_border_left = NotStr(''' + + + + + + + + + + + + + + + + + + + + +''') +icon_pointer_text = NotStr(''' + + + +''') +icon_forecast_lightning = NotStr(''' + + +''') +icon_asset_digital_twin = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_skip_back_filled = NotStr(''' + + +''') +icon_table_shortcut = NotStr(''' + + +''') +icon_flood = NotStr(''' + + +''') +icon_direction_curve_filled = NotStr(''' + + +''') +icon_flood_warning = NotStr(''' + + + + +''') +icon_terminal3270 = NotStr(''' + + +''') +icon_incomplete_cancel = NotStr(''' + + + + +''') +icon_align_box_middle_left = NotStr(''' + + + +''') +icon_cloud_monitoring = NotStr(''' + + +''') +icon_music = NotStr('''''') +icon_tennis_ball = NotStr('''''') +icon_bare_metal_server01 = NotStr(''' + + + +''') +icon_network3_reference = NotStr(''' + + + + + +''') +icon_open_panel_right = NotStr('''''') +icon_image_search = NotStr(''' + + + +''') +icon_tablet = NotStr(''' + + +''') +icon_recording = NotStr(''' + + + +''') +icon_drag_horizontal = NotStr(''' + + +''') +icon_visual_recognition = NotStr(''' + + +''') +icon_cloud_service_management = NotStr(''' + + +''') +icon_caret_down = NotStr('''''') +icon_data_structured = NotStr(''' + + +''') +icon_analytics_reference = NotStr(''' + + + + +''') +icon_cloud_alerting = NotStr(''' + + +''') +icon_join_inner = NotStr('''''') +icon_intersect = NotStr(''' + + + +''') +icon_user_role = NotStr(''' + + + +''') +icon_api1 = NotStr(''' + + + +''') +icon_ref_evapotranspiration = NotStr(''' + + + + +''') +icon_rotate180 = NotStr(''' + + + + + +''') +icon_load_balancer_listener = NotStr(''' + + + + + + + + +''') +icon_open_panel_left = NotStr('''''') +icon_split = NotStr(''' + + + + +''') +icon_gift = NotStr('''''') +icon_virtual_private_cloud = NotStr(''' + + +''') +icon_warning_alt_inverted_filled = NotStr(''' + + + +''') +icon_launch_study1 = NotStr(''' + + + + +''') +icon_factor = NotStr('''''') +icon_network2 = NotStr('''''') +icon_study_next = NotStr(''' + + + +''') +icon_paint_brush = NotStr('''''') +icon_sigma = NotStr('''''') +icon_delivery_truck = NotStr('''''') +icon_erase = NotStr(''' + + +''') +icon_apps = NotStr('''''') +icon_sub_volume = NotStr('''''') +icon_ibm_data_replication = NotStr(''' + + + +''') +icon_fork = NotStr('''''') +icon_trash_can = NotStr(''' + + + + +''') +icon_operation = NotStr(''' + + + + +''') +icon_panel_expansion = NotStr(''' + + +''') +icon_page_number = NotStr(''' + + +''') +icon_data_diode = NotStr('''''') +icon_eyedropper = NotStr(''' + + +''') +icon_ai_results_very_high = NotStr(''' + + + + + + +''') +icon_collapse_all = NotStr(''' + + + +''') +icon_train_ticket = NotStr(''' + + +''') +icon_thumbnail_preview = NotStr(''' + + + + + +''') +icon_number0 = NotStr(''' + + +''') +icon_flow = NotStr('''''') +icon_asset = NotStr(''' + + +''') +icon_dew_point_filled = NotStr(''' + + +''') +icon_incomplete_error = NotStr(''' + + + + +''') +icon_ungroup_objects = NotStr('''''') +icon_network_public = NotStr(''' + + +''') +icon_gradient = NotStr(''' + + + + +''') +icon_calculator = NotStr(''' + + + + + + + + + + + +''') +icon_movement = NotStr('''''') +icon_thumbs_down_filled = NotStr(''' + + +''') +icon_pills = NotStr('''''') +icon_outage = NotStr(''' + + + + +''') +icon_text_align_left = NotStr(''' + + + + + +''') +icon_radar_enhanced = NotStr('''''') +icon_send_alt = NotStr('''''') +icon_user_x_ray = NotStr(''' + + + + +''') +icon_tag_none = NotStr(''' + + + +''') +icon_scooter_front = NotStr(''' + + +''') +icon_open_panel_bottom = NotStr('''''') +icon_favorite_half = NotStr('''''') +icon_direction_sharp_turn = NotStr('''''') +icon_document_download = NotStr(''' + + +''') +icon_no_ticket = NotStr(''' + + +''') +icon_carousel_horizontal = NotStr(''' + + + +''') +icon_touch2 = NotStr(''' + + + +''') +icon_chart_candlestick = NotStr(''' + + + +''') +icon_star_review = NotStr(''' + + + + +''') +icon_stop_outline_filled = NotStr(''' + + +''') +icon_t_alt = NotStr(''' + + +''') +icon_version = NotStr(''' + + + +''') +icon_summary_kpi = NotStr(''' + + + + + +''') +icon_chart_evaluation = NotStr(''' + + + +''') +icon_letter_ss = NotStr(''' + + +''') +icon_arrows_vertical = NotStr(''' + + +''') +icon_instance_classic = NotStr(''' + + + +''') +icon_notification_new = NotStr(''' + + +''') +icon_shopping_cart_minus = NotStr(''' + + + + +''') +icon_flash_off = NotStr(''' + + +''') +icon_tropical_storm_tracks = NotStr(''' + + +''') +icon_edt_loop = NotStr('''''') +icon_direction_fork_filled = NotStr(''' + + +''') +icon_pcn_z_node = NotStr(''' + + +''') +icon_column = NotStr(''' + + + +''') +icon_sdk = NotStr(''' + + + +''') +icon_accessibility = NotStr(''' + + +''') +icon_carbon3_d_curve_auto_vessels = NotStr('''''') +icon_new_tab = NotStr(''' + + + +''') +icon_navaid_private = NotStr(''' + + +''') +icon_snooze = NotStr(''' + + + + +''') +icon_view_mode2 = NotStr(''' + + + + +''') +icon_events_alt = NotStr(''' + + + + + + + + +''') +icon_direction_u_turn = NotStr('''''') +icon_volume_down_filled = NotStr(''' + + +''') +icon_mobile_check = NotStr(''' + + +''') +icon_choose_item = NotStr(''' + + +''') +icon_close = NotStr('''''') +icon_soil_temperature_global = NotStr(''' + + + + +''') +icon_export = NotStr(''' + + +''') +icon_deploy_rules = NotStr(''' + + + + +''') +icon_chart_combo_stacked = NotStr(''' + + +''') +icon_sun = NotStr(''' + + + + + + + + + +''') +icon_scalpel = NotStr('''''') +icon_currency_ruble = NotStr('''''') +icon_xls = NotStr(''' + + + +''') +icon_star = NotStr('''''') +icon_cloud_offline = NotStr(''' + + +''') +icon_storage_request = NotStr(''' + + + + + + + + + + + +''') +icon_connect = NotStr('''''') +icon_airline_passenger_care = NotStr(''' + + + + +''') +icon_text_bold = NotStr('''''') +icon_zoom_fit = NotStr(''' + + + + + +''') +icon_checkbox = NotStr('''''') +icon_train = NotStr('''''') +icon_sankey_diagram_alt = NotStr('''''') +icon_zoom_area = NotStr(''' + + + + + + +''') +icon_transpose = NotStr(''' + + + +''') +icon_align_box_middle_right = NotStr(''' + + + +''') +icon_shopping_cart_plus = NotStr(''' + + + + +''') +icon_logo_google = NotStr('''''') +icon_haze_night = NotStr(''' + + + +''') +icon_migrate = NotStr(''' + + +''') +icon_chart3_d = NotStr('''''') +icon_letter_ww = NotStr(''' + + +''') +icon_carbon3rd_party_connected = NotStr('''''') +icon_currency_baht = NotStr('''''') +icon_wave_period = NotStr(''' + + + +''') +icon_chemistry_reference = NotStr(''' + + +''') +icon_driver_analysis = NotStr(''' + + +''') +icon_bring_to_front = NotStr('''''') +icon_carbon3_d_cursor = NotStr(''' + + +''') +icon_direction_bear_right02 = NotStr(''' + + +''') +icon_chart_column_floating = NotStr(''' + + + +''') +icon_logo_tumblr = NotStr('''''') +icon_y_axis = NotStr('''''') +icon_load_balancer_network = NotStr(''' + + + +''') +icon_police = NotStr(''' + + + +''') +icon_forward10 = NotStr(''' + + + +''') +icon_chart_average = NotStr(''' + + + + + + + +''') +icon_logo_slack = NotStr(''' + + + + + + + + +''') +icon_websheet = NotStr(''' + + + +''') +icon_deployment_pattern = NotStr(''' + + + + + + + + +''') +icon_integration = NotStr('''''') +icon_soil_moisture_field = NotStr(''' + + + + +''') +icon_percentage = NotStr(''' + + + +''') +icon_pending_filled = NotStr(''' + + +''') +icon_document_sketch = NotStr(''' + + +''') +icon_fish_multiple = NotStr(''' + + + + + + +''') +icon_subtract_alt = NotStr(''' + + +''') +icon_bus = NotStr(''' + + + + + +''') +icon_cad = NotStr(''' + + + +''') +icon_task_asset_view = NotStr(''' + + + +''') +icon_skip_forward_solid_filled = NotStr(''' + + +''') +icon_vehicle_connected = NotStr(''' + + + +''') +icon_circle_dash = NotStr(''' + + + + + + + + + + + +''') +icon_floating_ip = NotStr('''''') +icon_data_player = NotStr(''' + + + +''') +icon_checkmark_filled = NotStr(''' + + +''') +icon_not_sent = NotStr(''' + + +''') +icon_phone_incoming = NotStr(''' + + +''') +icon_vegetation_asset = NotStr(''' + + + + + +''') +icon_template = NotStr(''' + + + +''') +icon_observed_lightning = NotStr(''' + + +''') +icon_winter_warning = NotStr(''' + + + +''') +icon_operations_field = NotStr(''' + + + + + +''') +icon_edit_off = NotStr(''' + + +''') +icon_join_full = NotStr(''' + + + + +''') +icon_distribute_horizontal_left = NotStr(''' + + + + +''') +icon_list_boxes = NotStr(''' + + + + +''') +icon_image = NotStr(''' + + +''') +icon_choropleth_map = NotStr('''''') +icon_router = NotStr(''' + + + + +''') +icon_face_pending = NotStr(''' + + + +''') +icon_direction_rotary_straight = NotStr('''''') +icon_text_selection = NotStr(''' + + +''') +icon_text_align_right = NotStr(''' + + + + + +''') +icon_music_add = NotStr(''' + + + +''') +icon_deploy = NotStr(''' + + +''') +icon_cloud_lightning = NotStr('''''') +icon_subflow_local = NotStr(''' + + + +''') +icon_task_tools = NotStr(''' + + +''') +icon_warning_filled = NotStr('''''') +icon_account = NotStr(''' + + +''') +icon_chart_network = NotStr('''''') +icon_volume_up = NotStr(''' + + + +''') +icon_caret_left = NotStr('''''') +icon_building = NotStr(''' + + + + + + + +''') +icon_repeat = NotStr(''' + + +''') +icon_compass = NotStr(''' + + + +''') +icon_diagram_reference = NotStr(''' + + + +''') +icon_document_blank = NotStr('''''') +icon_folder_parent = NotStr('''''') +icon_rotate_counterclockwise_filled = NotStr(''' + + +''') +icon_flight_schedule = NotStr(''' + + + +''') +icon_temperature = NotStr(''' + + + + + +''') +icon_thunderstorm_severe = NotStr(''' + + + + + + + +''') +icon_research_bloch_sphere = NotStr(''' + + +''') +icon_cloud = NotStr('''''') +icon_user_follow = NotStr(''' + + + +''') +icon_chart_bar_overlay = NotStr('''''') +icon_connection_signal_off = NotStr(''' + + + +''') +icon_temperature_water = NotStr('''''') +icon_next_outline = NotStr(''' + + +''') +icon_battery_empty = NotStr('''''') +icon_task_view = NotStr(''' + + + + +''') +icon_building_insights2 = NotStr(''' + + + + + + + + +''') +icon_ai_status_rejected = NotStr(''' + + + + + +''') +icon_snowflake = NotStr('''''') +icon_network4_reference = NotStr(''' + + + + + +''') +icon_document_preliminary = NotStr(''' + + + + +''') +icon_stacked_scrolling1 = NotStr(''' + + + +''') +icon_auto_scroll = NotStr(''' + + + +''') +icon_face_add = NotStr(''' + + + + + +''') +icon_package = NotStr(''' + + + +''') +icon_text_indent = NotStr(''' + + + + + +''') +icon_nominate = NotStr(''' + + + + +''') +icon_currency_yen = NotStr(''' + + +''') +icon_letter_cc = NotStr(''' + + +''') +icon_search = NotStr('''''') +icon_location_company_filled = NotStr(''' + + +''') +icon_navaid_tacan = NotStr(''' + + +''') +icon_letter_dd = NotStr(''' + + +''') +icon_group = NotStr(''' + + + + +''') +icon_infrastructure_classic = NotStr(''' + + + + +''') +icon_military_camp = NotStr('''''') +icon_ai_results_urgent = NotStr(''' + + + + + + + + +''') +icon_dog_walker = NotStr(''' + + + + + + +''') +icon_pills_add = NotStr(''' + + +''') +icon_migrate_alt = NotStr('''''') +icon_building_insights1 = NotStr(''' + + + + + + + + + +''') +icon_ai_status = NotStr(''' + + + + + +''') +icon_document_signed = NotStr(''' + + + + + + + +''') +icon_pedestrian_family = NotStr(''' + + + + + +''') +icon_flow_modeler_reference = NotStr(''' + + + + + +''') +icon_fit_to_height = NotStr(''' + + +''') +icon_watch = NotStr(''' + + + +''') +icon_cobb_angle = NotStr(''' + + + + + +''') +icon_chemistry = NotStr('''''') +icon_block_storage_alt = NotStr(''' + + + + + + +''') +icon_align_vertical_top = NotStr(''' + + + +''') +icon_study_unread = NotStr(''' + + + +''') +icon_hinton_plot = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_container_registry = NotStr(''' + + + + +''') +icon_star_half = NotStr('''''') +icon_map_identify = NotStr(''' + + + + + + + + +''') +icon_calculation = NotStr(''' + + + + + +''') +icon_data_definition = NotStr(''' + + + +''') +icon_shrink_screen_filled = NotStr(''' + + + +''') +icon_covariate = NotStr(''' + + + + + +''') +icon_cloud_foundry1 = NotStr(''' + + + +''') +icon_folder_details_reference = NotStr(''' + + + + + +''') +icon_map = NotStr(''' + + + +''') +icon_pet_image_o = NotStr(''' + + + + + + + + + + + +''') +icon_volume_down_alt = NotStr(''' + + +''') +icon_center_to_fit = NotStr(''' + + + + + +''') +icon_video_filled = NotStr('''''') +icon_face_activated_add = NotStr(''' + + + + + +''') +icon_repeat_one = NotStr(''' + + + +''') +icon_earth_southeast_asia = NotStr(''' + + + + +''') +icon_chevron_sort_down = NotStr('''''') +icon_paragraph = NotStr('''''') +icon_iso = NotStr(''' + + + +''') +icon_time_plot = NotStr(''' + + + +''') +icon_string_text = NotStr(''' + + + +''') +icon_folders = NotStr(''' + + +''') +icon_chart_win_loss = NotStr('''''') +icon_accessibility_color = NotStr(''' + + + +''') +icon_chart_column = NotStr('''''') +icon_piggy_bank_slot = NotStr(''' + + +''') +icon_location_hazard_filled = NotStr(''' + + +''') +icon_network1 = NotStr(''' + + + + + + + +''') +icon_clean = NotStr(''' + + + + +''') +icon_hospital = NotStr(''' + + +''') +icon_gateway_security = NotStr(''' + + +''') +icon_bare_metal_server = NotStr(''' + + + + + + +''') +icon_earthquake = NotStr('''''') +icon_align_box_top_right = NotStr(''' + + + +''') +icon_insert = NotStr(''' + + + + +''') +icon_data_refinery_reference = NotStr(''' + + + +''') +icon_chart_maximum = NotStr(''' + + + + + + +''') +icon_location_person = NotStr(''' + + + + +''') +icon_zoom_out_area = NotStr(''' + + + + + + + +''') +icon_presentation_file = NotStr(''' + + + + +''') +icon_deployment_unit_technical_execution = NotStr(''' + + +''') +icon_study_view = NotStr(''' + + + +''') +icon_drop_photo_filled = NotStr(''' + + + + + + + + + + + + + + + + + + +''') +icon_chart_area = NotStr('''''') +icon_subflow = NotStr(''' + + + +''') +icon_cloud_download = NotStr(''' + + +''') +icon_copy_file = NotStr(''' + + +''') +icon_document_view = NotStr(''' + + + + +''') +icon_hospital_bed = NotStr(''' + + + +''') +icon_hybrid_networking = NotStr(''' + + + +''') +icon_ibm_cloud_transit_gateway = NotStr('''''') +icon_letter_bb = NotStr(''' + + +''') +icon_volume_mute = NotStr(''' + + +''') +icon_user_favorite_alt = NotStr(''' + + + +''') +icon_navaid_military_civil = NotStr(''' + + +''') +icon_order_details = NotStr(''' + + + +''') +icon_ibm_cloud_pak_data = NotStr(''' + + + + + + +''') +icon_direction_straight = NotStr('''''') +icon_letter_yy = NotStr(''' + + +''') +icon_stop_filled_alt = NotStr('''''') +icon_model_builder = NotStr('''''') +icon_logo_jupyter = NotStr(''' + + + + + + + + + + + + + +''') +icon_settings = NotStr(''' + + +''') +icon_thunderstorm = NotStr(''' + + +''') +icon_logo_instagram = NotStr(''' + + + +''') +icon_improve_relevance = NotStr(''' + + + + +''') +icon_corner = NotStr('''''') +icon_user_military = NotStr(''' + + + + + +''') +icon_forward30 = NotStr(''' + + + +''') +icon_compare = NotStr('''''') +icon_road = NotStr(''' + + + + + + +''') +icon_cu3 = NotStr(''' + + + +''') +icon_face_neutral = NotStr(''' + + + + +''') +icon_number4 = NotStr(''' + + +''') +icon_align_horizontal_center = NotStr('''''') +icon_stacked_move = NotStr(''' + + +''') +icon_magic_wand = NotStr(''' + + + + +''') +icon_phone_block = NotStr(''' + + +''') +icon_erase3_d = NotStr(''' + + + +''') +icon_shape_join = NotStr('''''') +icon_model = NotStr('''''') +icon_augmented_reality = NotStr(''' + + + +''') +icon_distribute_vertical_top = NotStr(''' + + + + +''') +icon_cost_total = NotStr(''' + + + +''') +icon_chart_bubble = NotStr(''' + + + + +''') +icon_bat = NotStr('''''') +icon_composer_edit = NotStr('''''') +icon_ibm_cloud_internet_services = NotStr(''' + + +''') +icon_firewall = NotStr(''' + + + + +''') +icon_close_filled = NotStr('''''') +icon_time = NotStr(''' + + +''') +icon_wind_gusts = NotStr(''' + + + +''') +icon_cross_reference = NotStr(''' + + + + + + + + +''') +icon_bee_bat = NotStr(''' + + + +''') +icon_rotate = NotStr(''' + + + + + + +''') +icon_edge_service = NotStr(''' + + + + + + +''') +icon_notification_off_filled = NotStr(''' + + +''') +icon_virtual_desktop = NotStr(''' + + +''') +icon_workspace_import = NotStr(''' + + + + +''') +icon_email = NotStr('''''') +icon_user_favorite_alt_filled = NotStr(''' + + + +''') +icon_text_strikethrough = NotStr('''''') +icon_plug_filled = NotStr('''''') +icon_smell = NotStr('''''') +icon_attachment = NotStr('''''') +icon_letter_rr = NotStr(''' + + +''') +icon_notebook = NotStr(''' + + + + +''') +icon_instance_bx = NotStr(''' + + + + + + + + + +''') +icon_currency_euro = NotStr('''''') +icon_letter_ff = NotStr(''' + + +''') +icon_http = NotStr(''' + + + + +''') +icon_list_bulleted = NotStr(''' + + + + +''') +icon_letter_jj = NotStr(''' + + + +''') +icon_smoothing_cursor = NotStr(''' + + + + + + + + + + + +''') +icon_ibm_security_services = NotStr(''' + + +''') +icon_cics_explorer = NotStr(''' + + +''') +icon_face_dissatisfied_filled = NotStr('''''') +icon_heat_map = NotStr(''' + + + + + + + +''') +icon_cabin_care = NotStr(''' + + +''') +icon_wintry_mix = NotStr(''' + + + + + + + + + + + + +''') +icon_document_export = NotStr(''' + + +''') +icon_number8 = NotStr('''''') +icon_direction_rotary_straight_filled = NotStr(''' + + + +''') +icon_text_clear_format = NotStr('''''') +icon_zoom_reset = NotStr('''''') +icon_wifi_secure = NotStr(''' + + + +''') +icon_datastore = NotStr(''' + + + + + +''') +icon_caret_sort = NotStr(''' + + +''') +icon_carbon = NotStr(''' + + +''') +icon_accumulation_rain = NotStr('''''') +icon_train_heart = NotStr(''' + + +''') +icon_location_heart_filled = NotStr(''' + + +''') +icon_carbon3_d_software = NotStr(''' + + +''') +icon_chart_cluster_bar = NotStr(''' + + + + + + + +''') +icon_database_enterprise_db2 = NotStr(''' + + +''') +icon_passenger_plus = NotStr(''' + + + + +''') +icon_location = NotStr(''' + + +''') +icon_trophy_filled = NotStr('''''') +icon_box_medium = NotStr(''' + + + +''') +icon_carbon_accounting = NotStr(''' + + + +''') +icon_classification = NotStr(''' + + +''') +icon_mobile_add = NotStr(''' + + +''') +icon_term = NotStr(''' + + + + + +''') +icon_pcn_e_node = NotStr(''' + + +''') +icon_shopping_bag = NotStr('''''') +icon_up_to_top = NotStr(''' + + +''') +icon_microphone_off = NotStr(''' + + + +''') +icon_drag_vertical = NotStr(''' + + +''') +icon_arrow_up_right = NotStr('''''') +icon_pen_fountain = NotStr('''''') +icon_traffic_weather_incident = NotStr(''' + + + + + + + + + +''') +icon_chart_t_sne = NotStr(''' + + + + + + + + + + + + + + +''') +icon_image_medical = NotStr(''' + + +''') +icon_printer = NotStr('''''') +icon_number9 = NotStr('''''') +icon_watson_machine_learning = NotStr(''' + + + + + + +''') +icon_status_acknowledge = NotStr(''' + + + +''') +icon_tag = NotStr(''' + + +''') +icon_draw = NotStr('''''') +icon_shrink_screen = NotStr(''' + + + +''') +icon_friendship = NotStr(''' + + + +''') +icon_arrow_shift_down = NotStr('''''') +icon_task_approved = NotStr(''' + + +''') +icon_svg = NotStr(''' + + + +''') +icon_barcode = NotStr(''' + + + + + + +''') +icon_worship_christian = NotStr('''''') +icon_category = NotStr('''''') +icon_copy = NotStr(''' + + +''') +icon_column_insert = NotStr(''' + + + +''') +icon_subnet_acl_rules = NotStr(''' + + + + +''') +icon_meter_alt = NotStr(''' + + + +''') +icon_accumulation_ice = NotStr(''' + + + +''') +icon_currency_shekel = NotStr(''' + + +''') +icon_humidity_alt = NotStr(''' + + +''') +icon_hourglass = NotStr(''' + + + +''') +icon_connection_send = NotStr(''' + + + + + + + + +''') +icon_chart_sunburst = NotStr('''''') +icon_data_class = NotStr('''''') +icon_edge_enhancement = NotStr(''' + + + + +''') +icon_ordinal = NotStr('''''') +icon_boolean = NotStr(''' + + +''') +icon_scan_disabled = NotStr(''' + + + + + + +''') +icon_switch_layer2 = NotStr(''' + + + + +''') +icon_data2 = NotStr(''' + + + + + + + + +''') +icon_workspace = NotStr(''' + + + + +''') +icon_paint_brush_alt = NotStr('''''') +icon_temperature_feels_like = NotStr(''' + + + + +''') +icon_cloud_satellite_link = NotStr(''' + + + + + + +''') +icon_json_reference = NotStr(''' + + + + + +''') +icon_moon = NotStr('''''') +icon_carbon4_k = NotStr(''' + + + +''') +icon_sort_ascending = NotStr(''' + + + + +''') +icon_information_disabled = NotStr(''' + + + +''') +icon_flow_data = NotStr('''''') +icon_letter_hh = NotStr(''' + + +''') +icon_result_new = NotStr(''' + + + + + + + + +''') +icon_shopping_cart_arrow_up = NotStr(''' + + + + +''') +icon_thunderstorm_scattered = NotStr(''' + + + + + + + +''') +icon_bot = NotStr(''' + + + +''') +icon_restart = NotStr('''''') +icon_sprout = NotStr('''''') +icon_text_align_justify = NotStr(''' + + + + +''') +icon_location_person_filled = NotStr(''' + + + +''') +icon_overflow_menu_vertical = NotStr(''' + + + +''') +icon_letter_oo = NotStr(''' + + +''') +icon_slisor = NotStr(''' + + + + +''') +icon_z_axis = NotStr('''''') +icon_folder_shared = NotStr(''' + + +''') +icon_chart_treemap = NotStr('''''') +icon_condition_point = NotStr(''' + + +''') +icon_light_filled = NotStr(''' + + + + + + + + + +''') +icon_umbrella = NotStr('''''') +icon_wifi_bridge_alt = NotStr(''' + + + + + + +''') +icon_desk_adjustable = NotStr(''' + + + +''') +icon_stay_inside = NotStr(''' + + + +''') +icon_hl7_attributes = NotStr(''' + + + +''') +icon_task_remove = NotStr(''' + + +''') +icon_select01 = NotStr(''' + + + + + + + + +''') +icon_dicom6000 = NotStr(''' + + + + + + + + + +''') +icon_partnership = NotStr(''' + + + +''') +icon_location_filled = NotStr(''' + + + +''') +icon_logo_r_script = NotStr('''''') +icon_cloud_logging = NotStr(''' + + + + +''') +icon_star_filled = NotStr('''''') +icon_text_color = NotStr(''' + + +''') +icon_radar = NotStr('''''') +icon_fruit_bowl = NotStr('''''') +icon_mostly_cloudy = NotStr(''' + + + + + +''') +icon_beta = NotStr('''''') +icon_badge = NotStr(''' + + +''') +icon_caret_right = NotStr('''''') +icon_carbon3_d_print_mesh = NotStr('''''') +icon_image_service = NotStr(''' + + + + + + + + +''') +icon_document_unprotected = NotStr(''' + + +''') +icon_deployment_policy = NotStr(''' + + + +''') +icon_media_cast = NotStr(''' + + + + +''') +icon_renew = NotStr(''' + + +''') +icon_load_balancer_local = NotStr(''' + + + + + +''') +icon_incomplete = NotStr(''' + + + + + +''') +icon_mobile_landscape = NotStr('''''') +icon_skill_level_advanced = NotStr(''' + + + +''') +icon_linux = NotStr('''''') +icon_chart_median = NotStr(''' + + + + + +''') +icon_phone_ip = NotStr(''' + + + + + + + + + + + +''') +icon_expand_categories = NotStr(''' + + + + + +''') +icon_app_switcher = NotStr(''' + + + + + + + + + +''') +icon_vpn = NotStr(''' + + + +''') +icon_carbon4_k_filled = NotStr('''''') +icon_shopping_cart_error = NotStr(''' + + + + +''') +icon_mail_reply = NotStr(''' + + +''') +icon_letter_ii = NotStr(''' + + + +''') +icon_bare_metal_server02 = NotStr(''' + + + + + +''') +icon_add_alt = NotStr(''' + + +''') +icon_center_square = NotStr(''' + + + + + + + + +''') +icon_logo_keybase = NotStr(''' + + + + + +''') +icon_logo_medium = NotStr(''' + + +''') +icon_ibm_cloud_dedicated_host = NotStr(''' + + + + + +''') +icon_chat_operational = NotStr(''' + + + + +''') +icon_collapse_categories = NotStr(''' + + + + + + +''') +icon_categories = NotStr(''' + + + + +''') +icon_receipt = NotStr(''' + + + + + + +''') +icon_switcher = NotStr(''' + + + + + + + + + +''') +icon_folder = NotStr('''''') +icon_rotate_counterclockwise_alt_filled = NotStr(''' + + +''') +icon_activity = NotStr('''''') +icon_ruler_alt = NotStr('''''') +icon_align_box_middle_center = NotStr(''' + + + +''') +icon_checkbox_indeterminate = NotStr(''' + + +''') +icon_database_etcd = NotStr(''' + + +''') +icon_arrow_down = NotStr('''''') +icon_pedestrian_child = NotStr(''' + + + +''') +icon_rotate_clockwise_filled = NotStr(''' + + +''') +icon_vlan = NotStr('''''') +icon_join_outer = NotStr(''' + + +''') +icon_direction_right01 = NotStr('''''') +icon_xml = NotStr(''' + + + +''') +icon_ai_status_in_progress = NotStr(''' + + + + + + + +''') +icon_cough = NotStr(''' + + + + + + + + +''') +icon_in_progress = NotStr('''''') +icon_iot_platform = NotStr(''' + + + + +''') +icon_number_small5 = NotStr('''''') +icon_document_video = NotStr(''' + + +''') +icon_chart_stepper = NotStr('''''') +icon_view_next = NotStr(''' + + +''') +icon_screen = NotStr('''''') +icon_string_integer = NotStr(''' + + + +''') +icon_data_connected = NotStr(''' + + + +''') +icon_course = NotStr('''''') +icon_fit_to_width = NotStr(''' + + +''') +icon_phone_settings = NotStr(''' + + +''') +icon_kubernetes = NotStr('''''') +icon_partly_cloudy = NotStr(''' + + + + + + + +''') +icon_continue_filled = NotStr(''' + + +''') +icon_phone_off_filled = NotStr(''' + + +''') +icon_soil_temperature_field = NotStr(''' + + + + +''') +icon_scatter_matrix = NotStr(''' + + + + +''') +icon_play_filled = NotStr(''' + + +''') +icon_document_pdf = NotStr(''' + + + + +''') +icon_touch1 = NotStr(''' + + +''') +icon_gateway_user_access = NotStr(''' + + + +''') +icon_headset = NotStr('''''') +icon_closed_caption_filled = NotStr('''''') +icon_data_vis2 = NotStr('''''') +icon_volume_up_filled_alt = NotStr(''' + + +''') +icon_unknown_filled = NotStr(''' + + +''') +icon_accumulation_precipitation = NotStr(''' + + + + + + + +''') +icon_phone_application = NotStr(''' + + + + + +''') +icon_data_unstructured = NotStr(''' + + + + + +''') +icon_drone_video = NotStr(''' + + + + + + +''') +icon_network_overlay = NotStr(''' + + + +''') +icon_certificate_check = NotStr(''' + + + + + +''') +icon_airplay_filled = NotStr(''' + + +''') +icon_group_presentation = NotStr(''' + + + + + + + + + +''') +icon_letter_nn = NotStr(''' + + +''') +icon_edge_node = NotStr(''' + + + + + + + +''') +icon_data_vis3 = NotStr('''''') +icon_signal_strength = NotStr(''' + + + + + +''') +icon_container_software = NotStr(''' + + + +''') +icon_power = NotStr(''' + + +''') +icon_logo_facebook = NotStr('''''') +icon_choices = NotStr('''''') +icon_connection_signal = NotStr(''' + + + + + +''') +icon_delivery_parcel = NotStr(''' + + + + +''') +icon_chip = NotStr(''' + + +''') +icon_inspection = NotStr(''' + + +''') +icon_dashboard = NotStr(''' + + + + +''') +icon_number_small3 = NotStr('''''') +icon_opacity = NotStr(''' + + + + + + + + + + + + + +''') +icon_smoothing = NotStr(''' + + + + + + + + + + + + +''') +icon_message_queue = NotStr(''' + + + + + +''') +icon_education = NotStr(''' + + + +''') +icon_progress_bar_round = NotStr(''' + + + +''') +icon_hd_filled = NotStr(''' + + +''') +icon_database_redis = NotStr(''' + + +''') +icon_cube = NotStr('''''') +icon_zoom_in_area = NotStr(''' + + + + + + + +''') +icon_stem_leaf_plot = NotStr(''' + + + + + + + + +''') +icon_carbon3_d_curve_manual = NotStr(''' + + + +''') +icon_parameter = NotStr(''' + + + +''') +icon_machine_learning = NotStr(''' + + + + +''') +icon_logo_pinterest = NotStr('''''') +icon_virtual_column = NotStr(''' + + + + +''') +icon_value_variable = NotStr(''' + + + +''') +icon_worship = NotStr(''' + + + +''') +icon_reset_alt = NotStr('''''') +icon_flight_roster = NotStr(''' + + + + + + +''') +icon_warning_square = NotStr(''' + + + +''') +icon_wifi_controller = NotStr(''' + + + + + +''') +icon_dvr = NotStr(''' + + + +''') +icon_group_access = NotStr(''' + + + + + + +''') +icon_text_fill = NotStr(''' + + +''') +icon_connect_source = NotStr('''''') +icon_face_pending_filled = NotStr('''''') +icon_license_global = NotStr(''' + + + + + + +''') +icon_filter = NotStr('''''') +icon_gateway_api = NotStr(''' + + +''') +icon_skip_back_outline = NotStr(''' + + + +''') +icon_strawberry = NotStr(''' + + + + + +''') +icon_plug = NotStr('''''') +icon_tram = NotStr('''''') +icon_ruler = NotStr('''''') +icon_notebook_reference = NotStr(''' + + + + + +''') +icon_direction_rotary_first_right = NotStr('''''') +icon_alarm_subtract = NotStr(''' + + + + + +''') +icon_storage_pool = NotStr(''' + + + + + +''') +icon_window_preset = NotStr(''' + + + + + + + + + + +''') +icon_result = NotStr(''' + + + + + + + +''') +icon_group_account = NotStr(''' + + + + + +''') +icon_checkmark = NotStr('''''') +icon_accessibility_alt = NotStr(''' + + + +''') +icon_currency_lira = NotStr('''''') +icon_dew_point = NotStr(''' + + +''') +icon_data_base_alt = NotStr(''' + + + + + + + +''') +icon_hurricane = NotStr('''''') +icon_temperature_min = NotStr(''' + + + + + +''') +icon_pause_outline = NotStr(''' + + + +''') +icon_switch_layer3 = NotStr(''' + + + + + + + + +''') +icon_page_scroll = NotStr(''' + + + + +''') +icon_image_reference = NotStr(''' + + + +''') +icon_logo_delicious = NotStr(''' + + +''') +icon_logo_stumbleupon = NotStr('''''') +icon_word_cloud = NotStr(''' + + + +''') +icon_bookmark_add = NotStr(''' + + +''') +icon_menu = NotStr(''' + + + + +''') +icon_idea = NotStr(''' + + + +''') +icon_arrow_down_left = NotStr('''''') +icon_ibm_cloud_vpc_endpoints = NotStr(''' + + + +''') +icon_wifi_off = NotStr(''' + + + + +''') +icon_number6 = NotStr('''''') +icon_face_activated = NotStr(''' + + + + +''') +icon_network4 = NotStr(''' + + + + +''') +icon_scales_tipped = NotStr('''''') +icon_next_filled = NotStr(''' + + +''') +icon_shopping_catalog = NotStr(''' + + + + + +''') +icon_cics_system_group = NotStr(''' + + + + + + +''') +icon_gender_female = NotStr('''''') +icon_airline_manage_gates = NotStr(''' + + + + +''') +icon_data_check = NotStr(''' + + + + + +''') +icon_need = NotStr(''' + + +''') +icon_earth_americas_filled = NotStr('''''') +icon_wmv = NotStr(''' + + + +''') +icon_thumbs_down = NotStr('''''') +icon_operation_gauge = NotStr(''' + + +''') +icon_move = NotStr('''''') +icon_error = NotStr('''''') +icon_edit = NotStr(''' + + +''') +icon_touch1_filled = NotStr(''' + + +''') +icon_result_old = NotStr(''' + + + + + + + +''') +icon_bookmark_filled = NotStr('''''') +icon_wave_direction = NotStr(''' + + + + +''') +icon_arrow_up_left = NotStr('''''') +icon_row_delete = NotStr(''' + + + +''') +icon_road_weather = NotStr(''' + + + + +''') +icon_taxi = NotStr('''''') +icon_product = NotStr(''' + + + +''') +icon_earth_southeast_asia_filled = NotStr(''' + + + + +''') +icon_rewind5 = NotStr(''' + + +''') +icon_play_outline = NotStr(''' + + +''') +icon_scan = NotStr(''' + + + + +''') +icon_add_filled = NotStr('''''') +icon_row_collapse = NotStr(''' + + +''') +icon_pressure = NotStr('''''') +icon_automatic = NotStr(''' + + + +''') +icon_iso_filled = NotStr(''' + + +''') +icon_error_filled = NotStr(''' + + +''') +icon_tree = NotStr(''' + + +''') +icon_user_profile = NotStr(''' + + + + + +''') +icon_pan_horizontal = NotStr('''''') +icon_decision_tree = NotStr('''''') +icon_s = NotStr('''''') +icon_event = NotStr(''' + + +''') +icon_hole_filling = NotStr(''' + + +''') +icon_rule_filled = NotStr(''' + + +''') +icon_letter_xx = NotStr(''' + + +''') +icon_launch = NotStr(''' + + +''') +icon_chart_high_low = NotStr(''' + + + +''') +icon_warning_square_filled = NotStr(''' + + +''') +icon_document_sentiment = NotStr(''' + + +''') +icon_sim_card = NotStr(''' + + +''') +icon_chevron_up = NotStr('''''') +icon_mov = NotStr(''' + + + +''') +icon_user_certification = NotStr(''' + + + +''') +icon_parent_child = NotStr('''''') +icon_asterisk = NotStr('''''') +icon_tornado = NotStr(''' + + + + + + +''') +icon_hearing = NotStr(''' + + + + + +''') +icon_math_curve = NotStr('''''') +icon_train_speed = NotStr(''' + + +''') +icon_number_small9 = NotStr('''''') +icon_video_off_filled = NotStr(''' + + +''') +icon_forecast_hail30 = NotStr(''' + + + + + + + + +''') +icon_document_security = NotStr(''' + + +''') +icon_spray_paint = NotStr(''' + + + + + + + + +''') +icon_navaid_vortac = NotStr(''' + + +''') +icon_chart_bullet = NotStr(''' + + + +''') +icon_model_builder_reference = NotStr(''' + + +''') +icon_baggage_claim = NotStr(''' + + + +''') +icon_forum = NotStr(''' + + +''') +icon_task_complete = NotStr(''' + + +''') +icon_earth_filled = NotStr('''''') +icon_webhook = NotStr(''' + + + +''') +icon_chart_area_stepper = NotStr('''''') +icon_crowd_report = NotStr(''' + + +''') +icon_deployment_unit_presentation = NotStr('''''') +icon_x = NotStr('''''') +icon_document_protected = NotStr(''' + + +''') +icon_iot_connect = NotStr(''' + + +''') +icon_send_to_back = NotStr('''''') +icon_locked = NotStr('''''') +icon_this_side_up = NotStr(''' + + + +''') +icon_reminder_medical = NotStr(''' + + +''') +icon_content_view = NotStr(''' + + + +''') +icon_arrows = NotStr(''' + + +''') +icon_fetch_upload = NotStr(''' + + +''') +icon_edge_node_alt = NotStr(''' + + + + + +''') +icon_name_space = NotStr(''' + + + + + + + + +''') +icon_status_partial_fail = NotStr(''' + + + + + + + +''') +icon_chevron_mini = NotStr('''''') +icon_enterprise = NotStr(''' + + + + + + + +''') +icon_recently_viewed = NotStr(''' + + +''') +icon_mac_shift = NotStr('''''') +icon_table_built = NotStr('''''') +icon_shuffle = NotStr('''''') +icon_buoy = NotStr(''' + + +''') +icon_letter_ll = NotStr(''' + + +''') +icon_traffic_event = NotStr(''' + + +''') +icon_cloud_services = NotStr(''' + + +''') +icon_vpn_policy = NotStr(''' + + +''') +icon_autoscaling = NotStr(''' + + + +''') +icon_touch_interaction = NotStr(''' + + +''') +icon_close_outline = NotStr(''' + + +''') +icon_task_star = NotStr(''' + + +''') +icon_ai_status_complete = NotStr(''' + + + + + +''') +icon_camera_action = NotStr(''' + + + + +''') +icon_qc_launch = NotStr(''' + + + +''') +icon_cabin_care_alt = NotStr(''' + + +''') +icon_layers = NotStr(''' + + + +''') +icon_in_progress_error = NotStr(''' + + +''') +icon_gui = NotStr(''' + + + + +''') +icon_currency_rupee = NotStr('''''') +icon_pcn_military = NotStr(''' + + + + +''') +icon_letter_pp = NotStr(''' + + +''') +icon_logo_python = NotStr(''' + + + +''') +icon_no_image = NotStr(''' + + +''') +icon_bloch_sphere = NotStr(''' + + +''') +icon_cics_wui_region = NotStr(''' + + + + + +''') +icon_volume_up_filled = NotStr(''' + + + +''') +icon_undefined = NotStr(''' + + +''') +icon_number_small0 = NotStr('''''') +icon_data1 = NotStr(''' + + + + + + +''') +icon_swim = NotStr(''' + + + +''') +icon_application_web = NotStr(''' + + + + + +''') +icon_uv_index = NotStr('''''') +icon_encryption = NotStr(''' + + + + + + + + + + + + +''') +icon_direction_right02 = NotStr(''' + + +''') +icon_status_change = NotStr(''' + + + +''') +icon_sankey_diagram = NotStr('''''') +icon_stop_sign_filled = NotStr('''''') +icon_drill_down = NotStr(''' + + + +''') +icon_certificate = NotStr(''' + + + + + +''') +icon_save = NotStr('''''') diff --git a/src/myfasthtml/icons/fa.py b/src/myfasthtml/icons/fa.py new file mode 100644 index 0000000..63ac60b --- /dev/null +++ b/src/myfasthtml/icons/fa.py @@ -0,0 +1,1617 @@ +# @sicons/fa +# +# SVG icons integrated from [`font-awesome`](https://github.com/FortAwesome/Font-Awesome) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_user_injured = NotStr('''''') +icon_screwdriver = NotStr('''''') +icon_eye_slash = NotStr('''''') +icon_ravelry = NotStr('''''') +icon_times_circle = NotStr('''''') +icon_pagelines = NotStr('''''') +icon_invision = NotStr('''''') +icon_angle_up = NotStr('''''') +icon_lightbulb = NotStr('''''') +icon_object_group_regular = NotStr('''''') +icon_kickstarter = NotStr('''''') +icon_d_and_d_beyond = NotStr('''''') +icon_calendar = NotStr('''''') +icon_traffic_light = NotStr('''''') +icon_envira = NotStr('''''') +icon_object_ungroup_regular = NotStr('''''') +icon_whatsapp_square = NotStr('''''') +icon_lock = NotStr('''''') +icon_snapchat_square = NotStr('''''') +icon_grin = NotStr('''''') +icon_battery_half = NotStr('''''') +icon_sort_numeric_up_alt = NotStr('''''') +icon_star_half_alt = NotStr('''''') +icon_ribbon = NotStr('''''') +icon_bacterium = NotStr('''''') +icon_table = NotStr('''''') +icon_zhihu = NotStr('''''') +icon_pen_alt = NotStr('''''') +icon_audible = NotStr('''''') +icon_clipboard_check = NotStr('''''') +icon_forward = NotStr('''''') +icon_qrcode = NotStr('''''') +icon_bitbucket = NotStr('''''') +icon_arrow_up = NotStr('''''') +icon_faucet = NotStr('''''') +icon_microphone = NotStr('''''') +icon_arrow_alt_circle_left_regular = NotStr('''''') +icon_ghost = NotStr('''''') +icon_flag_checkered = NotStr('''''') +icon_graduation_cap = NotStr('''''') +icon_rocketchat = NotStr('''''') +icon_aviato = NotStr('''''') +icon_quora = NotStr('''''') +icon_vk = NotStr('''''') +icon_speakap = NotStr('''''') +icon_caret_square_right_regular = NotStr('''''') +icon_square_root_alt = NotStr('''''') +icon_birthday_cake = NotStr('''''') +icon_poop = NotStr('''''') +icon_synagogue = NotStr('''''') +icon_caret_square_down_regular = NotStr('''''') +icon_window_close_regular = NotStr('''''') +icon_battle_net = NotStr('''''') +icon_bell_slash_regular = NotStr('''''') +icon_js = NotStr('''''') +icon_mdb = NotStr('''''') +icon_teeth_open = NotStr('''''') +icon_user_graduate = NotStr('''''') +icon_book_dead = NotStr('''''') +icon_cat = NotStr('''''') +icon_ups = NotStr('''''') +icon_sort_amount_up = NotStr('''''') +icon_dollar_sign = NotStr('''''') +icon_sort_numeric_up = NotStr('''''') +icon_hashtag = NotStr('''''') +icon_angrycreative = NotStr('''''') +icon_user_check = NotStr('''''') +icon_creative_commons_remix = NotStr('''''') +icon_quinscape = NotStr('''''') +icon_wix = NotStr('''''') +icon_laugh_regular = NotStr('''''') +icon_hand_paper = NotStr('''''') +icon_creative_commons_sampling = NotStr('''''') +icon_cloud_sun = NotStr('''''') +icon_life_ring = NotStr('''''') +icon_people_carry = NotStr('''''') +icon_step_forward = NotStr('''''') +icon_registered_regular = NotStr('''''') +icon_dna = NotStr('''''') +icon_concierge_bell = NotStr('''''') +icon_comment_slash = NotStr('''''') +icon_dashcube = NotStr('''''') +icon_the_red_yeti = NotStr('''''') +icon_border_none = NotStr('''''') +icon_hand_sparkles = NotStr('''''') +icon_critical_role = NotStr('''''') +icon_bus_alt = NotStr('''''') +icon_cloudsmith = NotStr('''''') +icon_usb = NotStr('''''') +icon_marker = NotStr('''''') +icon_solar_panel = NotStr('''''') +icon_whatsapp = NotStr('''''') +icon_deviantart = NotStr('''''') +icon_frown_regular = NotStr('''''') +icon_arrows_alt_h = NotStr('''''') +icon_font_awesome = NotStr('''''') +icon_weibo = NotStr('''''') +icon_globe = NotStr('''''') +icon_clone_regular = NotStr('''''') +icon_sync = NotStr('''''') +icon_adn = NotStr('''''') +icon_swatchbook = NotStr('''''') +icon_arrow_left = NotStr('''''') +icon_hand_scissors = NotStr('''''') +icon_check_square = NotStr('''''') +icon_steam = NotStr('''''') +icon_grimace_regular = NotStr('''''') +icon_freebsd = NotStr('''''') +icon_hamburger = NotStr('''''') +icon_toolbox = NotStr('''''') +icon_wolf_pack_battalion = NotStr('''''') +icon_sun_regular = NotStr('''''') +icon_flushed = NotStr('''''') +icon_bacon = NotStr('''''') +icon_osi = NotStr('''''') +icon_chess_king = NotStr('''''') +icon_odnoklassniki_square = NotStr('''''') +icon_trash = NotStr('''''') +icon_trophy = NotStr('''''') +icon_phone_square_alt = NotStr('''''') +icon_ticket_alt = NotStr('''''') +icon_nutritionix = NotStr('''''') +icon_mug_hot = NotStr('''''') +icon_eye_regular = NotStr('''''') +icon_store = NotStr('''''') +icon_kickstarter_k = NotStr('''''') +icon_copyright_regular = NotStr('''''') +icon_history = NotStr('''''') +icon_check = NotStr('''''') +icon_fist_raised = NotStr('''''') +icon_horse_head = NotStr('''''') +icon_fast_backward = NotStr('''''') +icon_file_alt = NotStr('''''') +icon_backward = NotStr('''''') +icon_trello = NotStr('''''') +icon_school = NotStr('''''') +icon_compass_regular = NotStr('''''') +icon_stripe = NotStr('''''') +icon_battery_quarter = NotStr('''''') +icon_themeisle = NotStr('''''') +icon_hand_peace = NotStr('''''') +icon_hand_spock = NotStr('''''') +icon_kiss_beam_regular = NotStr('''''') +icon_bullhorn = NotStr('''''') +icon_basketball_ball = NotStr('''''') +icon_app_store_ios = NotStr('''''') +icon_igloo = NotStr('''''') +icon_braille = NotStr('''''') +icon_caret_square_up_regular = NotStr('''''') +icon_suitcase_rolling = NotStr('''''') +icon_terminal = NotStr('''''') +icon_fort_awesome = NotStr('''''') +icon_angle_right = NotStr('''''') +icon_lemon_regular = NotStr('''''') +icon_stripe_s = NotStr('''''') +icon_opera = NotStr('''''') +icon_venus = NotStr('''''') +icon_car_battery = NotStr('''''') +icon_comment_alt_regular = NotStr('''''') +icon_laugh_squint_regular = NotStr('''''') +icon_star_of_life = NotStr('''''') +icon_android = NotStr('''''') +icon_dice_two = NotStr('''''') +icon_google_wallet = NotStr('''''') +icon_hand_lizard = NotStr('''''') +icon_sort_alpha_down_alt = NotStr('''''') +icon_dot_circle_regular = NotStr('''''') +icon_mouse_pointer = NotStr('''''') +icon_sync_alt = NotStr('''''') +icon_old_republic = NotStr('''''') +icon_map_marker = NotStr('''''') +icon_arrow_alt_circle_right_regular = NotStr('''''') +icon_fish = NotStr('''''') +icon_smile_wink = NotStr('''''') +icon_id_card = NotStr('''''') +icon_remove_format = NotStr('''''') +icon_kiss_regular = NotStr('''''') +icon_video = NotStr('''''') +icon_hand_holding = NotStr('''''') +icon_monero = NotStr('''''') +icon_dumpster_fire = NotStr('''''') +icon_lastfm = NotStr('''''') +icon_gg_circle = NotStr('''''') +icon_rss = NotStr('''''') +icon_laugh_squint = NotStr('''''') +icon_monument = NotStr('''''') +icon_seedling = NotStr('''''') +icon_align_left = NotStr('''''') +icon_burn = NotStr('''''') +icon_star_half_regular = NotStr('''''') +icon_twitter_square = NotStr('''''') +icon_pepper_hot = NotStr('''''') +icon_money_check_alt = NotStr('''''') +icon_slack_hash = NotStr('''''') +icon_tired = NotStr('''''') +icon_spell_check = NotStr('''''') +icon_deaf = NotStr('''''') +icon_yin_yang = NotStr('''''') +icon_minus_circle = NotStr('''''') +icon_ship = NotStr('''''') +icon_hacker_news = NotStr('''''') +icon_question_circle_regular = NotStr('''''') +icon_blender = NotStr('''''') +icon_git = NotStr('''''') +icon_sellsy = NotStr('''''') +icon_goodreads_g = NotStr('''''') +icon_photo_video = NotStr('''''') +icon_cc_paypal = NotStr('''''') +icon_address_book = NotStr('''''') +icon_hdd = NotStr('''''') +icon_replyd = NotStr('''''') +icon_female = NotStr('''''') +icon_shower = NotStr('''''') +icon_flag = NotStr('''''') +icon_sort_alpha_up_alt = NotStr('''''') +icon_running = NotStr('''''') +icon_wikipedia_w = NotStr('''''') +icon_airbnb = NotStr('''''') +icon_boxes = NotStr('''''') +icon_sad_cry_regular = NotStr('''''') +icon_hotel = NotStr('''''') +icon_telegram_plane = NotStr('''''') +icon_window_restore = NotStr('''''') +icon_grin_squint_tears = NotStr('''''') +icon_share = NotStr('''''') +icon_windows = NotStr('''''') +icon_blogger = NotStr('''''') +icon_shopware = NotStr('''''') +icon_fonticons = NotStr('''''') +icon_ember = NotStr('''''') +icon_i_cursor = NotStr('''''') +icon_snowman = NotStr('''''') +icon_fly = NotStr('''''') +icon_box_open = NotStr('''''') +icon_linkedin_in = NotStr('''''') +icon_product_hunt = NotStr('''''') +icon_user_astronaut = NotStr('''''') +icon_handshake_regular = NotStr('''''') +icon_file_import = NotStr('''''') +icon_hacker_news_square = NotStr('''''') +icon_align_right = NotStr('''''') +icon_fantasy_flight_games = NotStr('''''') +icon_palette = NotStr('''''') +icon_walking = NotStr('''''') +icon_youtube = NotStr('''''') +icon_upload = NotStr('''''') +icon_accusoft = NotStr('''''') +icon_blind = NotStr('''''') +icon_bell = NotStr('''''') +icon_minus_square = NotStr('''''') +icon_copyright = NotStr('''''') +icon_discourse = NotStr('''''') +icon_soap = NotStr('''''') +icon_university = NotStr('''''') +icon_cc_diners_club = NotStr('''''') +icon_utensils = NotStr('''''') +icon_hand_paper_regular = NotStr('''''') +icon_ioxhost = NotStr('''''') +icon_hat_cowboy_side = NotStr('''''') +icon_backspace = NotStr('''''') +icon_angular = NotStr('''''') +icon_caret_square_left_regular = NotStr('''''') +icon_compact_disc = NotStr('''''') +icon_internet_explorer = NotStr('''''') +icon_database = NotStr('''''') +icon_paint_roller = NotStr('''''') +icon_smile_beam_regular = NotStr('''''') +icon_themeco = NotStr('''''') +icon_facebook_messenger = NotStr('''''') +icon_box = NotStr('''''') +icon_user_tag = NotStr('''''') +icon_file_medical_alt = NotStr('''''') +icon_grip_lines = NotStr('''''') +icon_adversal = NotStr('''''') +icon_yarn = NotStr('''''') +icon_resolving = NotStr('''''') +icon_symfony = NotStr('''''') +icon_raspberry_pi = NotStr('''''') +icon_viadeo_square = NotStr('''''') +icon_first_aid = NotStr('''''') +icon_comment_dots_regular = NotStr('''''') +icon_tools = NotStr('''''') +icon_signature = NotStr('''''') +icon_baseball_ball = NotStr('''''') +icon_kaaba = NotStr('''''') +icon_baby = NotStr('''''') +icon_gopuram = NotStr('''''') +icon_power_off = NotStr('''''') +icon_laptop = NotStr('''''') +icon_compress = NotStr('''''') +icon_wifi = NotStr('''''') +icon_chess_queen = NotStr('''''') +icon_hot_tub = NotStr('''''') +icon_money_check = NotStr('''''') +icon_reply_all = NotStr('''''') +icon_user = NotStr('''''') +icon_book = NotStr('''''') +icon_balance_scale = NotStr('''''') +icon_arrow_circle_right = NotStr('''''') +icon_wodu = NotStr('''''') +icon_pause_circle = NotStr('''''') +icon_blender_phone = NotStr('''''') +icon_server = NotStr('''''') +icon_border_all = NotStr('''''') +icon_firstdraft = NotStr('''''') +icon_comment_dots = NotStr('''''') +icon_fingerprint = NotStr('''''') +icon_bullseye = NotStr('''''') +icon_frown = NotStr('''''') +icon_head_side_virus = NotStr('''''') +icon_hamsa = NotStr('''''') +icon_spray_can = NotStr('''''') +icon_google = NotStr('''''') +icon_quidditch = NotStr('''''') +icon_person_booth = NotStr('''''') +icon_grin_beam_sweat = NotStr('''''') +icon_bicycle = NotStr('''''') +icon_credit_card = NotStr('''''') +icon_file_export = NotStr('''''') +icon_envelope_open_regular = NotStr('''''') +icon_bacteria = NotStr('''''') +icon_pen_nib = NotStr('''''') +icon_fire_alt = NotStr('''''') +icon_money_bill_alt = NotStr('''''') +icon_user_secret = NotStr('''''') +icon_envelope_open_text = NotStr('''''') +icon_magento = NotStr('''''') +icon_star_of_david = NotStr('''''') +icon_globe_asia = NotStr('''''') +icon_angle_down = NotStr('''''') +icon_telegram = NotStr('''''') +icon_child = NotStr('''''') +icon_pen = NotStr('''''') +icon_toilet = NotStr('''''') +icon_dharmachakra = NotStr('''''') +icon_connectdevelop = NotStr('''''') +icon_jira = NotStr('''''') +icon_laugh = NotStr('''''') +icon_redo = NotStr('''''') +icon_paperclip = NotStr('''''') +icon_diaspora = NotStr('''''') +icon_uncharted = NotStr('''''') +icon_calendar_plus = NotStr('''''') +icon_search_plus = NotStr('''''') +icon_id_badge_regular = NotStr('''''') +icon_arrow_alt_circle_down_regular = NotStr('''''') +icon_optin_monster = NotStr('''''') +icon_copy_regular = NotStr('''''') +icon_chart_pie = NotStr('''''') +icon_facebook = NotStr('''''') +icon_table_tennis = NotStr('''''') +icon_hotjar = NotStr('''''') +icon_cotton_bureau = NotStr('''''') +icon_user_nurse = NotStr('''''') +icon_hand_point_up = NotStr('''''') +icon_chair = NotStr('''''') +icon_hand_scissors_regular = NotStr('''''') +icon_facebook_f = NotStr('''''') +icon_indent = NotStr('''''') +icon_chalkboard = NotStr('''''') +icon_praying_hands = NotStr('''''') +icon_cocktail = NotStr('''''') +icon_user_alt_slash = NotStr('''''') +icon_bath = NotStr('''''') +icon_sort = NotStr('''''') +icon_circle_regular = NotStr('''''') +icon_bowling_ball = NotStr('''''') +icon_reply = NotStr('''''') +icon_angry_regular = NotStr('''''') +icon_shirtsinbulk = NotStr('''''') +icon_window_maximize = NotStr('''''') +icon_markdown = NotStr('''''') +icon_slack = NotStr('''''') +icon_pinterest_p = NotStr('''''') +icon_xbox = NotStr('''''') +icon_contao = NotStr('''''') +icon_map_marked_alt = NotStr('''''') +icon_dice_one = NotStr('''''') +icon_thumbs_up = NotStr('''''') +icon_hat_cowboy = NotStr('''''') +icon_temperature_low = NotStr('''''') +icon_bahai = NotStr('''''') +icon_perbyte = NotStr('''''') +icon_satellite = NotStr('''''') +icon_hourglass_regular = NotStr('''''') +icon_window_minimize = NotStr('''''') +icon_greater_than_equal = NotStr('''''') +icon_fighter_jet = NotStr('''''') +icon_git_square = NotStr('''''') +icon_autoprefixer = NotStr('''''') +icon_mendeley = NotStr('''''') +icon_pen_square = NotStr('''''') +icon_angle_left = NotStr('''''') +icon_network_wired = NotStr('''''') +icon_square_full = NotStr('''''') +icon_gifts = NotStr('''''') +icon_fan = NotStr('''''') +icon_heart_regular = NotStr('''''') +icon_skyatlas = NotStr('''''') +icon_undo = NotStr('''''') +icon_users_slash = NotStr('''''') +icon_git_alt = NotStr('''''') +icon_cc_amazon_pay = NotStr('''''') +icon_notes_medical = NotStr('''''') +icon_weight_hanging = NotStr('''''') +icon_strikethrough = NotStr('''''') +icon_vest_patches = NotStr('''''') +icon_hornbill = NotStr('''''') +icon_hire_a_helper = NotStr('''''') +icon_code = NotStr('''''') +icon_rupee_sign = NotStr('''''') +icon_file_powerpoint = NotStr('''''') +icon_pause = NotStr('''''') +icon_apple_pay = NotStr('''''') +icon_calendar_alt = NotStr('''''') +icon_comment_medical = NotStr('''''') +icon_orcid = NotStr('''''') +icon_grin_beam = NotStr('''''') +icon_laptop_house = NotStr('''''') +icon_umbrella_beach = NotStr('''''') +icon_amazon = NotStr('''''') +icon_hand_holding_water = NotStr('''''') +icon_user_minus = NotStr('''''') +icon_xing_square = NotStr('''''') +icon_sad_tear_regular = NotStr('''''') +icon_donate = NotStr('''''') +icon_sort_up = NotStr('''''') +icon_meh_rolling_eyes = NotStr('''''') +icon_wizards_of_the_coast = NotStr('''''') +icon_waze = NotStr('''''') +icon_pencil_ruler = NotStr('''''') +icon_khanda = NotStr('''''') +icon_disease = NotStr('''''') +icon_expeditedssl = NotStr('''''') +icon_grin_stars_regular = NotStr('''''') +icon_rocket = NotStr('''''') +icon_dumpster = NotStr('''''') +icon_cash_register = NotStr('''''') +icon_coins = NotStr('''''') +icon_search_location = NotStr('''''') +icon_yen_sign = NotStr('''''') +icon_handshake_alt_slash = NotStr('''''') +icon_digital_tachograph = NotStr('''''') +icon_hanukiah = NotStr('''''') +icon_sellcast = NotStr('''''') +icon_cloud_sun_rain = NotStr('''''') +icon_tired_regular = NotStr('''''') +icon_phone_square = NotStr('''''') +icon_tablet_alt = NotStr('''''') +icon_grav = NotStr('''''') +icon_sticky_note = NotStr('''''') +icon_people_arrows = NotStr('''''') +icon_frown_open = NotStr('''''') +icon_cloud_meatball = NotStr('''''') +icon_poll = NotStr('''''') +icon_medal = NotStr('''''') +icon_caret_square_right = NotStr('''''') +icon_reddit_square = NotStr('''''') +icon_opencart = NotStr('''''') +icon_pied_piper_pp = NotStr('''''') +icon_ice_cream = NotStr('''''') +icon_jsfiddle = NotStr('''''') +icon_playstation = NotStr('''''') +icon_plus_square = NotStr('''''') +icon_lemon = NotStr('''''') +icon_plane_departure = NotStr('''''') +icon_oil_can = NotStr('''''') +icon_eject = NotStr('''''') +icon_file_audio = NotStr('''''') +icon_folder_open = NotStr('''''') +icon_viruses = NotStr('''''') +icon_biohazard = NotStr('''''') +icon_thermometer_half = NotStr('''''') +icon_mandalorian = NotStr('''''') +icon_gem = NotStr('''''') +icon_scribd = NotStr('''''') +icon_sticker_mule = NotStr('''''') +icon_euro_sign = NotStr('''''') +icon_snowboarding = NotStr('''''') +icon_openid = NotStr('''''') +icon_ideal = NotStr('''''') +icon_stop_circle = NotStr('''''') +icon_campground = NotStr('''''') +icon_cuttlefish = NotStr('''''') +icon_percent = NotStr('''''') +icon_futbol = NotStr('''''') +icon_archway = NotStr('''''') +icon_print = NotStr('''''') +icon_vest = NotStr('''''') +icon_file_prescription = NotStr('''''') +icon_wine_glass_alt = NotStr('''''') +icon_battery_three_quarters = NotStr('''''') +icon_journal_whills = NotStr('''''') +icon_arrow_circle_left = NotStr('''''') +icon_arrows_alt_v = NotStr('''''') +icon_schlix = NotStr('''''') +icon_amazon_pay = NotStr('''''') +icon_kiss_beam = NotStr('''''') +icon_ns8 = NotStr('''''') +icon_mail_bulk = NotStr('''''') +icon_shopping_cart = NotStr('''''') +icon_lastfm_square = NotStr('''''') +icon_images = NotStr('''''') +icon_star_regular = NotStr('''''') +icon_gripfire = NotStr('''''') +icon_grin_tongue_wink_regular = NotStr('''''') +icon_redo_alt = NotStr('''''') +icon_prescription = NotStr('''''') +icon_hdd_regular = NotStr('''''') +icon_hive = NotStr('''''') +icon_stopwatch = NotStr('''''') +icon_medium_m = NotStr('''''') +icon_file = NotStr('''''') +icon_gitter = NotStr('''''') +icon_fort_awesome_alt = NotStr('''''') +icon_meh_rolling_eyes_regular = NotStr('''''') +icon_cheese = NotStr('''''') +icon_compress_arrows_alt = NotStr('''''') +icon_mobile = NotStr('''''') +icon_tractor = NotStr('''''') +icon_universal_access = NotStr('''''') +icon_align_center = NotStr('''''') +icon_phone_alt = NotStr('''''') +icon_chess_pawn = NotStr('''''') +icon_file_pdf = NotStr('''''') +icon_battery_full = NotStr('''''') +icon_business_time = NotStr('''''') +icon_cloudflare = NotStr('''''') +icon_sort_amount_down_alt = NotStr('''''') +icon_chevron_left = NotStr('''''') +icon_map_regular = NotStr('''''') +icon_users_cog = NotStr('''''') +icon_vnv = NotStr('''''') +icon_thumbs_down_regular = NotStr('''''') +icon_hotdog = NotStr('''''') +icon_keybase = NotStr('''''') +icon_list_alt_regular = NotStr('''''') +icon_stethoscope = NotStr('''''') +icon_icicles = NotStr('''''') +icon_deskpro = NotStr('''''') +icon_procedures = NotStr('''''') +icon_bitcoin = NotStr('''''') +icon_stack_overflow = NotStr('''''') +icon_cc_mastercard = NotStr('''''') +icon_css3 = NotStr('''''') +icon_luggage_cart = NotStr('''''') +icon_stack_exchange = NotStr('''''') +icon_cut = NotStr('''''') +icon_microphone_alt = NotStr('''''') +icon_chart_line = NotStr('''''') +icon_calendar_check = NotStr('''''') +icon_cloud_moon = NotStr('''''') +icon_sign = NotStr('''''') +icon_briefcase_medical = NotStr('''''') +icon_stamp = NotStr('''''') +icon_node_js = NotStr('''''') +icon_xing = NotStr('''''') +icon_file_code = NotStr('''''') +icon_torah = NotStr('''''') +icon_suse = NotStr('''''') +icon_subway = NotStr('''''') +icon_meteor = NotStr('''''') +icon_quote_left = NotStr('''''') +icon_react = NotStr('''''') +icon_thermometer_three_quarters = NotStr('''''') +icon_play = NotStr('''''') +icon_list_ul = NotStr('''''') +icon_delicious = NotStr('''''') +icon_equals = NotStr('''''') +icon_python = NotStr('''''') +icon_hourglass_end = NotStr('''''') +icon_fire = NotStr('''''') +icon_cart_arrow_down = NotStr('''''') +icon_dice_six = NotStr('''''') +icon_affiliatetheme = NotStr('''''') +icon_archive = NotStr('''''') +icon_google_plus_g = NotStr('''''') +icon_vials = NotStr('''''') +icon_share_square_regular = NotStr('''''') +icon_file_word = NotStr('''''') +icon_keyboard_regular = NotStr('''''') +icon_arrow_alt_circle_down = NotStr('''''') +icon_check_square_regular = NotStr('''''') +icon_weight = NotStr('''''') +icon_rust = NotStr('''''') +icon_volume_down = NotStr('''''') +icon_sort_down = NotStr('''''') +icon_vuejs = NotStr('''''') +icon_underline = NotStr('''''') +icon_creative_commons_zero = NotStr('''''') +icon_facebook_square = NotStr('''''') +icon_mask = NotStr('''''') +icon_tenge = NotStr('''''') +icon_simplybuilt = NotStr('''''') +icon_microphone_slash = NotStr('''''') +icon_acquisitions_incorporated = NotStr('''''') +icon_life_ring_regular = NotStr('''''') +icon_toilet_paper_slash = NotStr('''''') +icon_at = NotStr('''''') +icon_bootstrap = NotStr('''''') +icon_pen_fancy = NotStr('''''') +icon_readme = NotStr('''''') +icon_trash_alt = NotStr('''''') +icon_sms = NotStr('''''') +icon_square = NotStr('''''') +icon_pump_soap = NotStr('''''') +icon_american_sign_language_interpreting = NotStr('''''') +icon_get_pocket = NotStr('''''') +icon_map_marked = NotStr('''''') +icon_headphones = NotStr('''''') +icon_fast_forward = NotStr('''''') +icon_crutch = NotStr('''''') +icon_voicemail = NotStr('''''') +icon_fa500_px = NotStr('''''') +icon_chess_rook = NotStr('''''') +icon_registered = NotStr('''''') +icon_democrat = NotStr('''''') +icon_highlighter = NotStr('''''') +icon_blog = NotStr('''''') +icon_grin_tears = NotStr('''''') +icon_cc_jcb = NotStr('''''') +icon_plane = NotStr('''''') +icon_sort_amount_down = NotStr('''''') +icon_bluetooth = NotStr('''''') +icon_fedora = NotStr('''''') +icon_bomb = NotStr('''''') +icon_file_archive_regular = NotStr('''''') +icon_radiation = NotStr('''''') +icon_grin_tongue_wink = NotStr('''''') +icon_sistrix = NotStr('''''') +icon_portrait = NotStr('''''') +icon_gavel = NotStr('''''') +icon_file_image = NotStr('''''') +icon_cart_plus = NotStr('''''') +icon_hackerrank = NotStr('''''') +icon_less_than = NotStr('''''') +icon_avianex = NotStr('''''') +icon_fill = NotStr('''''') +icon_file_invoice = NotStr('''''') +icon_record_vinyl = NotStr('''''') +icon_camera = NotStr('''''') +icon_align_justify = NotStr('''''') +icon_dot_circle = NotStr('''''') +icon_cookie_bite = NotStr('''''') +icon_question_circle = NotStr('''''') +icon_arrow_alt_circle_left = NotStr('''''') +icon_grin_beam_sweat_regular = NotStr('''''') +icon_holly_berry = NotStr('''''') +icon_bookmark = NotStr('''''') +icon_folder_plus = NotStr('''''') +icon_audio_description = NotStr('''''') +icon_guitar = NotStr('''''') +icon_wordpress_simple = NotStr('''''') +icon_head_side_mask = NotStr('''''') +icon_car_side = NotStr('''''') +icon_adjust = NotStr('''''') +icon_globe_africa = NotStr('''''') +icon_video_slash = NotStr('''''') +icon_mouse = NotStr('''''') +icon_utensil_spoon = NotStr('''''') +icon_list = NotStr('''''') +icon_wpbeginner = NotStr('''''') +icon_wind = NotStr('''''') +icon_wave_square = NotStr('''''') +icon_cloud_rain = NotStr('''''') +icon_retweet = NotStr('''''') +icon_arrow_alt_circle_up = NotStr('''''') +icon_github = NotStr('''''') +icon_chevron_down = NotStr('''''') +icon_dragon = NotStr('''''') +icon_qq = NotStr('''''') +icon_clipboard = NotStr('''''') +icon_couch = NotStr('''''') +icon_crow = NotStr('''''') +icon_deploydog = NotStr('''''') +icon_thermometer_empty = NotStr('''''') +icon_cookie = NotStr('''''') +icon_pied_piper_square = NotStr('''''') +icon_carrot = NotStr('''''') +icon_caret_square_down = NotStr('''''') +icon_hand_peace_regular = NotStr('''''') +icon_code_branch = NotStr('''''') +icon_sketch = NotStr('''''') +icon_hockey_puck = NotStr('''''') +icon_head_side_cough = NotStr('''''') +icon_meh = NotStr('''''') +icon_draft2_digital = NotStr('''''') +icon_home = NotStr('''''') +icon_sliders_h = NotStr('''''') +icon_menorah = NotStr('''''') +icon_instagram = NotStr('''''') +icon_dice_d6 = NotStr('''''') +icon_discord = NotStr('''''') +icon_laugh_beam = NotStr('''''') +icon_language = NotStr('''''') +icon_sign_in_alt = NotStr('''''') +icon_atlassian = NotStr('''''') +icon_flask = NotStr('''''') +icon_clock = NotStr('''''') +icon_chalkboard_teacher = NotStr('''''') +icon_file_audio_regular = NotStr('''''') +icon_book_reader = NotStr('''''') +icon_plane_slash = NotStr('''''') +icon_arrow_circle_down = NotStr('''''') +icon_watchman_monitoring = NotStr('''''') +icon_algolia = NotStr('''''') +icon_speaker_deck = NotStr('''''') +icon_itunes_note = NotStr('''''') +icon_award = NotStr('''''') +icon_transgender = NotStr('''''') +icon_vimeo_v = NotStr('''''') +icon_door_closed = NotStr('''''') +icon_tumblr = NotStr('''''') +icon_binoculars = NotStr('''''') +icon_truck = NotStr('''''') +icon_id_card_regular = NotStr('''''') +icon_dog = NotStr('''''') +icon_calendar_minus_regular = NotStr('''''') +icon_dyalog = NotStr('''''') +icon_grin_tongue_squint_regular = NotStr('''''') +icon_heading = NotStr('''''') +icon_clinic_medical = NotStr('''''') +icon_fire_extinguisher = NotStr('''''') +icon_js_square = NotStr('''''') +icon_trailer = NotStr('''''') +icon_heart = NotStr('''''') +icon_truck_pickup = NotStr('''''') +icon_hand_rock = NotStr('''''') +icon_grunt = NotStr('''''') +icon_codepen = NotStr('''''') +icon_caret_up = NotStr('''''') +icon_bed = NotStr('''''') +icon_eye_slash_regular = NotStr('''''') +icon_box_tissue = NotStr('''''') +icon_laugh_wink_regular = NotStr('''''') +icon_grin_regular = NotStr('''''') +icon_mercury = NotStr('''''') +icon_arrows_alt = NotStr('''''') +icon_yelp = NotStr('''''') +icon_water = NotStr('''''') +icon_money_bill_wave = NotStr('''''') +icon_kaggle = NotStr('''''') +icon_github_alt = NotStr('''''') +icon_dailymotion = NotStr('''''') +icon_periscope = NotStr('''''') +icon_long_arrow_alt_down = NotStr('''''') +icon_user_slash = NotStr('''''') +icon_ellipsis_h = NotStr('''''') +icon_keyboard = NotStr('''''') +icon_laugh_beam_regular = NotStr('''''') +icon_text_height = NotStr('''''') +icon_tape = NotStr('''''') +icon_glide_g = NotStr('''''') +icon_helicopter = NotStr('''''') +icon_unlink = NotStr('''''') +icon_mixer = NotStr('''''') +icon_external_link_alt = NotStr('''''') +icon_patreon = NotStr('''''') +icon_flipboard = NotStr('''''') +icon_quote_right = NotStr('''''') +icon_salesforce = NotStr('''''') +icon_check_double = NotStr('''''') +icon_microscope = NotStr('''''') +icon_spotify = NotStr('''''') +icon_futbol_regular = NotStr('''''') +icon_calendar_times = NotStr('''''') +icon_pray = NotStr('''''') +icon_user_friends = NotStr('''''') +icon_moon_regular = NotStr('''''') +icon_shoe_prints = NotStr('''''') +icon_renren = NotStr('''''') +icon_chevron_circle_left = NotStr('''''') +icon_asymmetrik = NotStr('''''') +icon_umbraco = NotStr('''''') +icon_yandex_international = NotStr('''''') +icon_wrench = NotStr('''''') +icon_mountain = NotStr('''''') +icon_tint_slash = NotStr('''''') +icon_desktop = NotStr('''''') +icon_creative_commons_nc_eu = NotStr('''''') +icon_dev = NotStr('''''') +icon_question = NotStr('''''') +icon_mars_stroke_h = NotStr('''''') +icon_lyft = NotStr('''''') +icon_newspaper_regular = NotStr('''''') +icon_unsplash = NotStr('''''') +icon_wallet = NotStr('''''') +icon_camera_retro = NotStr('''''') +icon_car = NotStr('''''') +icon_pied_piper_hat = NotStr('''''') +icon_mars_stroke = NotStr('''''') +icon_teeth = NotStr('''''') +icon_lira_sign = NotStr('''''') +icon_reacteurope = NotStr('''''') +icon_tty = NotStr('''''') +icon_smile_regular = NotStr('''''') +icon_shopping_basket = NotStr('''''') +icon_edge = NotStr('''''') +icon_cubes = NotStr('''''') +icon_hat_wizard = NotStr('''''') +icon_download = NotStr('''''') +icon_angellist = NotStr('''''') +icon_city = NotStr('''''') +icon_behance_square = NotStr('''''') +icon_google_plus_square = NotStr('''''') +icon_microchip = NotStr('''''') +icon_crop = NotStr('''''') +icon_firefox = NotStr('''''') +icon_dice_three = NotStr('''''') +icon_firefox_browser = NotStr('''''') +icon_soundcloud = NotStr('''''') +icon_etsy = NotStr('''''') +icon_servicestack = NotStr('''''') +icon_link = NotStr('''''') +icon_ethernet = NotStr('''''') +icon_wine_bottle = NotStr('''''') +icon_mitten = NotStr('''''') +icon_chevron_right = NotStr('''''') +icon_sad_cry = NotStr('''''') +icon_cogs = NotStr('''''') +icon_undo_alt = NotStr('''''') +icon_object_group = NotStr('''''') +icon_lungs = NotStr('''''') +icon_typo3 = NotStr('''''') +icon_toggle_on = NotStr('''''') +icon_meetup = NotStr('''''') +icon_recycle = NotStr('''''') +icon_icons = NotStr('''''') +icon_piggy_bank = NotStr('''''') +icon_truck_moving = NotStr('''''') +icon_stumbleupon_circle = NotStr('''''') +icon_safari = NotStr('''''') +icon_chart_bar = NotStr('''''') +icon_dropbox = NotStr('''''') +icon_vote_yea = NotStr('''''') +icon_medapps = NotStr('''''') +icon_virus = NotStr('''''') +icon_theater_masks = NotStr('''''') +icon_arrow_right = NotStr('''''') +icon_hand_point_down_regular = NotStr('''''') +icon_egg = NotStr('''''') +icon_industry = NotStr('''''') +icon_book_open = NotStr('''''') +icon_vihara = NotStr('''''') +icon_vr_cardboard = NotStr('''''') +icon_app_store = NotStr('''''') +icon_pallet = NotStr('''''') +icon_balance_scale_right = NotStr('''''') +icon_mobile_alt = NotStr('''''') +icon_modx = NotStr('''''') +icon_swimmer = NotStr('''''') +icon_file_excel = NotStr('''''') +icon_stopwatch20 = NotStr('''''') +icon_arrow_alt_circle_up_regular = NotStr('''''') +icon_hiking = NotStr('''''') +icon_stream = NotStr('''''') +icon_parking = NotStr('''''') +icon_bolt = NotStr('''''') +icon_phone_volume = NotStr('''''') +icon_ellipsis_v = NotStr('''''') +icon_grin_beam_regular = NotStr('''''') +icon_weebly = NotStr('''''') +icon_window_close = NotStr('''''') +icon_empire = NotStr('''''') +icon_paste = NotStr('''''') +icon_glass_whiskey = NotStr('''''') +icon_microphone_alt_slash = NotStr('''''') +icon_long_arrow_alt_up = NotStr('''''') +icon_phone = NotStr('''''') +icon_clipboard_regular = NotStr('''''') +icon_gitkraken = NotStr('''''') +icon_mix = NotStr('''''') +icon_microblog = NotStr('''''') +icon_hippo = NotStr('''''') +icon_charging_station = NotStr('''''') +icon_stackpath = NotStr('''''') +icon_hand_point_left_regular = NotStr('''''') +icon_virus_slash = NotStr('''''') +icon_film = NotStr('''''') +icon_user_shield = NotStr('''''') +icon_clock_regular = NotStr('''''') +icon_css3_alt = NotStr('''''') +icon_calendar_minus = NotStr('''''') +icon_draw_polygon = NotStr('''''') +icon_hryvnia = NotStr('''''') +icon_restroom = NotStr('''''') +icon_radiation_alt = NotStr('''''') +icon_sort_numeric_down = NotStr('''''') +icon_sort_amount_up_alt = NotStr('''''') +icon_compress_alt = NotStr('''''') +icon_store_alt = NotStr('''''') +icon_creative_commons_sa = NotStr('''''') +icon_cloud_moon_rain = NotStr('''''') +icon_stop = NotStr('''''') +icon_info_circle = NotStr('''''') +icon_level_down_alt = NotStr('''''') +icon_mortar_pestle = NotStr('''''') +icon_candy_cane = NotStr('''''') +icon_list_alt = NotStr('''''') +icon_untappd = NotStr('''''') +icon_bong = NotStr('''''') +icon_cpanel = NotStr('''''') +icon_drupal = NotStr('''''') +icon_grin_tongue_squint = NotStr('''''') +icon_truck_monster = NotStr('''''') +icon_hand_point_left = NotStr('''''') +icon_republican = NotStr('''''') +icon_check_circle_regular = NotStr('''''') +icon_php = NotStr('''''') +icon_phone_slash = NotStr('''''') +icon_subscript = NotStr('''''') +icon_fulcrum = NotStr('''''') +icon_rebel = NotStr('''''') +icon_squarespace = NotStr('''''') +icon_dribbble_square = NotStr('''''') +icon_bone = NotStr('''''') +icon_apple = NotStr('''''') +icon_chromecast = NotStr('''''') +icon_venus_double = NotStr('''''') +icon_rss_square = NotStr('''''') +icon_magnet = NotStr('''''') +icon_uber = NotStr('''''') +icon_itunes = NotStr('''''') +icon_tripadvisor = NotStr('''''') +icon_x_ray = NotStr('''''') +icon_sign_out_alt = NotStr('''''') +icon_inbox = NotStr('''''') +icon_amilia = NotStr('''''') +icon_poll_h = NotStr('''''') +icon_eye = NotStr('''''') +icon_rev = NotStr('''''') +icon_calendar_check_regular = NotStr('''''') +icon_plus_square_regular = NotStr('''''') +icon_bezier_curve = NotStr('''''') +icon_music = NotStr('''''') +icon_ubuntu = NotStr('''''') +icon_external_link_square_alt = NotStr('''''') +icon_blackberry = NotStr('''''') +icon_font_awesome_flag = NotStr('''''') +icon_tablet = NotStr('''''') +icon_prescription_bottle = NotStr('''''') +icon_list_ol = NotStr('''''') +icon_user_times = NotStr('''''') +icon_search_dollar = NotStr('''''') +icon_plus = NotStr('''''') +icon_caret_down = NotStr('''''') +icon_steam_square = NotStr('''''') +icon_edge_legacy = NotStr('''''') +icon_search_minus = NotStr('''''') +icon_pastafarianism = NotStr('''''') +icon_mars = NotStr('''''') +icon_gift = NotStr('''''') +icon_shield_virus = NotStr('''''') +icon_head_side_cough_slash = NotStr('''''') +icon_paint_brush = NotStr('''''') +icon_flag_usa = NotStr('''''') +icon_stroopwafel = NotStr('''''') +icon_user_ninja = NotStr('''''') +icon_surprise_regular = NotStr('''''') +icon_church = NotStr('''''') +icon_passport = NotStr('''''') +icon_phoenix_squadron = NotStr('''''') +icon_apple_alt = NotStr('''''') +icon_angle_double_up = NotStr('''''') +icon_shuttle_van = NotStr('''''') +icon_tencent_weibo = NotStr('''''') +icon_dove = NotStr('''''') +icon_angry = NotStr('''''') +icon_share_square = NotStr('''''') +icon_black_tie = NotStr('''''') +icon_calculator = NotStr('''''') +icon_sort_numeric_down_alt = NotStr('''''') +icon_chess = NotStr('''''') +icon_creative_commons = NotStr('''''') +icon_shield_alt = NotStr('''''') +icon_yoast = NotStr('''''') +icon_pills = NotStr('''''') +icon_google_play = NotStr('''''') +icon_pound_sign = NotStr('''''') +icon_korvue = NotStr('''''') +icon_caravan = NotStr('''''') +icon_space_shuttle = NotStr('''''') +icon_brain = NotStr('''''') +icon_digital_ocean = NotStr('''''') +icon_envelope_open = NotStr('''''') +icon_hospital_user = NotStr('''''') +icon_memory = NotStr('''''') +icon_glass_martini_alt = NotStr('''''') +icon_skating = NotStr('''''') +icon_hand_point_up_regular = NotStr('''''') +icon_heart_broken = NotStr('''''') +icon_exclamation_circle = NotStr('''''') +icon_gg = NotStr('''''') +icon_pencil_alt = NotStr('''''') +icon_long_arrow_alt_right = NotStr('''''') +icon_drumstick_bite = NotStr('''''') +icon_tablets = NotStr('''''') +icon_octopus_deploy = NotStr('''''') +icon_divide = NotStr('''''') +icon_mars_double = NotStr('''''') +icon_hospital_alt = NotStr('''''') +icon_transgender_alt = NotStr('''''') +icon_redhat = NotStr('''''') +icon_envelope = NotStr('''''') +icon_user_circle = NotStr('''''') +icon_instalod = NotStr('''''') +icon_sun = NotStr('''''') +icon_superscript = NotStr('''''') +icon_line = NotStr('''''') +icon_prescription_bottle_alt = NotStr('''''') +icon_meh_blank = NotStr('''''') +icon_napster = NotStr('''''') +icon_star = NotStr('''''') +icon_map_marker_alt = NotStr('''''') +icon_swimming_pool = NotStr('''''') +icon_torii_gate = NotStr('''''') +icon_file_contract = NotStr('''''') +icon_red_river = NotStr('''''') +icon_train = NotStr('''''') +icon_users = NotStr('''''') +icon_arrow_circle_up = NotStr('''''') +icon_skull_crossbones = NotStr('''''') +icon_ankh = NotStr('''''') +icon_wheelchair = NotStr('''''') +icon_grin_tongue_regular = NotStr('''''') +icon_skype = NotStr('''''') +icon_dolly_flatbed = NotStr('''''') +icon_street_view = NotStr('''''') +icon_intercom = NotStr('''''') +icon_project_diagram = NotStr('''''') +icon_fonticons_fi = NotStr('''''') +icon_syringe = NotStr('''''') +icon_gitlab = NotStr('''''') +icon_hand_holding_usd = NotStr('''''') +icon_pinterest_square = NotStr('''''') +icon_linkedin = NotStr('''''') +icon_cc_discover = NotStr('''''') +icon_feather_alt = NotStr('''''') +icon_medium = NotStr('''''') +icon_file_regular = NotStr('''''') +icon_y_combinator = NotStr('''''') +icon_dice_five = NotStr('''''') +icon_dhl = NotStr('''''') +icon_twitch = NotStr('''''') +icon_yahoo = NotStr('''''') +icon_magic = NotStr('''''') +icon_percentage = NotStr('''''') +icon_comment = NotStr('''''') +icon_venus_mars = NotStr('''''') +icon_comment_dollar = NotStr('''''') +icon_globe_americas = NotStr('''''') +icon_bus = NotStr('''''') +icon_dumbbell = NotStr('''''') +icon_caret_square_up = NotStr('''''') +icon_centos = NotStr('''''') +icon_wine_glass = NotStr('''''') +icon_sticky_note_regular = NotStr('''''') +icon_car_alt = NotStr('''''') +icon_cc_visa = NotStr('''''') +icon_joget = NotStr('''''') +icon_splotch = NotStr('''''') +icon_image = NotStr('''''') +icon_rainbow = NotStr('''''') +icon_heartbeat = NotStr('''''') +icon_biking = NotStr('''''') +icon_flickr = NotStr('''''') +icon_flag_regular = NotStr('''''') +icon_ban = NotStr('''''') +icon_book_medical = NotStr('''''') +icon_cloudscale = NotStr('''''') +icon_font = NotStr('''''') +icon_dribbble = NotStr('''''') +icon_bell_slash = NotStr('''''') +icon_exclamation = NotStr('''''') +icon_plus_circle = NotStr('''''') +icon_jedi = NotStr('''''') +icon_place_of_worship = NotStr('''''') +icon_grin_squint = NotStr('''''') +icon_drum_steelpan = NotStr('''''') +icon_volume_up = NotStr('''''') +icon_caret_left = NotStr('''''') +icon_building = NotStr('''''') +icon_drum = NotStr('''''') +icon_calendar_plus_regular = NotStr('''''') +icon_itch_io = NotStr('''''') +icon_compass = NotStr('''''') +icon_snowplow = NotStr('''''') +icon_cloud_upload_alt = NotStr('''''') +icon_angle_double_left = NotStr('''''') +icon_wpexplorer = NotStr('''''') +icon_hand_pointer = NotStr('''''') +icon_paper_plane = NotStr('''''') +icon_cloud = NotStr('''''') +icon_tv = NotStr('''''') +icon_meh_regular = NotStr('''''') +icon_battery_empty = NotStr('''''') +icon_java = NotStr('''''') +icon_sith = NotStr('''''') +icon_instagram_square = NotStr('''''') +icon_snowflake = NotStr('''''') +icon_bandcamp = NotStr('''''') +icon_calendar_alt_regular = NotStr('''''') +icon_imdb = NotStr('''''') +icon_search = NotStr('''''') +icon_creative_commons_pd = NotStr('''''') +icon_motorcycle = NotStr('''''') +icon_baby_carriage = NotStr('''''') +icon_building_regular = NotStr('''''') +icon_galactic_republic = NotStr('''''') +icon_sleigh = NotStr('''''') +icon_italic = NotStr('''''') +icon_puzzle_piece = NotStr('''''') +icon_star_and_crescent = NotStr('''''') +icon_calendar_times_regular = NotStr('''''') +icon_store_slash = NotStr('''''') +icon_stop_circle_regular = NotStr('''''') +icon_whmcs = NotStr('''''') +icon_dice = NotStr('''''') +icon_sass = NotStr('''''') +icon_centercode = NotStr('''''') +icon_route = NotStr('''''') +icon_mastodon = NotStr('''''') +icon_hubspot = NotStr('''''') +icon_vial = NotStr('''''') +icon_dice_d20 = NotStr('''''') +icon_trash_restore = NotStr('''''') +icon_step_backward = NotStr('''''') +icon_google_plus = NotStr('''''') +icon_key = NotStr('''''') +icon_images_regular = NotStr('''''') +icon_creative_commons_pd_alt = NotStr('''''') +icon_th = NotStr('''''') +icon_gamepad = NotStr('''''') +icon_broom = NotStr('''''') +icon_minus = NotStr('''''') +icon_hourglass_start = NotStr('''''') +icon_bible = NotStr('''''') +icon_feather = NotStr('''''') +icon_grip_lines_vertical = NotStr('''''') +icon_viacoin = NotStr('''''') +icon_kiwi_bird = NotStr('''''') +icon_hand_holding_heart = NotStr('''''') +icon_tasks = NotStr('''''') +icon_ruler_horizontal = NotStr('''''') +icon_star_half = NotStr('''''') +icon_erlang = NotStr('''''') +icon_long_arrow_alt_left = NotStr('''''') +icon_crosshairs = NotStr('''''') +icon_genderless = NotStr('''''') +icon_folder_open_regular = NotStr('''''') +icon_id_card_alt = NotStr('''''') +icon_file_archive = NotStr('''''') +icon_aws = NotStr('''''') +icon_file_image_regular = NotStr('''''') +icon_map = NotStr('''''') +icon_digg = NotStr('''''') +icon_quran = NotStr('''''') +icon_shapes = NotStr('''''') +icon_map_signs = NotStr('''''') +icon_odnoklassniki = NotStr('''''') +icon_credit_card_regular = NotStr('''''') +icon_parachute_box = NotStr('''''') +icon_grin_alt_regular = NotStr('''''') +icon_ad = NotStr('''''') +icon_viadeo = NotStr('''''') +icon_bread_slice = NotStr('''''') +icon_paragraph = NotStr('''''') +icon_house_user = NotStr('''''') +icon_jedi_order = NotStr('''''') +icon_landmark = NotStr('''''') +icon_headphones_alt = NotStr('''''') +icon_file_invoice_dollar = NotStr('''''') +icon_google_pay = NotStr('''''') +icon_hospital = NotStr('''''') +icon_crop_alt = NotStr('''''') +icon_calendar_week = NotStr('''''') +icon_joomla = NotStr('''''') +icon_cannabis = NotStr('''''') +icon_image_regular = NotStr('''''') +icon_money_bill_alt_regular = NotStr('''''') +icon_thermometer_quarter = NotStr('''''') +icon_chart_area = NotStr('''''') +icon_address_book_regular = NotStr('''''') +icon_dizzy_regular = NotStr('''''') +icon_assistive_listening_systems = NotStr('''''') +icon_object_ungroup = NotStr('''''') +icon_volume_mute = NotStr('''''') +icon_uniregistry = NotStr('''''') +icon_researchgate = NotStr('''''') +icon_volleyball_ball = NotStr('''''') +icon_newspaper = NotStr('''''') +icon_times_circle_regular = NotStr('''''') +icon_crown = NotStr('''''') +icon_innosoft = NotStr('''''') +icon_wpressr = NotStr('''''') +icon_grin_stars = NotStr('''''') +icon_directions = NotStr('''''') +icon_grin_tears_regular = NotStr('''''') +icon_vine = NotStr('''''') +icon_peace = NotStr('''''') +icon_socks = NotStr('''''') +icon_road = NotStr('''''') +icon_kiss_wink_heart = NotStr('''''') +icon_signal = NotStr('''''') +icon_volume_off = NotStr('''''') +icon_sad_tear = NotStr('''''') +icon_grin_tongue = NotStr('''''') +icon_cc_apple_pay = NotStr('''''') +icon_font_awesome_alt = NotStr('''''') +icon_cc_amex = NotStr('''''') +icon_user_circle_regular = NotStr('''''') +icon_file_video = NotStr('''''') +icon_file_medical = NotStr('''''') +icon_lightbulb_regular = NotStr('''''') +icon_thermometer_full = NotStr('''''') +icon_paper_plane_regular = NotStr('''''') +icon_vector_square = NotStr('''''') +icon_circle_notch = NotStr('''''') +icon_weixin = NotStr('''''') +icon_expand_arrows_alt = NotStr('''''') +icon_hand_middle_finger = NotStr('''''') +icon_usps = NotStr('''''') +icon_th_list = NotStr('''''') +icon_address_card_regular = NotStr('''''') +icon_file_csv = NotStr('''''') +icon_hourglass_half = NotStr('''''') +icon_lungs_virus = NotStr('''''') +icon_paw = NotStr('''''') +icon_less = NotStr('''''') +icon_angle_double_right = NotStr('''''') +icon_smoking = NotStr('''''') +icon_mars_stroke_v = NotStr('''''') +icon_user_plus = NotStr('''''') +icon_linode = NotStr('''''') +icon_glasses = NotStr('''''') +icon_poo = NotStr('''''') +icon_sink = NotStr('''''') +icon_ussunnah = NotStr('''''') +icon_thumbtack = NotStr('''''') +icon_file_word_regular = NotStr('''''') +icon_creative_commons_nc = NotStr('''''') +icon_figma = NotStr('''''') +icon_buromobelexperte = NotStr('''''') +icon_neuter = NotStr('''''') +icon_evernote = NotStr('''''') +icon_ebay = NotStr('''''') +icon_earlybirds = NotStr('''''') +icon_pushed = NotStr('''''') +icon_satellite_dish = NotStr('''''') +icon_surprise = NotStr('''''') +icon_lock_open = NotStr('''''') +icon_folder_regular = NotStr('''''') +icon_envelope_regular = NotStr('''''') +icon_trash_restore_alt = NotStr('''''') +icon_ruble_sign = NotStr('''''') +icon_not_equal = NotStr('''''') +icon_hard_hat = NotStr('''''') +icon_swift = NotStr('''''') +icon_closed_captioning = NotStr('''''') +icon_searchengin = NotStr('''''') +icon_user_clock = NotStr('''''') +icon_hammer = NotStr('''''') +icon_shopping_bag = NotStr('''''') +icon_comments_dollar = NotStr('''''') +icon_plane_arrival = NotStr('''''') +icon_sourcetree = NotStr('''''') +icon_handshake_slash = NotStr('''''') +icon_hand_pointer_regular = NotStr('''''') +icon_money_bill = NotStr('''''') +icon_html5 = NotStr('''''') +icon_gofore = NotStr('''''') +icon_tiktok = NotStr('''''') +icon_uikit = NotStr('''''') +icon_tag = NotStr('''''') +icon_grin_squint_tears_regular = NotStr('''''') +icon_grin_squint_regular = NotStr('''''') +icon_dungeon = NotStr('''''') +icon_border_style = NotStr('''''') +icon_barcode = NotStr('''''') +icon_smile = NotStr('''''') +icon_edit_regular = NotStr('''''') +icon_copy = NotStr('''''') +icon_spa = NotStr('''''') +icon_bluetooth_b = NotStr('''''') +icon_hourglass = NotStr('''''') +icon_phabricator = NotStr('''''') +icon_snapchat = NotStr('''''') +icon_closed_captioning_regular = NotStr('''''') +icon_r_project = NotStr('''''') +icon_pizza_slice = NotStr('''''') +icon_gem_regular = NotStr('''''') +icon_chrome = NotStr('''''') +icon_random = NotStr('''''') +icon_eye_dropper = NotStr('''''') +icon_moon = NotStr('''''') +icon_studiovinari = NotStr('''''') +icon_cloud_showers_heavy = NotStr('''''') +icon_grimace = NotStr('''''') +icon_thumbs_up_regular = NotStr('''''') +icon_save_regular = NotStr('''''') +icon_toilet_paper = NotStr('''''') +icon_wordpress = NotStr('''''') +icon_share_alt = NotStr('''''') +icon_rockrms = NotStr('''''') +icon_free_code_camp = NotStr('''''') +icon_bold = NotStr('''''') +icon_steam_symbol = NotStr('''''') +icon_codiepie = NotStr('''''') +icon_minus_square_regular = NotStr('''''') +icon_hands = NotStr('''''') +icon_bars = NotStr('''''') +icon_hand_spock_regular = NotStr('''''') +icon_medkit = NotStr('''''') +icon_pied_piper_alt = NotStr('''''') +icon_angle_double_down = NotStr('''''') +icon_umbrella = NotStr('''''') +icon_buffer = NotStr('''''') +icon_palfed = NotStr('''''') +icon_behance = NotStr('''''') +icon_pause_circle_regular = NotStr('''''') +icon_artstation = NotStr('''''') +icon_pager = NotStr('''''') +icon_podcast = NotStr('''''') +icon_phoenix_framework = NotStr('''''') +icon_ethereum = NotStr('''''') +icon_reddit = NotStr('''''') +icon_reddit_alien = NotStr('''''') +icon_id_badge = NotStr('''''') +icon_dizzy = NotStr('''''') +icon_square_regular = NotStr('''''') +icon_dochub = NotStr('''''') +icon_user_edit = NotStr('''''') +icon_caret_right = NotStr('''''') +icon_mixcloud = NotStr('''''') +icon_grip_horizontal = NotStr('''''') +icon_hand_holding_medical = NotStr('''''') +icon_atlas = NotStr('''''') +icon_bimobject = NotStr('''''') +icon_cloudversify = NotStr('''''') +icon_sitemap = NotStr('''''') +icon_linux = NotStr('''''') +icon_folder_minus = NotStr('''''') +icon_gas_pump = NotStr('''''') +icon_fill_drip = NotStr('''''') +icon_hips = NotStr('''''') +icon_frown_open_regular = NotStr('''''') +icon_window_restore_regular = NotStr('''''') +icon_kiss = NotStr('''''') +icon_google_drive = NotStr('''''') +icon_greater_than = NotStr('''''') +icon_pump_medical = NotStr('''''') +icon_trademark = NotStr('''''') +icon_think_peaks = NotStr('''''') +icon_chevron_circle_right = NotStr('''''') +icon_share_alt_square = NotStr('''''') +icon_golf_ball = NotStr('''''') +icon_hands_wash = NotStr('''''') +icon_github_square = NotStr('''''') +icon_envelope_square = NotStr('''''') +icon_page4 = NotStr('''''') +icon_tint = NotStr('''''') +icon_vimeo_square = NotStr('''''') +icon_chart_bar_regular = NotStr('''''') +icon_apper = NotStr('''''') +icon_receipt = NotStr('''''') +icon_cc_stripe = NotStr('''''') +icon_warehouse = NotStr('''''') +icon_folder = NotStr('''''') +icon_grin_wink_regular = NotStr('''''') +icon_spinner = NotStr('''''') +icon_address_card = NotStr('''''') +icon_smile_beam = NotStr('''''') +icon_text_width = NotStr('''''') +icon_arrow_down = NotStr('''''') +icon_twitter = NotStr('''''') +icon_elementor = NotStr('''''') +icon_ambulance = NotStr('''''') +icon_sort_alpha_up = NotStr('''''') +icon_toggle_off = NotStr('''''') +icon_briefcase = NotStr('''''') +icon_coffee = NotStr('''''') +icon_layer_group = NotStr('''''') +icon_chevron_circle_up = NotStr('''''') +icon_creative_commons_nc_jp = NotStr('''''') +icon_microsoft = NotStr('''''') +icon_btc = NotStr('''''') +icon_yammer = NotStr('''''') +icon_joint = NotStr('''''') +icon_pinterest = NotStr('''''') +icon_less_than_equal = NotStr('''''') +icon_bookmark_regular = NotStr('''''') +icon_user_regular = NotStr('''''') +icon_funnel_dollar = NotStr('''''') +icon_bell_regular = NotStr('''''') +icon_level_up_alt = NotStr('''''') +icon_door_open = NotStr('''''') +icon_snapchat_ghost = NotStr('''''') +icon_headset = NotStr('''''') +icon_foursquare = NotStr('''''') +icon_house_damage = NotStr('''''') +icon_frog = NotStr('''''') +icon_user_md = NotStr('''''') +icon_info = NotStr('''''') +icon_creative_commons_sampling_plus = NotStr('''''') +icon_buy_n_large = NotStr('''''') +icon_unlock_alt = NotStr('''''') +icon_wpforms = NotStr('''''') +icon_buysellads = NotStr('''''') +icon_ello = NotStr('''''') +icon_superpowers = NotStr('''''') +icon_file_download = NotStr('''''') +icon_cross = NotStr('''''') +icon_cloud_download_alt = NotStr('''''') +icon_docker = NotStr('''''') +icon_diagnoses = NotStr('''''') +icon_dolly = NotStr('''''') +icon_store_alt_slash = NotStr('''''') +icon_expand_alt = NotStr('''''') +icon_male = NotStr('''''') +icon_fedex = NotStr('''''') +icon_file_code_regular = NotStr('''''') +icon_air_freshener = NotStr('''''') +icon_mosque = NotStr('''''') +icon_keycdn = NotStr('''''') +icon_comments = NotStr('''''') +icon_chevron_circle_down = NotStr('''''') +icon_deezer = NotStr('''''') +icon_dice_four = NotStr('''''') +icon_cube = NotStr('''''') +icon_sort_alpha_down = NotStr('''''') +icon_balance_scale_left = NotStr('''''') +icon_tooth = NotStr('''''') +icon_comments_regular = NotStr('''''') +icon_snowflake_regular = NotStr('''''') +icon_viber = NotStr('''''') +icon_guilded = NotStr('''''') +icon_laugh_wink = NotStr('''''') +icon_unity = NotStr('''''') +icon_user_lock = NotStr('''''') +icon_flushed_regular = NotStr('''''') +icon_caret_square_left = NotStr('''''') +icon_meh_blank_regular = NotStr('''''') +icon_hand_point_down = NotStr('''''') +icon_smog = NotStr('''''') +icon_window_maximize_regular = NotStr('''''') +icon_times = NotStr('''''') +icon_arrow_alt_circle_right = NotStr('''''') +icon_om = NotStr('''''') +icon_exclamation_triangle = NotStr('''''') +icon_blogger_b = NotStr('''''') +icon_confluence = NotStr('''''') +icon_filter = NotStr('''''') +icon_bug = NotStr('''''') +icon_plug = NotStr('''''') +icon_tram = NotStr('''''') +icon_ruler = NotStr('''''') +icon_jenkins = NotStr('''''') +icon_slash = NotStr('''''') +icon_sd_card = NotStr('''''') +icon_sign_language = NotStr('''''') +icon_atom = NotStr('''''') +icon_robot = NotStr('''''') +icon_grin_wink = NotStr('''''') +icon_globe_europe = NotStr('''''') +icon_megaport = NotStr('''''') +icon_calendar_day = NotStr('''''') +icon_ruler_vertical = NotStr('''''') +icon_circle = NotStr('''''') +icon_laptop_medical = NotStr('''''') +icon_money_bill_wave_alt = NotStr('''''') +icon_supple = NotStr('''''') +icon_grin_hearts_regular = NotStr('''''') +icon_d_and_d = NotStr('''''') +icon_grin_hearts = NotStr('''''') +icon_hospital_symbol = NotStr('''''') +icon_penny_arcade = NotStr('''''') +icon_youtube_square = NotStr('''''') +icon_expand = NotStr('''''') +icon_creative_commons_share = NotStr('''''') +icon_fax = NotStr('''''') +icon_chess_knight = NotStr('''''') +icon_capsules = NotStr('''''') +icon_chess_bishop = NotStr('''''') +icon_thumbs_down = NotStr('''''') +icon_hand_rock_regular = NotStr('''''') +icon_car_crash = NotStr('''''') +icon_medrt = NotStr('''''') +icon_edit = NotStr('''''') +icon_window_minimize_regular = NotStr('''''') +icon_mailchimp = NotStr('''''') +icon_check_circle = NotStr('''''') +icon_user_alt = NotStr('''''') +icon_scroll = NotStr('''''') +icon_creative_commons_by = NotStr('''''') +icon_file_excel_regular = NotStr('''''') +icon_gulp = NotStr('''''') +icon_laptop_code = NotStr('''''') +icon_football_ball = NotStr('''''') +icon_taxi = NotStr('''''') +icon_handshake = NotStr('''''') +icon_unlock = NotStr('''''') +icon_trade_federation = NotStr('''''') +icon_map_pin = NotStr('''''') +icon_beer = NotStr('''''') +icon_poo_storm = NotStr('''''') +icon_infinity = NotStr('''''') +icon_hospital_regular = NotStr('''''') +icon_tshirt = NotStr('''''') +icon_yandex = NotStr('''''') +icon_glide = NotStr('''''') +icon_slideshare = NotStr('''''') +icon_tree = NotStr('''''') +icon_file_alt_regular = NotStr('''''') +icon_laravel = NotStr('''''') +icon_skiing = NotStr('''''') +icon_creative_commons_nd = NotStr('''''') +icon_otter = NotStr('''''') +icon_exchange_alt = NotStr('''''') +icon_th_large = NotStr('''''') +icon_comment_alt = NotStr('''''') +icon_shopify = NotStr('''''') +icon_broadcast_tower = NotStr('''''') +icon_file_video_regular = NotStr('''''') +icon_sim_card = NotStr('''''') +icon_chevron_up = NotStr('''''') +icon_truck_loading = NotStr('''''') +icon_anchor = NotStr('''''') +icon_asterisk = NotStr('''''') +icon_paypal = NotStr('''''') +icon_file_pdf_regular = NotStr('''''') +icon_brush = NotStr('''''') +icon_first_order_alt = NotStr('''''') +icon_h_square = NotStr('''''') +icon_smoking_ban = NotStr('''''') +icon_mizuni = NotStr('''''') +icon_skull = NotStr('''''') +icon_skiing_nordic = NotStr('''''') +icon_file_upload = NotStr('''''') +icon_file_signature = NotStr('''''') +icon_horse = NotStr('''''') +icon_pied_piper = NotStr('''''') +icon_trash_alt_regular = NotStr('''''') +icon_forumbee = NotStr('''''') +icon_comment_regular = NotStr('''''') +icon_columns = NotStr('''''') +icon_leanpub = NotStr('''''') +icon_clipboard_list = NotStr('''''') +icon_tags = NotStr('''''') +icon_glass_cheers = NotStr('''''') +icon_user_tie = NotStr('''''') +icon_goodreads = NotStr('''''') +icon_cog = NotStr('''''') +icon_play_circle_regular = NotStr('''''') +icon_grip_vertical = NotStr('''''') +icon_spider = NotStr('''''') +icon_tachometer_alt = NotStr('''''') +icon_houzz = NotStr('''''') +icon_bity = NotStr('''''') +icon_hands_helping = NotStr('''''') +icon_low_vision = NotStr('''''') +icon_strava = NotStr('''''') +icon_outdent = NotStr('''''') +icon_shipping_fast = NotStr('''''') +icon_ruler_combined = NotStr('''''') +icon_grin_alt = NotStr('''''') +icon_eraser = NotStr('''''') +icon_temperature_high = NotStr('''''') +icon_won_sign = NotStr('''''') +icon_user_cog = NotStr('''''') +icon_gratipay = NotStr('''''') +icon_chess_board = NotStr('''''') +icon_clone = NotStr('''''') +icon_vimeo = NotStr('''''') +icon_kiss_wink_heart_regular = NotStr('''''') +icon_nimblr = NotStr('''''') +icon_first_order = NotStr('''''') +icon_glass_martini = NotStr('''''') +icon_calendar_regular = NotStr('''''') +icon_suitcase = NotStr('''''') +icon_thermometer = NotStr('''''') +icon_canadian_maple_leaf = NotStr('''''') +icon_hooli = NotStr('''''') +icon_accessible_icon = NotStr('''''') +icon_shekel_sign = NotStr('''''') +icon_hand_point_right_regular = NotStr('''''') +icon_location_arrow = NotStr('''''') +icon_staylinked = NotStr('''''') +icon_smile_wink_regular = NotStr('''''') +icon_teamspeak = NotStr('''''') +icon_ring = NotStr('''''') +icon_file_powerpoint_regular = NotStr('''''') +icon_hand_lizard_regular = NotStr('''''') +icon_band_aid = NotStr('''''') +icon_play_circle = NotStr('''''') +icon_npm = NotStr('''''') +icon_alipay = NotStr('''''') +icon_drafting_compass = NotStr('''''') +icon_neos = NotStr('''''') +icon_leaf = NotStr('''''') +icon_maxcdn = NotStr('''''') +icon_stumbleupon = NotStr('''''') +icon_tumblr_square = NotStr('''''') +icon_hand_point_right = NotStr('''''') +icon_node = NotStr('''''') +icon_galactic_senate = NotStr('''''') +icon_certificate = NotStr('''''') +icon_save = NotStr('''''') +icon_allergies = NotStr('''''') +icon_vaadin = NotStr('''''') diff --git a/src/myfasthtml/icons/fluent.py b/src/myfasthtml/icons/fluent.py new file mode 100644 index 0000000..3728f30 --- /dev/null +++ b/src/myfasthtml/icons/fluent.py @@ -0,0 +1,30900 @@ +# @sicons/fluent +# +# SVG icons integrated from [`fluentui-system-icons`](https://github.com/microsoft/fluentui-system-icons) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_shortpick20_filled = NotStr(''' + +''') +icon_chevron_right28_filled = NotStr(''' + +''') +icon_device_meeting_room_remote24_regular = NotStr(''' + +''') +icon_remote16_filled = NotStr(''' + +''') +icon_cube_multiple20_filled = NotStr(''' + +''') +icon_image_multiple20_filled = NotStr(''' + +''') +icon_comment_add20_regular = NotStr(''' + +''') +icon_building_factory48_filled = NotStr(''' + +''') +icon_share_screen_start28_regular = NotStr(''' + +''') +icon_split_horizontal12_filled = NotStr(''' + +''') +icon_building_skyscraper16_regular = NotStr(''' + +''') +icon_multiplier18_x28_regular = NotStr(''' + +''') +icon_couch12_regular = NotStr(''' + +''') +icon_phone_checkmark20_filled = NotStr(''' + +''') +icon_shield_badge24_filled = NotStr(''' + +''') +icon_building_bank16_regular = NotStr(''' + +''') +icon_guest28_filled = NotStr(''' + +''') +icon_dentist12_regular = NotStr(''' + +''') +icon_tab_in_private20_regular = NotStr(''' + +''') +icon_target_arrow16_regular = NotStr(''' + +''') +icon_stop16_filled = NotStr(''' + +''') +icon_person_accounts24_filled = NotStr(''' + +''') +icon_pair24_regular = NotStr(''' + +''') +icon_select_object20_filled = NotStr(''' + +''') +icon_note_edit24_filled = NotStr(''' + +''') +icon_text_column_one_wide_lightning24_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_day20_filled = NotStr(''' + +''') +icon_run16_filled = NotStr(''' + +''') +icon_desktop_arrow_right24_filled = NotStr(''' + +''') +icon_data_treemap24_filled = NotStr(''' + +''') +icon_text_column_two_left20_regular = NotStr(''' + +''') +icon_diamond20_regular = NotStr(''' + +''') +icon_mail_unread28_regular = NotStr(''' + +''') +icon_home_person24_filled = NotStr(''' + +''') +icon_channel_share12_regular = NotStr(''' + +''') +icon_group_return24_regular = NotStr(''' + +''') +icon_data_bar_horizontal24_filled = NotStr(''' + +''') +icon_flag48_regular = NotStr(''' + +''') +icon_weather_snow_shower_day20_regular = NotStr(''' + +''') +icon_dual_screen_settings24_regular = NotStr(''' + +''') +icon_shield_task48_regular = NotStr(''' + +''') +icon_brightness_low20_filled = NotStr(''' + +''') +icon_desktop_sync20_filled = NotStr(''' + +''') +icon_news24_regular = NotStr(''' + +''') +icon_scan_thumb_up_off20_regular = NotStr(''' + +''') +icon_swipe_down24_regular = NotStr(''' + +''') +icon_text_grammar_dismiss20_filled = NotStr(''' + +''') +icon_text_position_square20_regular = NotStr(''' + +''') +icon_call_prohibited20_regular = NotStr(''' + +''') +icon_mail_clock16_regular = NotStr(''' + +''') +icon_arrow_circle_right16_filled = NotStr(''' + +''') +icon_document_multiple_percent24_filled = NotStr(''' + +''') +icon_arrow_reply16_regular = NotStr(''' + +''') +icon_eye24_filled = NotStr(''' + +''') +icon_arrow_step_in_right20_regular = NotStr(''' + +''') +icon_tab_in_private16_regular = NotStr(''' + +''') +icon_task_list_square_ltr20_regular = NotStr(''' + +''') +icon_mail_all_read20_regular = NotStr(''' + +''') +icon_clipboard24_filled = NotStr(''' + +''') +icon_next20_regular = NotStr(''' + +''') +icon_calendar_rtl48_regular = NotStr(''' + +''') +icon_padding_right20_filled = NotStr(''' + +''') +icon_globe32_filled = NotStr(''' + +''') +icon_play28_filled = NotStr(''' + +''') +icon_open24_regular = NotStr(''' + +''') +icon_arrow_circle_down24_filled = NotStr(''' + +''') +icon_document_footer20_filled = NotStr(''' + +''') +icon_apps20_filled = NotStr(''' + +''') +icon_plug_connected24_filled = NotStr(''' + +''') +icon_arrow_wrap_off20_regular = NotStr(''' + + + + + +''') +icon_square_dismiss16_filled = NotStr(''' + +''') +icon_text_case_uppercase16_filled = NotStr(''' + +''') +icon_image24_filled = NotStr(''' + +''') +icon_cloud_archive16_regular = NotStr(''' + +''') +icon_wand28_regular = NotStr(''' + +''') +icon_calendar_arrow_right16_regular = NotStr(''' + +''') +icon_backspace24_filled = NotStr(''' + +''') +icon_immersive_reader28_regular = NotStr(''' + +''') +icon_mention16_filled = NotStr(''' + +''') +icon_glasses24_filled = NotStr(''' + +''') +icon_row_triple24_filled = NotStr(''' + +''') +icon_book_open24_regular = NotStr(''' + +''') +icon_chevron_right16_regular = NotStr(''' + +''') +icon_mic_sparkle24_regular = NotStr(''' + +''') +icon_slide_multiple_search20_regular = NotStr(''' + +''') +icon_channel_alert28_regular = NotStr(''' + +''') +icon_fps12024_filled = NotStr(''' + +''') +icon_toggle_right48_filled = NotStr(''' + +''') +icon_options20_regular = NotStr(''' + +''') +icon_sound_source28_filled = NotStr(''' + +''') +icon_sport_basketball24_regular = NotStr(''' + +''') +icon_call32_regular = NotStr(''' + +''') +icon_people_toolbox20_regular = NotStr(''' + +''') +icon_divider_short20_filled = NotStr(''' + +''') +icon_image_off24_filled = NotStr(''' + +''') +icon_document_page_top_left24_regular = NotStr(''' + +''') +icon_text_align_left24_filled = NotStr(''' + +''') +icon_arrow_routing20_regular = NotStr(''' + +''') +icon_book_clock20_regular = NotStr(''' + +''') +icon_food_egg20_filled = NotStr(''' + +''') +icon_desktop_mac16_filled = NotStr(''' + +''') +icon_person_circle20_regular = NotStr(''' + +''') +icon_key_reset20_filled = NotStr(''' + +''') +icon_globe_person20_filled = NotStr(''' + +''') +icon_re_order16_regular = NotStr(''' + +''') +icon_text_column_one_wide20_regular = NotStr(''' + +''') +icon_projection_screen28_regular = NotStr(''' + +''') +icon_pivot24_regular = NotStr(''' + +''') +icon_emoji_hand24_regular = NotStr(''' + +''') +icon_add_square_multiple20_filled = NotStr(''' + +''') +icon_document_pdf24_regular = NotStr(''' + +''') +icon_globe_surface20_regular = NotStr(''' + +''') +icon_share_ios28_regular = NotStr(''' + +''') +icon_align_space_between_vertical20_filled = NotStr(''' + + + + +''') +icon_gauge20_regular = NotStr(''' + +''') +icon_maximize16_filled = NotStr(''' + +''') +icon_pause16_filled = NotStr(''' + +''') +icon_document_split_hint_off24_regular = NotStr(''' + +''') +icon_rhombus48_filled = NotStr(''' + +''') +icon_shapes28_regular = NotStr(''' + +''') +icon_device_meeting_room_remote28_regular = NotStr(''' + +''') +icon_airplane_take_off24_regular = NotStr(''' + +''') +icon_mail_inbox16_regular = NotStr(''' + +''') +icon_clipboard_link20_regular = NotStr(''' + +''') +icon_chevron_circle_right20_filled = NotStr(''' + +''') +icon_arrow_repeat_all20_filled = NotStr(''' + +''') +icon_star_off24_regular = NotStr(''' + +''') +icon_cloud_archive20_filled = NotStr(''' + +''') +icon_image_multiple16_regular = NotStr(''' + +''') +icon_grid16_filled = NotStr(''' + +''') +icon_square_hint28_filled = NotStr(''' + +''') +icon_comment_off28_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise24_filled = NotStr(''' + +''') +icon_microscope24_regular = NotStr(''' + +''') +icon_circle16_regular = NotStr(''' + +''') +icon_clipboard_clock24_regular = NotStr(''' + +''') +icon_device_meeting_room20_filled = NotStr(''' + +''') +icon_weather_moon_off16_regular = NotStr(''' + +''') +icon_speaker032_regular = NotStr(''' + +''') +icon_arrow_download20_filled = NotStr(''' + +''') +icon_calendar_week_numbers20_regular = NotStr(''' + +''') +icon_image_copy28_filled = NotStr(''' + +''') +icon_globe_clock20_filled = NotStr(''' + +''') +icon_double_swipe_up24_filled = NotStr(''' + +''') +icon_record_stop28_regular = NotStr(''' + +''') +icon_target20_regular = NotStr(''' + +''') +icon_skip_forward1032_filled = NotStr(''' + +''') +icon_text_superscript20_filled = NotStr(''' + +''') +icon_eraser_tool24_regular = NotStr(''' + +''') +icon_camera_off24_regular = NotStr(''' + +''') +icon_text_position_tight24_regular = NotStr(''' + +''') +icon_bot24_filled = NotStr(''' + +''') +icon_person_add20_filled = NotStr(''' + +''') +icon_bookmark_off24_filled = NotStr(''' + +''') +icon_system20_filled = NotStr(''' + +''') +icon_arrow_up16_filled = NotStr(''' + +''') +icon_scales32_regular = NotStr(''' + +''') +icon_arrow_square_down20_regular = NotStr(''' + +''') +icon_multiplier1_x48_filled = NotStr(''' + +''') +icon_brightness_high28_regular = NotStr(''' + +''') +icon_trophy_off24_regular = NotStr(''' + +''') +icon_dual_screen24_regular = NotStr(''' + +''') +icon_receipt_play24_regular = NotStr(''' + +''') +icon_shapes48_regular = NotStr(''' + +''') +icon_text_clear_formatting20_regular = NotStr(''' + +''') +icon_panel_right_contract16_filled = NotStr(''' + +''') +icon_wifi320_regular = NotStr(''' + +''') +icon_tag_lock_accent24_filled = NotStr(''' + +''') +icon_camera_switch20_regular = NotStr(''' + +''') +icon_cloud_edit20_filled = NotStr(''' + +''') +icon_window_shield24_filled = NotStr(''' + +''') +icon_text_header224_regular = NotStr(''' + +''') +icon_data_line24_filled = NotStr(''' + +''') +icon_wifi_settings20_filled = NotStr(''' + +''') +icon_folder_mail20_regular = NotStr(''' + +''') +icon_currency_dollar_euro20_filled = NotStr(''' + +''') +icon_comment_add20_filled = NotStr(''' + +''') +icon_emoji_laugh24_regular = NotStr(''' + +''') +icon_table_settings24_filled = NotStr(''' + +''') +icon_task_list_square_add20_filled = NotStr(''' + +''') +icon_textbox_align_center20_filled = NotStr(''' + +''') +icon_weather_fog20_filled = NotStr(''' + +''') +icon_table_delete_row24_regular = NotStr(''' + +''') +icon_dumbbell28_filled = NotStr(''' + +''') +icon_port_hdmi24_regular = NotStr(''' + +''') +icon_table_insert_row28_regular = NotStr(''' + +''') +icon_device_meeting_room24_regular = NotStr(''' + +''') +icon_full_screen_maximize16_regular = NotStr(''' + +''') +icon_border_outside_thick24_regular = NotStr(''' + +''') +icon_resize_small16_filled = NotStr(''' + +''') +icon_arrow_circle_left12_regular = NotStr(''' + +''') +icon_align_left20_regular = NotStr(''' + +''') +icon_text_paragraph24_regular = NotStr(''' + +''') +icon_cloud_sync28_filled = NotStr(''' + +''') +icon_wrench24_regular = NotStr(''' + +''') +icon_location24_filled = NotStr(''' + +''') +icon_checkmark24_filled = NotStr(''' + +''') +icon_backpack16_filled = NotStr(''' + +''') +icon_panel_left28_regular = NotStr(''' + +''') +icon_arrow_export_ltr16_filled = NotStr(''' + +''') +icon_mail12_filled = NotStr(''' + +''') +icon_status20_regular = NotStr(''' + +''') +icon_beach20_filled = NotStr(''' + +''') +icon_call_park28_filled = NotStr(''' + +''') +icon_heart_pulse24_filled = NotStr(''' + +''') +icon_projection_screen_dismiss20_filled = NotStr(''' + +''') +icon_scan_type_checkmark24_regular = NotStr(''' + +''') +icon_folder_arrow_up24_regular = NotStr(''' + +''') +icon_cursor_hover_off28_regular = NotStr(''' + +''') +icon_image_multiple20_regular = NotStr(''' + +''') +icon_text_direction_horizontal_left20_filled = NotStr(''' + +''') +icon_globe_surface24_regular = NotStr(''' + +''') +icon_box_search24_regular = NotStr(''' + +''') +icon_book_question_mark24_regular = NotStr(''' + +''') +icon_globe_shield24_filled = NotStr(''' + +''') +icon_textbox_more20_filled = NotStr(''' + +''') +icon_tap_single32_regular = NotStr(''' + +''') +icon_text_italic24_filled = NotStr(''' + +''') +icon_ribbon_add20_filled = NotStr(''' + +''') +icon_text_edit_style24_filled = NotStr(''' + +''') +icon_call_end20_filled = NotStr(''' + +''') +icon_cellular4_g24_filled = NotStr(''' + + + + + + + + + +''') +icon_ruler16_regular = NotStr(''' + +''') +icon_arrow_right12_regular = NotStr(''' + +''') +icon_heart_circle20_regular = NotStr(''' + +''') +icon_image_edit16_regular = NotStr(''' + +''') +icon_share_screen_person_overlay_inside24_filled = NotStr(''' + +''') +icon_calendar_ltr48_filled = NotStr(''' + +''') +icon_clipboard_bullet_list_rtl20_filled = NotStr(''' + +''') +icon_steps24_regular = NotStr(''' + +''') +icon_drink_coffee20_regular = NotStr(''' + +''') +icon_ios_arrow_rtl24_regular = NotStr(''' + +''') +icon_bot24_regular = NotStr(''' + +''') +icon_re_order_dots_vertical16_filled = NotStr(''' + +''') +icon_checkmark_underline_circle16_regular = NotStr(''' + +''') +icon_hat_graduation20_filled = NotStr(''' + +''') +icon_record20_regular = NotStr(''' + +''') +icon_checkmark_circle16_filled = NotStr(''' + +''') +icon_text_word_count20_regular = NotStr(''' + +''') +icon_sound_wave_circle24_regular = NotStr(''' + +''') +icon_split_horizontal24_filled = NotStr(''' + +''') +icon_megaphone28_regular = NotStr(''' + +''') +icon_local_language20_regular = NotStr(''' + +''') +icon_question_circle20_filled = NotStr(''' + +''') +icon_apps_add_in16_filled = NotStr(''' + +''') +icon_shape_intersect16_filled = NotStr(''' + +''') +icon_padding_top20_filled = NotStr(''' + +''') +icon_battery120_regular = NotStr(''' + +''') +icon_document_landscape_data24_filled = NotStr(''' + +''') +icon_align_right16_filled = NotStr(''' + +''') +icon_calendar_toolbox24_filled = NotStr(''' + +''') +icon_conference_room20_regular = NotStr(''' + +''') +icon_rewind28_regular = NotStr(''' + +''') +icon_mic_off24_filled = NotStr(''' + +''') +icon_flag48_filled = NotStr(''' + +''') +icon_box_multiple_arrow_right24_filled = NotStr(''' + +''') +icon_f_stop16_filled = NotStr(''' + +''') +icon_center_horizontal20_regular = NotStr(''' + + + + + +''') +icon_multiplier15_x24_filled = NotStr(''' + +''') +icon_battery620_filled = NotStr(''' + +''') +icon_double_tap_swipe_up20_filled = NotStr(''' + +''') +icon_comment_multiple_checkmark20_filled = NotStr(''' + +''') +icon_archive24_regular = NotStr(''' + +''') +icon_picture_in_picture_enter24_regular = NotStr(''' + +''') +icon_app_title24_filled = NotStr(''' + +''') +icon_eye16_regular = NotStr(''' + +''') +icon_mic16_filled = NotStr(''' + +''') +icon_rating_mature16_regular = NotStr(''' + +''') +icon_arrow_reset32_filled = NotStr(''' + +''') +icon_bookmark_multiple28_filled = NotStr(''' + +''') +icon_dark_theme24_regular = NotStr(''' + +''') +icon_text_proofing_tools24_regular = NotStr(''' + + + + + + +''') +icon_arrow_up_left24_filled = NotStr(''' + +''') +icon_clock16_filled = NotStr(''' + +''') +icon_people_team_toolbox20_regular = NotStr(''' + +''') +icon_split_horizontal28_regular = NotStr(''' + +''') +icon_store_microsoft24_filled = NotStr(''' + +''') +icon_clipboard_link16_filled = NotStr(''' + +''') +icon_apps_list_detail24_filled = NotStr(''' + +''') +icon_star_off16_regular = NotStr(''' + +''') +icon_folder_swap20_regular = NotStr(''' + +''') +icon_arrow_next24_filled = NotStr(''' + +''') +icon_camera_add48_regular = NotStr(''' + +''') +icon_gif16_regular = NotStr(''' + +''') +icon_people20_regular = NotStr(''' + +''') +icon_drawer_arrow_download20_regular = NotStr(''' + +''') +icon_mail_link20_filled = NotStr(''' + +''') +icon_accessibility_checkmark20_filled = NotStr(''' + +''') +icon_port_hdmi24_filled = NotStr(''' + +''') +icon_table_move_left16_regular = NotStr(''' + +''') +icon_chat_mail20_filled = NotStr(''' + + + + +''') +icon_video_clip20_filled = NotStr(''' + +''') +icon_weather_fog24_regular = NotStr(''' + +''') +icon_clipboard_clock20_filled = NotStr(''' + +''') +icon_tab_desktop_clock20_filled = NotStr(''' + +''') +icon_signature24_filled = NotStr(''' + +''') +icon_window16_regular = NotStr(''' + +''') +icon_arrow_reply_down20_filled = NotStr(''' + +''') +icon_slide_layout24_regular = NotStr(''' + +''') +icon_apps_list_detail20_regular = NotStr(''' + +''') +icon_vehicle_subway16_filled = NotStr(''' + +''') +icon_port_micro_usb24_regular = NotStr(''' + +''') +icon_desktop_pulse16_regular = NotStr(''' + +''') +icon_clipboard_arrow_right20_regular = NotStr(''' + +''') +icon_calendar_today24_regular = NotStr(''' + +''') +icon_document_pill20_regular = NotStr(''' + +''') +icon_channel_dismiss28_regular = NotStr(''' + +''') +icon_headphones48_regular = NotStr(''' + +''') +icon_style_guide20_regular = NotStr(''' + +''') +icon_inking_tool20_regular = NotStr(''' + +''') +icon_shield_task20_regular = NotStr(''' + +''') +icon_emoji_angry20_filled = NotStr(''' + +''') +icon_closed_caption_off20_filled = NotStr(''' + +''') +icon_notebook_lightning24_filled = NotStr(''' + +''') +icon_book_contacts20_filled = NotStr(''' + +''') +icon_glasses_off16_filled = NotStr(''' + +''') +icon_briefcase28_regular = NotStr(''' + +''') +icon_table_stack_below16_regular = NotStr(''' + +''') +icon_clipboard_letter20_regular = NotStr(''' + +''') +icon_list20_regular = NotStr(''' + +''') +icon_eye_tracking_off16_regular = NotStr(''' + +''') +icon_text_word_count24_regular = NotStr(''' + +''') +icon_tab_in_private28_filled = NotStr(''' + +''') +icon_drink_margarita16_regular = NotStr(''' + +''') +icon_leaf_two16_regular = NotStr(''' + +''') +icon_arrow_step_in24_regular = NotStr(''' + +''') +icon_clipboard_arrow_right16_filled = NotStr(''' + +''') +icon_drawer_dismiss20_filled = NotStr(''' + +''') +icon_stack16_regular = NotStr(''' + +''') +icon_power28_filled = NotStr(''' + +''') +icon_number_symbol20_filled = NotStr(''' + +''') +icon_text_indent_increase_ltr24_regular = NotStr(''' + +''') +icon_extended_dock24_regular = NotStr(''' + +''') +icon_color_fill_accent24_regular = NotStr(''' + +''') +icon_scan_type_checkmark24_filled = NotStr(''' + +''') +icon_window48_regular = NotStr(''' + +''') +icon_open_off28_regular = NotStr(''' + +''') +icon_tag_multiple24_regular = NotStr(''' + +''') +icon_money24_regular = NotStr(''' + +''') +icon_ribbon_star24_regular = NotStr(''' + +''') +icon_channel_share20_filled = NotStr(''' + +''') +icon_text_grammar_checkmark20_regular = NotStr(''' + +''') +icon_channel_share12_filled = NotStr(''' + +''') +icon_arrow_up_right24_regular = NotStr(''' + +''') +icon_align_bottom32_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_up20_filled = NotStr(''' + +''') +icon_globe16_regular = NotStr(''' + +''') +icon_text_grammar_dismiss20_regular = NotStr(''' + +''') +icon_search_square24_regular = NotStr(''' + +''') +icon_archive_settings16_regular = NotStr(''' + +''') +icon_arrow_repeat_all16_regular = NotStr(''' + +''') +icon_flip_vertical32_filled = NotStr(''' + +''') +icon_calendar_rtl24_regular = NotStr(''' + +''') +icon_closed_caption24_filled = NotStr(''' + +''') +icon_closed_caption_off24_filled = NotStr(''' + +''') +icon_document_footer24_regular = NotStr(''' + +''') +icon_search_visual24_filled = NotStr(''' + +''') +icon_app_folder24_regular = NotStr(''' + +''') +icon_inking_tool_accent24_filled = NotStr(''' + +''') +icon_multiplier5_x24_regular = NotStr(''' + +''') +icon_comment_checkmark16_filled = NotStr(''' + +''') +icon_folder_add48_regular = NotStr(''' + +''') +icon_patch20_regular = NotStr(''' + +''') +icon_drink_coffee24_regular = NotStr(''' + +''') +icon_document_edit20_regular = NotStr(''' + +''') +icon_cloud_off20_regular = NotStr(''' + +''') +icon_filter28_filled = NotStr(''' + +''') +icon_maximize20_filled = NotStr(''' + +''') +icon_table_delete_row16_regular = NotStr(''' + +''') +icon_star_edit20_regular = NotStr(''' + +''') +icon_edit16_filled = NotStr(''' + +''') +icon_question20_regular = NotStr(''' + +''') +icon_weather_moon24_regular = NotStr(''' + +''') +icon_dismiss28_regular = NotStr(''' + +''') +icon_cloud_arrow_down20_regular = NotStr(''' + +''') +icon_arrow_counterclockwise48_filled = NotStr(''' + +''') +icon_arrow_circle_down_split24_regular = NotStr(''' + +''') +icon_protocol_handler20_filled = NotStr(''' + +''') +icon_arrow_clockwise20_regular = NotStr(''' + +''') +icon_toolbox12_filled = NotStr(''' + +''') +icon_notepad16_regular = NotStr(''' + +''') +icon_clipboard_image24_filled = NotStr(''' + +''') +icon_money16_filled = NotStr(''' + +''') +icon_board_split16_filled = NotStr(''' + +''') +icon_thumb_like24_regular = NotStr(''' + +''') +icon_cellular_data120_filled = NotStr(''' + +''') +icon_circle12_filled = NotStr(''' + +''') +icon_drafts16_regular = NotStr(''' + +''') +icon_channel_add48_regular = NotStr(''' + +''') +icon_dismiss20_filled = NotStr(''' + +''') +icon_video_person_sparkle20_regular = NotStr(''' + +''') +icon_text_direction_rotate90_right24_regular = NotStr(''' + +''') +icon_doctor48_filled = NotStr(''' + +''') +icon_camera28_filled = NotStr(''' + +''') +icon_slide_hide24_filled = NotStr(''' + +''') +icon_calendar_work_week28_filled = NotStr(''' + +''') +icon_surface_hub20_filled = NotStr(''' + +''') +icon_building_home20_filled = NotStr(''' + +''') +icon_mail_inbox_add20_regular = NotStr(''' + +''') +icon_subtract_circle_arrow_back16_regular = NotStr(''' + +''') +icon_leaf_one20_filled = NotStr(''' + +''') +icon_shifts_open20_regular = NotStr(''' + +''') +icon_drop12_filled = NotStr(''' + +''') +icon_screen_search24_regular = NotStr(''' + +''') +icon_align_left48_filled = NotStr(''' + +''') +icon_mail_clock16_filled = NotStr(''' + +''') +icon_cloud48_regular = NotStr(''' + +''') +icon_table_delete_row16_filled = NotStr(''' + +''') +icon_news24_filled = NotStr(''' + +''') +icon_bluetooth_searching20_filled = NotStr(''' + +''') +icon_camera_dome20_filled = NotStr(''' + +''') +icon_swipe_down24_filled = NotStr(''' + +''') +icon_scan_camera20_regular = NotStr(''' + +''') +icon_bot20_filled = NotStr(''' + +''') +icon_align_center_horizontal28_regular = NotStr(''' + +''') +icon_lock_open20_filled = NotStr(''' + +''') +icon_organization12_filled = NotStr(''' + +''') +icon_tent28_filled = NotStr(''' + +''') +icon_cloud_sync48_regular = NotStr(''' + +''') +icon_tv_usb16_filled = NotStr(''' + +''') +icon_box_arrow_up20_filled = NotStr(''' + +''') +icon_expand_up_left20_filled = NotStr(''' + +''') +icon_resize_large24_regular = NotStr(''' + +''') +icon_text_strikethrough20_filled = NotStr(''' + +''') +icon_document_bullet_list_clock24_filled = NotStr(''' + +''') +icon_drink_wine16_regular = NotStr(''' + +''') +icon_inprivate_account16_regular = NotStr(''' + +''') +icon_star_dismiss16_filled = NotStr(''' + +''') +icon_toggle_left24_regular = NotStr(''' + +''') +icon_keyboard_layout_resize24_regular = NotStr(''' + +''') +icon_text_indent_decrease_ltr20_filled = NotStr(''' + +''') +icon_target_arrow24_regular = NotStr(''' + +''') +icon_dock_row24_regular = NotStr(''' + +''') +icon_position_forward24_filled = NotStr(''' + +''') +icon_presence_oof16_regular = NotStr(''' + +''') +icon_doctor24_filled = NotStr(''' + +''') +icon_building24_regular = NotStr(''' + +''') +icon_text_indent_increase_rtl20_filled = NotStr(''' + +''') +icon_flag_off28_regular = NotStr(''' + +''') +icon_device_meeting_room28_regular = NotStr(''' + +''') +icon_divider_short20_regular = NotStr(''' + +''') +icon_mail_attach20_filled = NotStr(''' + +''') +icon_presenter24_filled = NotStr(''' + +''') +icon_mic_off16_regular = NotStr(''' + +''') +icon_align_space_around_horizontal20_filled = NotStr(''' + + + + +''') +icon_location48_filled = NotStr(''' + +''') +icon_people_list24_filled = NotStr(''' + +''') +icon_weather_hail_day48_filled = NotStr(''' + +''') +icon_play28_regular = NotStr(''' + +''') +icon_briefcase_off16_regular = NotStr(''' + +''') +icon_video_clip24_regular = NotStr(''' + +''') +icon_arrow_circle_up48_regular = NotStr(''' + +''') +icon_backspace20_regular = NotStr(''' + +''') +icon_shape_exclude16_filled = NotStr(''' + +''') +icon_person_arrow_left24_regular = NotStr(''' + +''') +icon_flip_vertical16_regular = NotStr(''' + +''') +icon_arrow_sync_circle24_regular = NotStr(''' + +''') +icon_lock_shield24_filled = NotStr(''' + +''') +icon_emoji_surprise24_regular = NotStr(''' + +''') +icon_calendar_ltr12_filled = NotStr(''' + +''') +icon_desktop_pulse24_regular = NotStr(''' + +''') +icon_umbrella20_regular = NotStr(''' + +''') +icon_album_add20_filled = NotStr(''' + +''') +icon_guardian28_filled = NotStr(''' + +''') +icon_textbox_align_center24_regular = NotStr(''' + +''') +icon_speaker_mute20_regular = NotStr(''' + +''') +icon_closed_caption32_filled = NotStr(''' + +''') +icon_add_circle20_filled = NotStr(''' + +''') +icon_panel_left_expand20_regular = NotStr(''' + +''') +icon_arrow_autofit_height20_filled = NotStr(''' + +''') +icon_money_calculator24_regular = NotStr(''' + +''') +icon_chart_multiple24_filled = NotStr(''' + +''') +icon_calendar_ltr24_filled = NotStr(''' + +''') +icon_flip_horizontal32_filled = NotStr(''' + +''') +icon_person_mail28_regular = NotStr(''' + +''') +icon_scan_camera28_filled = NotStr(''' + +''') +icon_contact_card24_filled = NotStr(''' + +''') +icon_tag_circle20_regular = NotStr(''' + +''') +icon_text_hanging24_filled = NotStr(''' + +''') +icon_backpack_add28_regular = NotStr(''' + +''') +icon_decimal_arrow_right20_filled = NotStr(''' + +''') +icon_hat_graduation12_regular = NotStr(''' + + + + + + +''') +icon_chevron_circle_left48_filled = NotStr(''' + +''') +icon_person_mail20_regular = NotStr(''' + +''') +icon_share_screen_person_overlay28_regular = NotStr(''' + +''') +icon_document_margins20_filled = NotStr(''' + +''') +icon_shopping_bag_tag24_regular = NotStr(''' + +''') +icon_globe_desktop24_filled = NotStr(''' + +''') +icon_call_park32_regular = NotStr(''' + +''') +icon_content_settings16_filled = NotStr(''' + +''') +icon_weather_rain24_filled = NotStr(''' + +''') +icon_emoji_sparkle48_regular = NotStr(''' + +''') +icon_mail_inbox_dismiss28_regular = NotStr(''' + +''') +icon_calendar_arrow_right16_filled = NotStr(''' + +''') +icon_person_chat24_regular = NotStr(''' + +''') +icon_thumb_like48_filled = NotStr(''' + +''') +icon_person_tag32_regular = NotStr(''' + +''') +icon_stack_star24_filled = NotStr(''' + +''') +icon_split_horizontal16_regular = NotStr(''' + +''') +icon_text_column_three24_filled = NotStr(''' + +''') +icon_tab_desktop_image20_filled = NotStr(''' + +''') +icon_bed20_regular = NotStr(''' + +''') +icon_triangle32_filled = NotStr(''' + +''') +icon_desktop_edit16_regular = NotStr(''' + +''') +icon_app_generic20_regular = NotStr(''' + +''') +icon_vehicle_bus24_regular = NotStr(''' + +''') +icon_food24_regular = NotStr(''' + +''') +icon_weather_drizzle24_filled = NotStr(''' + +''') +icon_chevron_circle_left32_filled = NotStr(''' + +''') +icon_toggle_right20_filled = NotStr(''' + +''') +icon_building_home24_filled = NotStr(''' + +''') +icon_call_park20_regular = NotStr(''' + +''') +icon_people_community_add20_regular = NotStr(''' + +''') +icon_pin28_filled = NotStr(''' + +''') +icon_text_font16_regular = NotStr(''' + +''') +icon_animal_turtle16_regular = NotStr(''' + +''') +icon_calendar_assistant24_regular = NotStr(''' + +''') +icon_calendar_sync20_filled = NotStr(''' + +''') +icon_drink_beer16_filled = NotStr(''' + +''') +icon_arrow_upload20_regular = NotStr(''' + +''') +icon_headphones_sound_wave28_filled = NotStr(''' + +''') +icon_save_arrow_right20_filled = NotStr(''' + +''') +icon_mail_settings20_filled = NotStr(''' + +''') +icon_guest28_regular = NotStr(''' + +''') +icon_dual_screen_dismiss24_filled = NotStr(''' + +''') +icon_document_ribbon28_regular = NotStr(''' + +''') +icon_rocket16_filled = NotStr(''' + +''') +icon_arrow_trending_wrench20_filled = NotStr(''' + +''') +icon_reward20_regular = NotStr(''' + +''') +icon_drive_train24_regular = NotStr(''' + +''') +icon_color_fill20_filled = NotStr(''' + +''') +icon_triangle12_regular = NotStr(''' + +''') +icon_book_database24_regular = NotStr(''' + +''') +icon_video24_filled = NotStr(''' + +''') +icon_location_add20_regular = NotStr(''' + +''') +icon_textbox_align_middle_rotate9020_filled = NotStr(''' + +''') +icon_fixed_width24_filled = NotStr(''' + +''') +icon_mail_unread48_regular = NotStr(''' + +''') +icon_double_tap_swipe_down24_filled = NotStr(''' + +''') +icon_cloud_archive24_regular = NotStr(''' + +''') +icon_vehicle_truck_profile24_filled = NotStr(''' + +''') +icon_window_multiple20_regular = NotStr(''' + +''') +icon_desktop_edit20_filled = NotStr(''' + +''') +icon_box_multiple_search20_regular = NotStr(''' + +''') +icon_box_multiple_arrow_left20_filled = NotStr(''' + +''') +icon_vehicle_subway20_filled = NotStr(''' + +''') +icon_hand_left20_regular = NotStr(''' + +''') +icon_divider_short16_filled = NotStr(''' + +''') +icon_library28_filled = NotStr(''' + +''') +icon_emoji_sad_slight20_regular = NotStr(''' + +''') +icon_video48_regular = NotStr(''' + +''') +icon_desktop_cursor16_filled = NotStr(''' + +''') +icon_arrows_bidirectional20_filled = NotStr(''' + +''') +icon_attach24_filled = NotStr(''' + +''') +icon_square_arrow_forward28_regular = NotStr(''' + +''') +icon_mail_dismiss20_filled = NotStr(''' + +''') +icon_star_settings24_regular = NotStr(''' + +''') +icon_link12_regular = NotStr(''' + +''') +icon_tablet32_filled = NotStr(''' + +''') +icon_checkmark_starburst20_filled = NotStr(''' + +''') +icon_tag_dismiss16_regular = NotStr(''' + +''') +icon_f_stop24_regular = NotStr(''' + +''') +icon_notebook_section_arrow_right24_regular = NotStr(''' + + + + +''') +icon_comment_edit20_filled = NotStr(''' + +''') +icon_mail_open_person20_filled = NotStr(''' + +''') +icon_play_circle28_regular = NotStr(''' + +''') +icon_icons24_filled = NotStr(''' + +''') +icon_emoji_sparkle32_regular = NotStr(''' + +''') +icon_airplane_take_off20_regular = NotStr(''' + +''') +icon_calendar_rtl12_filled = NotStr(''' + +''') +icon_table_delete_row24_filled = NotStr(''' + +''') +icon_document_lock48_filled = NotStr(''' + +''') +icon_video_background_effect24_regular = NotStr(''' + +''') +icon_people_community_add24_regular = NotStr(''' + +''') +icon_square_multiple16_filled = NotStr(''' + +''') +icon_weather_snow24_regular = NotStr(''' + +''') +icon_vehicle_car48_regular = NotStr(''' + +''') +icon_table_cell_edit16_filled = NotStr(''' + +''') +icon_shifts30_minutes24_filled = NotStr(''' + +''') +icon_next48_regular = NotStr(''' + +''') +icon_clipboard_code16_regular = NotStr(''' + +''') +icon_building_shop20_filled = NotStr(''' + +''') +icon_grid28_filled = NotStr(''' + +''') +icon_text_bullet_list_square24_filled = NotStr(''' + +''') +icon_arrow_redo48_filled = NotStr(''' + +''') +icon_channel_dismiss20_filled = NotStr(''' + +''') +icon_sync_off20_regular = NotStr(''' + +''') +icon_mail_prohibited16_filled = NotStr(''' + +''') +icon_clipboard_paste24_regular = NotStr(''' + +''') +icon_luggage28_regular = NotStr(''' + +''') +icon_arrow_sync16_filled = NotStr(''' + +''') +icon_battery224_filled = NotStr(''' + +''') +icon_delete_dismiss24_filled = NotStr(''' + +''') +icon_weather_rain20_regular = NotStr(''' + +''') +icon_text_column_two24_filled = NotStr(''' + +''') +icon_bookmark_multiple16_regular = NotStr(''' + +''') +icon_chat_video20_regular = NotStr(''' + +''') +icon_shape_intersect16_regular = NotStr(''' + +''') +icon_arrow_right28_regular = NotStr(''' + +''') +icon_dismiss_circle16_filled = NotStr(''' + +''') +icon_checkmark_circle24_regular = NotStr(''' + +''') +icon_desktop_flow20_regular = NotStr(''' + +''') +icon_weather_squalls48_regular = NotStr(''' + +''') +icon_toggle_left20_filled = NotStr(''' + +''') +icon_arrow_down_left48_regular = NotStr(''' + +''') +icon_settings_chat24_filled = NotStr(''' + +''') +icon_backpack28_regular = NotStr(''' + +''') +icon_closed_caption20_regular = NotStr(''' + +''') +icon_align_right28_regular = NotStr(''' + +''') +icon_textbox_align_top24_regular = NotStr(''' + +''') +icon_speaker232_regular = NotStr(''' + +''') +icon_heart_pulse24_regular = NotStr(''' + +''') +icon_slide_add20_filled = NotStr(''' + +''') +icon_zoom_in24_regular = NotStr(''' + +''') +icon_text_hanging20_filled = NotStr(''' + +''') +icon_eraser20_regular = NotStr(''' + +''') +icon_contact_card_link20_filled = NotStr(''' + +''') +icon_folder24_regular = NotStr(''' + +''') +icon_chevron_circle_left24_filled = NotStr(''' + +''') +icon_chevron_right48_regular = NotStr(''' + +''') +icon_star_add24_regular = NotStr(''' + +''') +icon_notebook_subsection20_filled = NotStr(''' + +''') +icon_document_text_clock20_regular = NotStr(''' + +''') +icon_grid_kanban20_filled = NotStr(''' + +''') +icon_note_pin20_regular = NotStr(''' + +''') +icon_notepad32_filled = NotStr(''' + +''') +icon_video_person16_filled = NotStr(''' + +''') +icon_shape_subtract24_filled = NotStr(''' + +''') +icon_weather_sunny_high24_regular = NotStr(''' + +''') +icon_image_globe24_filled = NotStr(''' + + + + + + + + + + + +''') +icon_heart16_regular = NotStr(''' + +''') +icon_vehicle_car_collision24_regular = NotStr(''' + +''') +icon_folder_zip16_regular = NotStr(''' + +''') +icon_next24_filled = NotStr(''' + +''') +icon_data_line24_regular = NotStr(''' + +''') +icon_gift_card_multiple24_regular = NotStr(''' + +''') +icon_hat_graduation16_regular = NotStr(''' + +''') +icon_document_header_footer16_filled = NotStr(''' + +''') +icon_food_egg16_filled = NotStr(''' + +''') +icon_mic_prohibited24_filled = NotStr(''' + +''') +icon_ticket_horizontal24_regular = NotStr(''' + +''') +icon_people_settings28_regular = NotStr(''' + +''') +icon_emoji_sparkle32_filled = NotStr(''' + +''') +icon_glasses_off28_filled = NotStr(''' + +''') +icon_grid_kanban20_regular = NotStr(''' + +''') +icon_expand_up_left24_filled = NotStr(''' + +''') +icon_document_text_link20_filled = NotStr(''' + +''') +icon_weather_rain_snow24_filled = NotStr(''' + +''') +icon_food_apple24_filled = NotStr(''' + +''') +icon_tablet_speaker24_regular = NotStr(''' + + + + + + + +''') +icon_calculator_multiple20_filled = NotStr(''' + +''') +icon_tag_lock_accent20_filled = NotStr(''' + +''') +icon_book_search24_filled = NotStr(''' + +''') +icon_bot_add24_regular = NotStr(''' + +''') +icon_color_line20_regular = NotStr(''' + +''') +icon_dual_screen_group24_filled = NotStr(''' + +''') +icon_chevron_up28_regular = NotStr(''' + +''') +icon_tag20_regular = NotStr(''' + +''') +icon_square28_regular = NotStr(''' + +''') +icon_table_freeze_column28_filled = NotStr(''' + +''') +icon_arrow_routing_rectangle_multiple20_filled = NotStr(''' + +''') +icon_arrow_trending_checkmark24_filled = NotStr(''' + +''') +icon_table_simple20_filled = NotStr(''' + +''') +icon_luggage24_filled = NotStr(''' + +''') +icon_drawer_add20_filled = NotStr(''' + +''') +icon_chat_off20_regular = NotStr(''' + + + + + +''') +icon_my_location24_regular = NotStr(''' + +''') +icon_diamond20_filled = NotStr(''' + +''') +icon_snooze16_filled = NotStr(''' + +''') +icon_connector24_regular = NotStr(''' + +''') +icon_keyboard_dock24_regular = NotStr(''' + +''') +icon_border_right24_filled = NotStr(''' + +''') +icon_predictions24_filled = NotStr(''' + +''') +icon_board20_filled = NotStr(''' + +''') +icon_arrow_circle_right12_filled = NotStr(''' + +''') +icon_mail_settings20_regular = NotStr(''' + +''') +icon_animal_cat20_filled = NotStr(''' + +''') +icon_board_split24_regular = NotStr(''' + +''') +icon_person_subtract16_filled = NotStr(''' + +''') +icon_copy_add20_regular = NotStr(''' + +''') +icon_food_cake20_filled = NotStr(''' + +''') +icon_arrow_counterclockwise_dashes24_filled = NotStr(''' + +''') +icon_broad_activity_feed24_filled = NotStr(''' + +''') +icon_phone_span_out28_regular = NotStr(''' + +''') +icon_circle32_filled = NotStr(''' + +''') +icon_laptop20_regular = NotStr(''' + +''') +icon_table_freeze_row24_regular = NotStr(''' + +''') +icon_surface_hub24_filled = NotStr(''' + +''') +icon_clipboard_text_rtl24_regular = NotStr(''' + + + + + + +''') +icon_arrow_curve_down_left20_regular = NotStr(''' + +''') +icon_table_switch28_regular = NotStr(''' + +''') +icon_component2_double_tap_swipe_down24_filled = NotStr(''' + +''') +icon_number_row16_filled = NotStr(''' + +''') +icon_more_horizontal28_regular = NotStr(''' + +''') +icon_shield_task24_filled = NotStr(''' + +''') +icon_vehicle_truck_cube20_filled = NotStr(''' + +''') +icon_eye12_filled = NotStr(''' + +''') +icon_options16_regular = NotStr(''' + +''') +icon_replay20_filled = NotStr(''' + +''') +icon_square_arrow_forward20_regular = NotStr(''' + +''') +icon_battery_charge20_regular = NotStr(''' + +''') +icon_data_scatter20_regular = NotStr(''' + +''') +icon_search_info20_filled = NotStr(''' + +''') +icon_clock24_filled = NotStr(''' + +''') +icon_shield_keyhole20_filled = NotStr(''' + +''') +icon_trophy_off48_regular = NotStr(''' + +''') +icon_drink_coffee24_filled = NotStr(''' + +''') +icon_arrow_curve_down_left28_filled = NotStr(''' + +''') +icon_document_page_number24_filled = NotStr(''' + +''') +icon_cursor_click20_regular = NotStr(''' + +''') +icon_cloud_dismiss20_regular = NotStr(''' + +''') +icon_arrow_sync_checkmark24_filled = NotStr(''' + +''') +icon_directions20_filled = NotStr(''' + +''') +icon_heart32_filled = NotStr(''' + +''') +icon_vault20_regular = NotStr(''' + +''') +icon_emoji_smile_slight20_filled = NotStr(''' + +''') +icon_apps24_filled = NotStr(''' + +''') +icon_position_forward20_filled = NotStr(''' + +''') +icon_branch_compare16_filled = NotStr(''' + +''') +icon_location_off20_filled = NotStr(''' + +''') +icon_shifts16_regular = NotStr(''' + + + + +''') +icon_f_stop28_filled = NotStr(''' + +''') +icon_link_dismiss24_filled = NotStr(''' + +''') +icon_comment_multiple_link16_regular = NotStr(''' + +''') +icon_flowchart_circle24_filled = NotStr(''' + +''') +icon_form_new24_regular = NotStr(''' + +''') +icon_window_dev_edit20_regular = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise20_regular = NotStr(''' + +''') +icon_book_add20_filled = NotStr(''' + +''') +icon_document_arrow_up20_filled = NotStr(''' + +''') +icon_phone_checkmark20_regular = NotStr(''' + +''') +icon_dismiss24_regular = NotStr(''' + +''') +icon_link_edit20_regular = NotStr(''' + +''') +icon_arrow_circle_down_split20_filled = NotStr(''' + +''') +icon_pulse20_filled = NotStr(''' + +''') +icon_drawer_play20_regular = NotStr(''' + +''') +icon_document_multiple_prohibited20_regular = NotStr(''' + +''') +icon_briefcase24_regular = NotStr(''' + +''') +icon_plug_disconnected20_regular = NotStr(''' + +''') +icon_shield_checkmark24_filled = NotStr(''' + +''') +icon_archive_multiple20_filled = NotStr(''' + +''') +icon_number_symbol24_regular = NotStr(''' + +''') +icon_desktop_arrow_right20_regular = NotStr(''' + +''') +icon_shield_task28_regular = NotStr(''' + +''') +icon_copy_select20_regular = NotStr(''' + +''') +icon_stethoscope20_regular = NotStr(''' + +''') +icon_games48_filled = NotStr(''' + +''') +icon_accessibility24_regular = NotStr(''' + +''') +icon_speaker224_regular = NotStr(''' + +''') +icon_snooze20_regular = NotStr(''' + +''') +icon_temperature24_regular = NotStr(''' + +''') +icon_person_mail48_regular = NotStr(''' + +''') +icon_book_question_mark_rtl24_filled = NotStr(''' + +''') +icon_flag20_filled = NotStr(''' + +''') +icon_timer12_filled = NotStr(''' + +''') +icon_tag_question_mark20_regular = NotStr(''' + +''') +icon_camera20_filled = NotStr(''' + +''') +icon_calendar_ltr28_regular = NotStr(''' + +''') +icon_task_list_square_ltr24_regular = NotStr(''' + +''') +icon_arrow_redo28_filled = NotStr(''' + +''') +icon_comment_multiple_link20_regular = NotStr(''' + +''') +icon_comment_arrow_right12_regular = NotStr(''' + +''') +icon_location_arrow_up48_regular = NotStr(''' + +''') +icon_textbox_align_middle_rotate9020_regular = NotStr(''' + +''') +icon_text_direction_vertical24_regular = NotStr(''' + +''') +icon_panel_right_contract24_regular = NotStr(''' + +''') +icon_shifts16_filled = NotStr(''' + +''') +icon_arrow_step_in_right28_regular = NotStr(''' + +''') +icon_document_ribbon32_regular = NotStr(''' + +''') +icon_eye20_regular = NotStr(''' + +''') +icon_alert_urgent24_filled = NotStr(''' + +''') +icon_approvals_app28_regular = NotStr(''' + +''') +icon_call_end16_filled = NotStr(''' + +''') +icon_line_horizontal120_regular = NotStr(''' + +''') +icon_share_screen_person_p28_filled = NotStr(''' + +''') +icon_task_list_ltr24_regular = NotStr(''' + +''') +icon_couch12_filled = NotStr(''' + +''') +icon_triangle48_filled = NotStr(''' + +''') +icon_delete24_filled = NotStr(''' + +''') +icon_balloon20_regular = NotStr(''' + +''') +icon_board_heart16_filled = NotStr(''' + +''') +icon_content_settings24_filled = NotStr(''' + +''') +icon_document_checkmark20_regular = NotStr(''' + +''') +icon_text_first_line20_filled = NotStr(''' + +''') +icon_arrow_up_right16_regular = NotStr(''' + +''') +icon_book_number20_regular = NotStr(''' + +''') +icon_channel48_regular = NotStr(''' + +''') +icon_window_inprivate20_filled = NotStr(''' + +''') +icon_mail_inbox_dismiss16_regular = NotStr(''' + +''') +icon_subtract16_regular = NotStr(''' + +''') +icon_class24_filled = NotStr(''' + +''') +icon_font_space_tracking_out24_regular = NotStr(''' + +''') +icon_camera_off20_filled = NotStr(''' + +''') +icon_drawer_subtract20_regular = NotStr(''' + +''') +icon_phone_span_out28_filled = NotStr(''' + +''') +icon_chat_arrow_double_back16_regular = NotStr(''' + +''') +icon_clipboard_data_bar32_regular = NotStr(''' + +''') +icon_slide_microphone32_filled = NotStr(''' + +''') +icon_tv48_regular = NotStr(''' + +''') +icon_book_arrow_clockwise20_regular = NotStr(''' + +''') +icon_call_inbound48_regular = NotStr(''' + +''') +icon_ribbon_star20_regular = NotStr(''' + +''') +icon_textbox_more24_filled = NotStr(''' + +''') +icon_chevron_circle_right20_regular = NotStr(''' + +''') +icon_fluid20_regular = NotStr(''' + +''') +icon_money_hand20_regular = NotStr(''' + +''') +icon_arrow_sync20_regular = NotStr(''' + +''') +icon_content_settings32_filled = NotStr(''' + +''') +icon_previous28_filled = NotStr(''' + +''') +icon_lock_closed24_filled = NotStr(''' + +''') +icon_video_off28_regular = NotStr(''' + +''') +icon_notepad_edit16_filled = NotStr(''' + +''') +icon_text_case_title20_regular = NotStr(''' + +''') +icon_subtract_circle20_regular = NotStr(''' + +''') +icon_dismiss48_filled = NotStr(''' + +''') +icon_text_direction_vertical20_regular = NotStr(''' + +''') +icon_gantt_chart20_filled = NotStr(''' + +''') +icon_convert_range20_regular = NotStr(''' + +''') +icon_question48_regular = NotStr(''' + +''') +icon_comment_arrow_right48_regular = NotStr(''' + +''') +icon_share16_regular = NotStr(''' + +''') +icon_align_center_horizontal28_filled = NotStr(''' + +''') +icon_mic_sparkle20_filled = NotStr(''' + +''') +icon_people_team_delete24_regular = NotStr(''' + +''') +icon_add_circle16_filled = NotStr(''' + +''') +icon_document_page_bottom_center20_filled = NotStr(''' + +''') +icon_plug_disconnected24_regular = NotStr(''' + +''') +icon_toggle_left48_filled = NotStr(''' + +''') +icon_document_multiple20_filled = NotStr(''' + +''') +icon_checkbox_unchecked12_filled = NotStr(''' + +''') +icon_chevron_circle_up16_regular = NotStr(''' + +''') +icon_page_fit16_filled = NotStr(''' + +''') +icon_tab16_filled = NotStr(''' + +''') +icon_table_resize_column20_regular = NotStr(''' + +''') +icon_globe_star16_filled = NotStr(''' + +''') +icon_puzzle_piece20_filled = NotStr(''' + +''') +icon_align_center_vertical32_regular = NotStr(''' + +''') +icon_arrow_fit16_filled = NotStr(''' + +''') +icon_checkbox_unchecked16_regular = NotStr(''' + +''') +icon_weather_hail_day24_regular = NotStr(''' + +''') +icon_mail_unread20_regular = NotStr(''' + +''') +icon_border_right20_filled = NotStr(''' + +''') +icon_wifi424_regular = NotStr(''' + +''') +icon_payment16_filled = NotStr(''' + +''') +icon_fps3016_filled = NotStr(''' + +''') +icon_color_fill24_regular = NotStr(''' + +''') +icon_key_command16_filled = NotStr(''' + +''') +icon_battery_warning24_regular = NotStr(''' + +''') +icon_info16_filled = NotStr(''' + +''') +icon_xray20_filled = NotStr(''' + +''') +icon_airplane20_regular = NotStr(''' + +''') +icon_chat48_filled = NotStr(''' + +''') +icon_padding_left20_regular = NotStr(''' + +''') +icon_arrow_rotate_counterclockwise24_filled = NotStr(''' + +''') +icon_data_bar_vertical24_filled = NotStr(''' + +''') +icon_chevron_circle_down20_filled = NotStr(''' + +''') +icon_clipboard_data_bar24_filled = NotStr(''' + +''') +icon_pulse_square24_filled = NotStr(''' + +''') +icon_desktop_speaker_off20_filled = NotStr(''' + +''') +icon_door_tag24_filled = NotStr(''' + +''') +icon_arrow_trending_lines20_filled = NotStr(''' + +''') +icon_arrow_forward20_filled = NotStr(''' + +''') +icon_hat_graduation12_filled = NotStr(''' + +''') +icon_hand_left28_filled = NotStr(''' + +''') +icon_channel_dismiss20_regular = NotStr(''' + +''') +icon_heart_circle24_regular = NotStr(''' + +''') +icon_grid_dots20_regular = NotStr(''' + +''') +icon_likert24_filled = NotStr(''' + +''') +icon_board28_regular = NotStr(''' + +''') +icon_skip_back1048_filled = NotStr(''' + +''') +icon_video_person_call32_regular = NotStr(''' + +''') +icon_mail_checkmark20_filled = NotStr(''' + +''') +icon_calendar_pattern16_filled = NotStr(''' + +''') +icon_phone_laptop32_filled = NotStr(''' + +''') +icon_folder_sync16_filled = NotStr(''' + +''') +icon_settings32_regular = NotStr(''' + +''') +icon_text_t28_regular = NotStr(''' + +''') +icon_document_heart20_regular = NotStr(''' + +''') +icon_rhombus28_filled = NotStr(''' + +''') +icon_scan_camera16_filled = NotStr(''' + +''') +icon_call24_filled = NotStr(''' + +''') +icon_mic_sync20_regular = NotStr(''' + +''') +icon_arrow_up_right48_regular = NotStr(''' + +''') +icon_text_quote24_filled = NotStr(''' + +''') +icon_link_square16_filled = NotStr(''' + +''') +icon_text_column_two20_regular = NotStr(''' + +''') +icon_folder_prohibited20_regular = NotStr(''' + +''') +icon_cube_multiple24_regular = NotStr(''' + +''') +icon_multiplier12_x24_regular = NotStr(''' + +''') +icon_arrow_sync_checkmark20_filled = NotStr(''' + +''') +icon_glance_horizontal20_filled = NotStr(''' + +''') +icon_laptop28_filled = NotStr(''' + +''') +icon_backpack12_filled = NotStr(''' + +''') +icon_print20_filled = NotStr(''' + +''') +icon_text_direction_horizontal_left24_filled = NotStr(''' + +''') +icon_arrow_between_down24_regular = NotStr(''' + +''') +icon_arrow_reset20_regular = NotStr(''' + +''') +icon_save_multiple24_regular = NotStr(''' + +''') +icon_equal_off20_filled = NotStr(''' + +''') +icon_keyboard_shift20_filled = NotStr(''' + +''') +icon_device_meeting_room_remote48_regular = NotStr(''' + +''') +icon_xbox_console20_filled = NotStr(''' + +''') +icon_border_bottom_thick20_filled = NotStr(''' + +''') +icon_voicemail16_regular = NotStr(''' + +''') +icon_multiplier1_x48_regular = NotStr(''' + +''') +icon_weather_drizzle20_filled = NotStr(''' + +''') +icon_text_paragraph_direction20_filled = NotStr(''' + +''') +icon_clipboard_task_list_ltr24_regular = NotStr(''' + +''') +icon_arrow_hook_down_right20_filled = NotStr(''' + +''') +icon_clock_toolbox24_filled = NotStr(''' + +''') +icon_ribbon32_filled = NotStr(''' + +''') +icon_table_move_above28_filled = NotStr(''' + +''') +icon_people_list28_regular = NotStr(''' + +''') +icon_folder_add48_filled = NotStr(''' + +''') +icon_heart_broken20_filled = NotStr(''' + +''') +icon_stethoscope24_regular = NotStr(''' + +''') +icon_book_open24_filled = NotStr(''' + +''') +icon_flag24_regular = NotStr(''' + +''') +icon_building_factory28_regular = NotStr(''' + +''') +icon_clipboard_pulse20_filled = NotStr(''' + +''') +icon_fps3024_regular = NotStr(''' + +''') +icon_globe_surface24_filled = NotStr(''' + +''') +icon_arrow_hook_up_right24_regular = NotStr(''' + +''') +icon_drawer_subtract20_filled = NotStr(''' + +''') +icon_mail_inbox_arrow_down16_regular = NotStr(''' + +''') +icon_important16_regular = NotStr(''' + +''') +icon_edit_off24_regular = NotStr(''' + +''') +icon_developer_board_search24_regular = NotStr(''' + +''') +icon_text_column_three24_regular = NotStr(''' + +''') +icon_archive_settings20_regular = NotStr(''' + +''') +icon_more_vertical48_filled = NotStr(''' + +''') +icon_shifts_activity24_regular = NotStr(''' + +''') +icon_cloud_arrow_down16_filled = NotStr(''' + +''') +icon_document_add20_regular = NotStr(''' + +''') +icon_box_arrow_up24_filled = NotStr(''' + +''') +icon_person_question_mark16_filled = NotStr(''' + +''') +icon_mail24_filled = NotStr(''' + +''') +icon_align_center_vertical28_filled = NotStr(''' + +''') +icon_window_apps32_regular = NotStr(''' + +''') +icon_cloud_sync32_filled = NotStr(''' + +''') +icon_airplane24_filled = NotStr(''' + +''') +icon_approvals_app16_regular = NotStr(''' + + + + + + +''') +icon_closed_caption_off28_regular = NotStr(''' + +''') +icon_image_globe24_regular = NotStr(''' + + + + + + + + + + +''') +icon_reading_list_add16_regular = NotStr(''' + +''') +icon_star_prohibited16_filled = NotStr(''' + +''') +icon_symbols24_regular = NotStr(''' + +''') +icon_battery120_filled = NotStr(''' + +''') +icon_shopping_bag_tag20_regular = NotStr(''' + +''') +icon_radio_button24_regular = NotStr(''' + +''') +icon_square_multiple24_regular = NotStr(''' + +''') +icon_data_funnel24_filled = NotStr(''' + +''') +icon_mail_copy20_filled = NotStr(''' + +''') +icon_text_bullet_list_tree20_filled = NotStr(''' + +''') +icon_checkbox_indeterminate24_regular = NotStr(''' + +''') +icon_box_arrow_left24_regular = NotStr(''' + +''') +icon_multiplier18_x32_regular = NotStr(''' + +''') +icon_album_add20_regular = NotStr(''' + +''') +icon_table_lightning24_regular = NotStr(''' + +''') +icon_vehicle_subway24_regular = NotStr(''' + +''') +icon_food_cake12_regular = NotStr(''' + +''') +icon_dual_screen_settings24_filled = NotStr(''' + +''') +icon_subtract_square_multiple16_filled = NotStr(''' + +''') +icon_map_drive16_regular = NotStr(''' + +''') +icon_animal_rabbit28_regular = NotStr(''' + +''') +icon_comment_multiple_checkmark16_regular = NotStr(''' + +''') +icon_text_header220_regular = NotStr(''' + +''') +icon_flag_off24_filled = NotStr(''' + +''') +icon_channel_subtract24_filled = NotStr(''' + +''') +icon_tray_item_remove24_regular = NotStr(''' + +''') +icon_border_right20_regular = NotStr(''' + +''') +icon_whiteboard24_filled = NotStr(''' + +''') +icon_shapes48_filled = NotStr(''' + +''') +icon_sub_grid24_regular = NotStr(''' + +''') +icon_tag_off20_regular = NotStr(''' + +''') +icon_currency_dollar_euro24_regular = NotStr(''' + +''') +icon_shortpick20_regular = NotStr(''' + +''') +icon_sticker_add20_filled = NotStr(''' + +''') +icon_image16_regular = NotStr(''' + +''') +icon_calendar_day20_regular = NotStr(''' + +''') +icon_mic20_regular = NotStr(''' + +''') +icon_tab24_regular = NotStr(''' + +''') +icon_position_to_back24_filled = NotStr(''' + +''') +icon_document_split_hint16_filled = NotStr(''' + +''') +icon_skip_back1024_filled = NotStr(''' + +''') +icon_number_symbol32_regular = NotStr(''' + +''') +icon_text_grammar_arrow_right24_filled = NotStr(''' + +''') +icon_battery_charge24_regular = NotStr(''' + +''') +icon_cellular_warning24_regular = NotStr(''' + +''') +icon_clock_alarm16_filled = NotStr(''' + +''') +icon_text_bullet_list_add24_regular = NotStr(''' + +''') +icon_chevron_circle_up28_filled = NotStr(''' + +''') +icon_lock_closed16_filled = NotStr(''' + +''') +icon_sticker_add24_filled = NotStr(''' + +''') +icon_mail_unread16_regular = NotStr(''' + +''') +icon_leaf_two16_filled = NotStr(''' + +''') +icon_border_all24_regular = NotStr(''' + +''') +icon_tent20_regular = NotStr(''' + +''') +icon_align_left32_regular = NotStr(''' + +''') +icon_drop24_regular = NotStr(''' + +''') +icon_open16_regular = NotStr(''' + +''') +icon_link28_filled = NotStr(''' + +''') +icon_task_list_ltr20_regular = NotStr(''' + +''') +icon_weather_haze24_regular = NotStr(''' + +''') +icon_calendar_edit16_filled = NotStr(''' + +''') +icon_desktop_mac32_filled = NotStr(''' + +''') +icon_checkmark28_regular = NotStr(''' + +''') +icon_star_add20_regular = NotStr(''' + +''') +icon_people_prohibited20_regular = NotStr(''' + +''') +icon_circle_half_fill20_filled = NotStr(''' + +''') +icon_delete24_regular = NotStr(''' + +''') +icon_call_outbound20_regular = NotStr(''' + +''') +icon_call_add24_regular = NotStr(''' + +''') +icon_database_person20_regular = NotStr(''' + +''') +icon_full_screen_minimize24_filled = NotStr(''' + +''') +icon_ribbon_add24_filled = NotStr(''' + +''') +icon_auto_fit_width24_filled = NotStr(''' + +''') +icon_arrow_maximize48_filled = NotStr(''' + +''') +icon_window_apps48_regular = NotStr(''' + +''') +icon_archive_multiple16_regular = NotStr(''' + +''') +icon_tent20_filled = NotStr(''' + +''') +icon_call_forward28_regular = NotStr(''' + +''') +icon_dual_screen_add24_filled = NotStr(''' + +''') +icon_contact_card_ribbon24_regular = NotStr(''' + +''') +icon_circle_half_fill12_regular = NotStr(''' + +''') +icon_hand_draw24_regular = NotStr(''' + +''') +icon_globe_video20_filled = NotStr(''' + +''') +icon_door_arrow_right28_regular = NotStr(''' + +''') +icon_breakout_room20_regular = NotStr(''' + +''') +icon_padding_down24_filled = NotStr(''' + +''') +icon_play16_filled = NotStr(''' + +''') +icon_table_resize_column28_regular = NotStr(''' + +''') +icon_arrow_curve_down_left28_regular = NotStr(''' + +''') +icon_fps3020_filled = NotStr(''' + +''') +icon_presence_away16_filled = NotStr(''' + +''') +icon_person12_regular = NotStr(''' + +''') +icon_cut20_regular = NotStr(''' + +''') +icon_speaker248_filled = NotStr(''' + +''') +icon_document_ribbon20_regular = NotStr(''' + +''') +icon_building_retail20_filled = NotStr(''' + +''') +icon_album_add24_regular = NotStr(''' + +''') +icon_shifts_checkmark24_regular = NotStr(''' + +''') +icon_table_lightning16_regular = NotStr(''' + +''') +icon_subtract_circle_arrow_forward16_filled = NotStr(''' + +''') +icon_snooze20_filled = NotStr(''' + +''') +icon_building16_filled = NotStr(''' + +''') +icon_person_note24_regular = NotStr(''' + +''') +icon_person_circle12_regular = NotStr(''' + +''') +icon_highlight_accent16_filled = NotStr(''' + +''') +icon_star_three_quarter12_filled = NotStr(''' + +''') +icon_door_arrow_left16_regular = NotStr(''' + +''') +icon_window_apps32_filled = NotStr(''' + +''') +icon_ribbon12_filled = NotStr(''' + +''') +icon_mail_pause16_regular = NotStr(''' + +''') +icon_align_start_vertical20_regular = NotStr(''' + + + + +''') +icon_slide_text20_regular = NotStr(''' + +''') +icon_cloud_dismiss32_regular = NotStr(''' + +''') +icon_square_hint16_regular = NotStr(''' + +''') +icon_speaker_mute28_filled = NotStr(''' + +''') +icon_table_cell_edit20_regular = NotStr(''' + +''') +icon_clipboard_error24_filled = NotStr(''' + +''') +icon_accessibility_checkmark24_filled = NotStr(''' + +''') +icon_add_circle28_filled = NotStr(''' + +''') +icon_arrow_up_right32_regular = NotStr(''' + +''') +icon_chevron_up24_regular = NotStr(''' + +''') +icon_share_screen_start20_filled = NotStr(''' + +''') +icon_food_apple20_regular = NotStr(''' + +''') +icon_mail_open_person24_filled = NotStr(''' + +''') +icon_square_hint_apps20_regular = NotStr(''' + +''') +icon_hd24_regular = NotStr(''' + +''') +icon_shield_error16_filled = NotStr(''' + +''') +icon_document_header_arrow_down16_filled = NotStr(''' + +''') +icon_diamond16_regular = NotStr(''' + +''') +icon_tab_desktop_new_page20_regular = NotStr(''' + +''') +icon_skip_forward1020_filled = NotStr(''' + +''') +icon_number_symbol_square20_regular = NotStr(''' + +''') +icon_panel_left20_filled = NotStr(''' + +''') +icon_table48_regular = NotStr(''' + +''') +icon_badge24_regular = NotStr(''' + +''') +icon_text_position_line24_regular = NotStr(''' + +''') +icon_text_align_distributed_vertical20_filled = NotStr(''' + +''') +icon_desktop_mac32_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_up20_regular = NotStr(''' + +''') +icon_vault20_filled = NotStr(''' + +''') +icon_skip_forward3028_regular = NotStr(''' + +''') +icon_arrow_left28_regular = NotStr(''' + +''') +icon_chevron_circle_left32_regular = NotStr(''' + +''') +icon_swipe_right24_filled = NotStr(''' + +''') +icon_checkbox_arrow_right24_filled = NotStr(''' + + + + +''') +icon_caret_up24_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_day24_regular = NotStr(''' + +''') +icon_subtract_circle28_regular = NotStr(''' + +''') +icon_people_team_toolbox20_filled = NotStr(''' + +''') +icon_arrow_redo16_filled = NotStr(''' + +''') +icon_heart_broken16_regular = NotStr(''' + +''') +icon_window_edit16_regular = NotStr(''' + +''') +icon_plug_connected24_regular = NotStr(''' + +''') +icon_text_clear_formatting24_filled = NotStr(''' + +''') +icon_lasso24_regular = NotStr(''' + +''') +icon_cloud_archive20_regular = NotStr(''' + +''') +icon_wifi_warning20_regular = NotStr(''' + +''') +icon_clipboard_task_list_rtl24_filled = NotStr(''' + +''') +icon_window_wrench20_filled = NotStr(''' + +''') +icon_scratchpad24_regular = NotStr(''' + +''') +icon_arrow_hook_up_right28_regular = NotStr(''' + +''') +icon_arrow_wrap_off20_filled = NotStr(''' + + + + + +''') +icon_document_javascript24_regular = NotStr(''' + +''') +icon_text_direction_rotate270_right24_filled = NotStr(''' + +''') +icon_transmission24_filled = NotStr(''' + +''') +icon_comment_add24_regular = NotStr(''' + +''') +icon_animal_cat24_regular = NotStr(''' + +''') +icon_tent12_filled = NotStr(''' + +''') +icon_phone24_regular = NotStr(''' + +''') +icon_lock_closed20_regular = NotStr(''' + +''') +icon_divider_short24_filled = NotStr(''' + +''') +icon_arrow_trending_settings20_filled = NotStr(''' + +''') +icon_book_exclamation_mark24_regular = NotStr(''' + +''') +icon_folder_add16_regular = NotStr(''' + +''') +icon_weather_moon20_filled = NotStr(''' + +''') +icon_subtract28_filled = NotStr(''' + +''') +icon_money_off20_regular = NotStr(''' + +''') +icon_chevron_double_up16_regular = NotStr(''' + +''') +icon_arrow_collapse_all20_regular = NotStr(''' + +''') +icon_closed_caption_off48_regular = NotStr(''' + +''') +icon_arrow_sync16_regular = NotStr(''' + +''') +icon_attach_text24_filled = NotStr(''' + +''') +icon_multiplier2_x24_filled = NotStr(''' + +''') +icon_table_freeze_row16_filled = NotStr(''' + +''') +icon_people_settings24_filled = NotStr(''' + +''') +icon_list24_filled = NotStr(''' + +''') +icon_book_open_microphone20_regular = NotStr(''' + +''') +icon_text_sort_ascending20_filled = NotStr(''' + +''') +icon_square_arrow_forward24_regular = NotStr(''' + +''') +icon_calendar_month20_filled = NotStr(''' + +''') +icon_clock12_regular = NotStr(''' + +''') +icon_premium28_filled = NotStr(''' + +''') +icon_document_one_page24_regular = NotStr(''' + +''') +icon_text_field16_regular = NotStr(''' + +''') +icon_toolbox28_filled = NotStr(''' + +''') +icon_document_queue24_filled = NotStr(''' + +''') +icon_flash_settings24_regular = NotStr(''' + +''') +icon_clipboard_error24_regular = NotStr(''' + +''') +icon_cube_rotate20_filled = NotStr(''' + +''') +icon_settings_chat20_filled = NotStr(''' + +''') +icon_heart_pulse32_regular = NotStr(''' + +''') +icon_inking_tool32_filled = NotStr(''' + +''') +icon_bluetooth20_filled = NotStr(''' + +''') +icon_thumb_like28_filled = NotStr(''' + +''') +icon_document_table_checkmark20_filled = NotStr(''' + +''') +icon_headset28_filled = NotStr(''' + +''') +icon_mic_sparkle24_filled = NotStr(''' + +''') +icon_clock_alarm32_regular = NotStr(''' + +''') +icon_puzzle_piece16_regular = NotStr(''' + +''') +icon_clipboard_task_list_ltr24_filled = NotStr(''' + +''') +icon_database_search20_regular = NotStr(''' + +''') +icon_table_move_right24_filled = NotStr(''' + +''') +icon_center_horizontal20_filled = NotStr(''' + + + + + +''') +icon_align_bottom20_regular = NotStr(''' + +''') +icon_emoji_laugh24_filled = NotStr(''' + +''') +icon_font_space_tracking_out28_regular = NotStr(''' + +''') +icon_number_row20_regular = NotStr(''' + +''') +icon_document_landscape_data20_filled = NotStr(''' + +''') +icon_star_dismiss16_regular = NotStr(''' + +''') +icon_table16_regular = NotStr(''' + +''') +icon_save_edit20_filled = NotStr(''' + +''') +icon_desktop_pulse28_filled = NotStr(''' + +''') +icon_text_column_two_right24_filled = NotStr(''' + +''') +icon_building_factory20_regular = NotStr(''' + +''') +icon_scale_fill20_filled = NotStr(''' + +''') +icon_shifts_open24_filled = NotStr(''' + +''') +icon_window_dev_tools24_filled = NotStr(''' + +''') +icon_calendar_assistant24_filled = NotStr(''' + + + + + +''') +icon_chevron_up48_regular = NotStr(''' + +''') +icon_arrow_reply_all48_regular = NotStr(''' + +''') +icon_shield_task16_regular = NotStr(''' + +''') +icon_people_sync20_filled = NotStr(''' + +''') +icon_table_delete_column28_filled = NotStr(''' + +''') +icon_chevron_double_left20_filled = NotStr(''' + +''') +icon_person_note20_filled = NotStr(''' + +''') +icon_arrow_trending24_regular = NotStr(''' + +''') +icon_pill20_regular = NotStr(''' + +''') +icon_accessibility16_filled = NotStr(''' + +''') +icon_window20_filled = NotStr(''' + +''') +icon_pin20_regular = NotStr(''' + +''') +icon_text_position_top_bottom24_filled = NotStr(''' + +''') +icon_comment_checkmark24_filled = NotStr(''' + +''') +icon_presence_dnd16_regular = NotStr(''' + +''') +icon_calendar_agenda28_filled = NotStr(''' + +''') +icon_person_arrow_right16_filled = NotStr(''' + +''') +icon_align_space_evenly_vertical20_filled = NotStr(''' + + + + + +''') +icon_lightbulb_filament24_regular = NotStr(''' + +''') +icon_clock_toolbox24_regular = NotStr(''' + +''') +icon_arrow_circle_down48_regular = NotStr(''' + +''') +icon_clock_alarm20_regular = NotStr(''' + +''') +icon_arrow_step_in_left12_regular = NotStr(''' + +''') +icon_cursor24_regular = NotStr(''' + +''') +icon_text_indent_decrease_ltr24_filled = NotStr(''' + +''') +icon_data_bar_vertical_add20_filled = NotStr(''' + +''') +icon_document_heart24_filled = NotStr(''' + +''') +icon_textbox16_filled = NotStr(''' + +''') +icon_cloud_link20_regular = NotStr(''' + +''') +icon_arrow_sort_down24_filled = NotStr(''' + +''') +icon_call_inbound16_regular = NotStr(''' + +''') +icon_mail_open_person16_filled = NotStr(''' + +''') +icon_multiselect_rtl24_regular = NotStr(''' + +''') +icon_chat20_filled = NotStr(''' + +''') +icon_shape_subtract20_filled = NotStr(''' + +''') +icon_home48_filled = NotStr(''' + +''') +icon_cloud28_filled = NotStr(''' + +''') +icon_mail_alert28_filled = NotStr(''' + +''') +icon_shape_intersect20_filled = NotStr(''' + +''') +icon_star_off28_filled = NotStr(''' + +''') +icon_checkmark48_regular = NotStr(''' + +''') +icon_folder_sync20_regular = NotStr(''' + +''') +icon_fps12020_regular = NotStr(''' + +''') +icon_align_space_between_vertical20_regular = NotStr(''' + + + + +''') +icon_emoji_hand20_filled = NotStr(''' + +''') +icon_align_right24_regular = NotStr(''' + +''') +icon_app_recent24_regular = NotStr(''' + +''') +icon_data_usage24_filled = NotStr(''' + +''') +icon_image28_filled = NotStr(''' + +''') +icon_book_exclamation_mark24_filled = NotStr(''' + +''') +icon_table_edit28_regular = NotStr(''' + +''') +icon_shield_error24_filled = NotStr(''' + +''') +icon_hand_right16_regular = NotStr(''' + +''') +icon_select_all_off24_regular = NotStr(''' + +''') +icon_document_arrow_left28_regular = NotStr(''' + +''') +icon_building_bank16_filled = NotStr(''' + +''') +icon_line24_regular = NotStr(''' + +''') +icon_clock_pause24_filled = NotStr(''' + +''') +icon_document_pill20_filled = NotStr(''' + +''') +icon_book_open32_regular = NotStr(''' + +''') +icon_cube16_regular = NotStr(''' + +''') +icon_table_dismiss28_filled = NotStr(''' + +''') +icon_call_exclamation20_regular = NotStr(''' + +''') +icon_call_outbound24_regular = NotStr(''' + +''') +icon_tablet48_regular = NotStr(''' + +''') +icon_people_error16_filled = NotStr(''' + +''') +icon_arrow_square_down20_filled = NotStr(''' + +''') +icon_flip_horizontal20_regular = NotStr(''' + +''') +icon_book_exclamation_mark20_regular = NotStr(''' + +''') +icon_subtract_circle16_regular = NotStr(''' + +''') +icon_tag_multiple16_filled = NotStr(''' + +''') +icon_branch_compare20_regular = NotStr(''' + +''') +icon_save_sync20_regular = NotStr(''' + +''') +icon_globe_shield20_regular = NotStr(''' + +''') +icon_text_direction_rotate270_right24_regular = NotStr(''' + +''') +icon_chevron_circle_left24_regular = NotStr(''' + +''') +icon_arrow_forward_down_person20_filled = NotStr(''' + +''') +icon_select_object_skew_dismiss24_filled = NotStr(''' + +''') +icon_text_description20_regular = NotStr(''' + +''') +icon_contact_card48_regular = NotStr(''' + +''') +icon_arrow_step_out28_regular = NotStr(''' + +''') +icon_bookmark20_filled = NotStr(''' + +''') +icon_cube_multiple20_regular = NotStr(''' + +''') +icon_vehicle_bus16_regular = NotStr(''' + +''') +icon_text_bullet_list_rtl20_filled = NotStr(''' + +''') +icon_music_note220_regular = NotStr(''' + +''') +icon_server24_regular = NotStr(''' + +''') +icon_clock16_regular = NotStr(''' + +''') +icon_weather_snow_shower_night20_filled = NotStr(''' + +''') +icon_receipt_money24_regular = NotStr(''' + +''') +icon_desktop_sync16_filled = NotStr(''' + +''') +icon_branch_fork_link24_regular = NotStr(''' + +''') +icon_options20_filled = NotStr(''' + +''') +icon_channel_arrow_left24_regular = NotStr(''' + +''') +icon_document_page_break24_filled = NotStr(''' + +''') +icon_arrow_sort_down16_filled = NotStr(''' + +''') +icon_multiplier2_x20_filled = NotStr(''' + +''') +icon_speaker028_filled = NotStr(''' + +''') +icon_poll24_filled = NotStr(''' + +''') +icon_qr_code28_filled = NotStr(''' + +''') +icon_mic48_regular = NotStr(''' + +''') +icon_pin_off24_filled = NotStr(''' + +''') +icon_compass_northwest20_regular = NotStr(''' + +''') +icon_vehicle_truck_profile20_regular = NotStr(''' + +''') +icon_tab_desktop_clock20_regular = NotStr(''' + +''') +icon_arrow_sort16_filled = NotStr(''' + +''') +icon_key24_filled = NotStr(''' + +''') +icon_weather_blowing_snow20_filled = NotStr(''' + +''') +icon_uninstall_app24_filled = NotStr(''' + +''') +icon_send24_filled = NotStr(''' + +''') +icon_eye_tracking16_filled = NotStr(''' + +''') +icon_image20_regular = NotStr(''' + +''') +icon_weather_sunny_high48_regular = NotStr(''' + +''') +icon_document_save24_regular = NotStr(''' + +''') +icon_vehicle_truck_bag20_regular = NotStr(''' + +''') +icon_cloud_words20_regular = NotStr(''' + +''') +icon_document_multiple24_regular = NotStr(''' + + + + +''') +icon_folder_link28_regular = NotStr(''' + +''') +icon_clipboard_code16_filled = NotStr(''' + +''') +icon_text_paragraph16_regular = NotStr(''' + +''') +icon_clipboard_code20_regular = NotStr(''' + +''') +icon_flip_horizontal20_filled = NotStr(''' + +''') +icon_arrow_up32_filled = NotStr(''' + +''') +icon_clipboard_checkmark24_regular = NotStr(''' + +''') +icon_app_recent24_filled = NotStr(''' + +''') +icon_text_sort_descending24_filled = NotStr(''' + +''') +icon_mail_prohibited20_filled = NotStr(''' + +''') +icon_scan_dash12_regular = NotStr(''' + +''') +icon_calendar_question_mark16_regular = NotStr(''' + +''') +icon_calendar_search16_regular = NotStr(''' + +''') +icon_arrow_fit20_regular = NotStr(''' + +''') +icon_text_number_list_ltr16_regular = NotStr(''' + +''') +icon_my_location12_regular = NotStr(''' + +''') +icon_camera_dome24_regular = NotStr(''' + +''') +icon_headset_vr20_regular = NotStr(''' + +''') +icon_share_screen_person_overlay_inside28_regular = NotStr(''' + +''') +icon_ribbon_off12_filled = NotStr(''' + +''') +icon_text_number_list_ltr20_filled = NotStr(''' + +''') +icon_text_case_title24_filled = NotStr(''' + +''') +icon_arrow_export_up20_filled = NotStr(''' + +''') +icon_oval20_regular = NotStr(''' + +''') +icon_copy_add24_regular = NotStr(''' + +''') +icon_call_missed48_regular = NotStr(''' + +''') +icon_vehicle_car48_filled = NotStr(''' + +''') +icon_flashlight20_regular = NotStr(''' + +''') +icon_delete16_filled = NotStr(''' + +''') +icon_caret_right24_regular = NotStr(''' + +''') +icon_clipboard_task_add24_filled = NotStr(''' + +''') +icon_dual_screen_mirror24_filled = NotStr(''' + +''') +icon_window20_regular = NotStr(''' + +''') +icon_gavel32_filled = NotStr(''' + +''') +icon_arrow_reply20_filled = NotStr(''' + +''') +icon_production20_regular = NotStr(''' + +''') +icon_content_settings20_filled = NotStr(''' + +''') +icon_padding_right24_filled = NotStr(''' + +''') +icon_emoji24_regular = NotStr(''' + +''') +icon_contact_card_group16_regular = NotStr(''' + +''') +icon_grid24_filled = NotStr(''' + +''') +icon_cursor20_regular = NotStr(''' + +''') +icon_mail_template20_regular = NotStr(''' + +''') +icon_arrow_right32_filled = NotStr(''' + +''') +icon_align_center_vertical24_filled = NotStr(''' + +''') +icon_number_symbol20_regular = NotStr(''' + +''') +icon_clipboard_settings24_regular = NotStr(''' + +''') +icon_document_text_extract20_filled = NotStr(''' + +''') +icon_document_table_checkmark24_regular = NotStr(''' + +''') +icon_tag_lock16_regular = NotStr(''' + +''') +icon_puzzle_cube28_filled = NotStr(''' + +''') +icon_chat_multiple20_regular = NotStr(''' + +''') +icon_text_indent_increase_ltr20_regular = NotStr(''' + +''') +icon_collections_add24_regular = NotStr(''' + +''') +icon_sparkle48_filled = NotStr(''' + +''') +icon_checkbox_indeterminate20_regular = NotStr(''' + +''') +icon_image_off20_filled = NotStr(''' + +''') +icon_phone_span_in16_filled = NotStr(''' + +''') +icon_document_table_arrow_right20_filled = NotStr(''' + +''') +icon_document_page_top_center24_filled = NotStr(''' + +''') +icon_bug20_regular = NotStr(''' + +''') +icon_tag_search24_regular = NotStr(''' + +''') +icon_calendar_pattern20_regular = NotStr(''' + +''') +icon_folder_prohibited24_regular = NotStr(''' + +''') +icon_panel_bottom_contract20_regular = NotStr(''' + +''') +icon_desktop_pulse28_regular = NotStr(''' + +''') +icon_document_sync20_regular = NotStr(''' + +''') +icon_weather_snow48_regular = NotStr(''' + +''') +icon_video_person_call16_filled = NotStr(''' + +''') +icon_emoji_sad_slight20_filled = NotStr(''' + +''') +icon_channel_subtract28_regular = NotStr(''' + +''') +icon_box_multiple_arrow_left20_regular = NotStr(''' + +''') +icon_pin20_filled = NotStr(''' + +''') +icon_chevron_left24_filled = NotStr(''' + +''') +icon_arrow_import24_regular = NotStr(''' + +''') +icon_folder_sync24_filled = NotStr(''' + +''') +icon_local_language16_filled = NotStr(''' + +''') +icon_cellular_data124_regular = NotStr(''' + +''') +icon_mic_off20_regular = NotStr(''' + +''') +icon_clipboard_heart20_filled = NotStr(''' + +''') +icon_multiselect_rtl24_filled = NotStr(''' + +''') +icon_home28_filled = NotStr(''' + +''') +icon_text_color_accent16_filled = NotStr(''' + +''') +icon_call_outbound28_regular = NotStr(''' + +''') +icon_vehicle_ship24_regular = NotStr(''' + +''') +icon_table_insert_column16_filled = NotStr(''' + +''') +icon_color_line24_filled = NotStr(''' + +''') +icon_window_apps20_filled = NotStr(''' + +''') +icon_eraser_medium24_regular = NotStr(''' + + + + + + +''') +icon_slide_search28_filled = NotStr(''' + +''') +icon_select_object_skew_dismiss20_regular = NotStr(''' + +''') +icon_clipboard_more24_regular = NotStr(''' + +''') +icon_table_link16_regular = NotStr(''' + +''') +icon_attach_arrow_right20_regular = NotStr(''' + +''') +icon_book_compass24_regular = NotStr(''' + +''') +icon_weather_snow20_regular = NotStr(''' + +''') +icon_call_forward16_filled = NotStr(''' + +''') +icon_tetris_app48_filled = NotStr(''' + +''') +icon_multiselect_ltr24_filled = NotStr(''' + +''') +icon_presence_oof10_regular = NotStr(''' + +''') +icon_briefcase_off48_filled = NotStr(''' + +''') +icon_battery320_filled = NotStr(''' + +''') +icon_text_box_settings20_regular = NotStr(''' + +''') +icon_chart_person24_regular = NotStr(''' + +''') +icon_column_arrow_right20_filled = NotStr(''' + +''') +icon_emoji_surprise20_filled = NotStr(''' + +''') +icon_calendar_question_mark20_filled = NotStr(''' + +''') +icon_view_desktop_mobile24_filled = NotStr(''' + +''') +icon_sticker12_regular = NotStr(''' + +''') +icon_phone_span_in24_regular = NotStr(''' + +''') +icon_wrench_screwdriver20_regular = NotStr(''' + +''') +icon_more_horizontal16_regular = NotStr(''' + +''') +icon_font_increase24_regular = NotStr(''' + +''') +icon_news20_filled = NotStr(''' + +''') +icon_full_screen_maximize20_filled = NotStr(''' + +''') +icon_building_bank_toolbox20_filled = NotStr(''' + +''') +icon_home_person20_filled = NotStr(''' + +''') +icon_building_retail_toolbox20_filled = NotStr(''' + +''') +icon_apps28_regular = NotStr(''' + +''') +icon_content_view32_regular = NotStr(''' + +''') +icon_expand_up_right20_regular = NotStr(''' + +''') +icon_convert_range20_filled = NotStr(''' + +''') +icon_arrow_circle_down32_filled = NotStr(''' + +''') +icon_pause20_filled = NotStr(''' + +''') +icon_arrow_sync_off12_filled = NotStr(''' + +''') +icon_camera_off20_regular = NotStr(''' + +''') +icon_slide_multiple24_filled = NotStr(''' + +''') +icon_fast_forward24_regular = NotStr(''' + +''') +icon_book_contacts32_regular = NotStr(''' + +''') +icon_call_prohibited24_filled = NotStr(''' + +''') +icon_drink_wine20_filled = NotStr(''' + +''') +icon_toolbox20_filled = NotStr(''' + +''') +icon_cellular_off20_filled = NotStr(''' + +''') +icon_local_language24_filled = NotStr(''' + +''') +icon_animal_cat16_filled = NotStr(''' + +''') +icon_tray_item_remove20_regular = NotStr(''' + +''') +icon_weather_snow_shower_day48_filled = NotStr(''' + +''') +icon_image_multiple24_regular = NotStr(''' + +''') +icon_premium16_regular = NotStr(''' + +''') +icon_briefcase_off20_filled = NotStr(''' + +''') +icon_document_table_checkmark20_regular = NotStr(''' + +''') +icon_circle12_regular = NotStr(''' + +''') +icon_clipboard_settings20_filled = NotStr(''' + +''') +icon_vehicle_car_collision28_regular = NotStr(''' + +''') +icon_clipboard_checkmark20_filled = NotStr(''' + +''') +icon_weather_sunny_high20_regular = NotStr(''' + +''') +icon_alert_snooze20_filled = NotStr(''' + +''') +icon_pin24_regular = NotStr(''' + +''') +icon_arrow_import20_regular = NotStr(''' + +''') +icon_person_arrow_left20_regular = NotStr(''' + +''') +icon_arrow_reply_all20_regular = NotStr(''' + +''') +icon_patch24_filled = NotStr(''' + +''') +icon_text_bullet_list_ltr24_filled = NotStr(''' + +''') +icon_globe24_filled = NotStr(''' + +''') +icon_launcher_settings24_filled = NotStr(''' + +''') +icon_archive20_filled = NotStr(''' + +''') +icon_video_person20_filled = NotStr(''' + +''') +icon_save_multiple24_filled = NotStr(''' + +''') +icon_shapes24_filled = NotStr(''' + +''') +icon_tab_desktop_image20_regular = NotStr(''' + +''') +icon_tag24_regular = NotStr(''' + +''') +icon_laptop_dismiss16_filled = NotStr(''' + +''') +icon_re_order_dots_vertical24_regular = NotStr(''' + +''') +icon_open_folder24_filled = NotStr(''' + +''') +icon_tag16_regular = NotStr(''' + +''') +icon_calendar_reply28_filled = NotStr(''' + +''') +icon_shopping_bag_tag20_filled = NotStr(''' + +''') +icon_slide_search28_regular = NotStr(''' + +''') +icon_table_dismiss20_filled = NotStr(''' + +''') +icon_arrow_step_in28_filled = NotStr(''' + +''') +icon_cloud_edit16_filled = NotStr(''' + +''') +icon_uninstall_app24_regular = NotStr(''' + +''') +icon_dual_screen20_filled = NotStr(''' + +''') +icon_arrow_clockwise16_regular = NotStr(''' + +''') +icon_vehicle_car_collision32_filled = NotStr(''' + +''') +icon_border_top_bottom_thick20_regular = NotStr(''' + +''') +icon_rename16_filled = NotStr(''' + +''') +icon_scan_dash48_filled = NotStr(''' + +''') +icon_clipboard_pulse20_regular = NotStr(''' + +''') +icon_cloud_sync28_regular = NotStr(''' + +''') +icon_align_center_vertical48_regular = NotStr(''' + +''') +icon_document_split_hint20_filled = NotStr(''' + +''') +icon_whiteboard48_filled = NotStr(''' + +''') +icon_drink_to_go24_regular = NotStr(''' + +''') +icon_compass_northwest28_regular = NotStr(''' + +''') +icon_drawer_arrow_download20_filled = NotStr(''' + +''') +icon_resize_image24_filled = NotStr(''' + +''') +icon_people_community24_filled = NotStr(''' + +''') +icon_arrow_export_rtl20_filled = NotStr(''' + +''') +icon_cellular_off24_filled = NotStr(''' + +''') +icon_next32_filled = NotStr(''' + +''') +icon_calendar3_day28_filled = NotStr(''' + +''') +icon_clock_arrow_download24_filled = NotStr(''' + +''') +icon_arrow_undo32_filled = NotStr(''' + +''') +icon_document_toolbox24_regular = NotStr(''' + +''') +icon_table_freeze_column_and_row16_regular = NotStr(''' + +''') +icon_skip_back1028_filled = NotStr(''' + +''') +icon_arrow_up28_filled = NotStr(''' + +''') +icon_fingerprint48_filled = NotStr(''' + +''') +icon_desktop_cursor20_regular = NotStr(''' + +''') +icon_math_symbols32_filled = NotStr(''' + +''') +icon_flash_settings24_filled = NotStr(''' + +''') +icon_star28_regular = NotStr(''' + +''') +icon_color_line_accent16_regular = NotStr(''' + +''') +icon_arrow_autofit_up24_regular = NotStr(''' + +''') +icon_textbox_rotate9024_filled = NotStr(''' + +''') +icon_slide_settings24_regular = NotStr(''' + +''') +icon_expand_up_left32_regular = NotStr(''' + +''') +icon_clipboard_data_bar24_regular = NotStr(''' + +''') +icon_weather_sunny32_regular = NotStr(''' + +''') +icon_bookmark_multiple24_filled = NotStr(''' + +''') +icon_speaker232_filled = NotStr(''' + +''') +icon_calendar_today28_filled = NotStr(''' + +''') +icon_lock_open16_regular = NotStr(''' + +''') +icon_slide_text48_filled = NotStr(''' + +''') +icon_calendar_edit24_regular = NotStr(''' + +''') +icon_calendar_checkmark16_regular = NotStr(''' + +''') +icon_text_field16_filled = NotStr(''' + +''') +icon_circle_off16_regular = NotStr(''' + +''') +icon_person_settings16_regular = NotStr(''' + +''') +icon_building_retail_money20_filled = NotStr(''' + +''') +icon_person_circle24_filled = NotStr(''' + +''') +icon_briefcase_medical16_regular = NotStr(''' + +''') +icon_mail_read24_regular = NotStr(''' + +''') +icon_arrow_routing_rectangle_multiple24_regular = NotStr(''' + +''') +icon_tray_item_remove20_filled = NotStr(''' + +''') +icon_mail_open_person24_regular = NotStr(''' + +''') +icon_dock_row24_filled = NotStr(''' + +''') +icon_arrow_step_over16_regular = NotStr(''' + +''') +icon_folder_link48_filled = NotStr(''' + +''') +icon_delete_dismiss20_regular = NotStr(''' + +''') +icon_video_sync20_regular = NotStr(''' + +''') +icon_eyedropper_off20_regular = NotStr(''' + +''') +icon_calendar_cancel16_regular = NotStr(''' + +''') +icon_text_paragraph_direction_left20_filled = NotStr(''' + +''') +icon_link_dismiss16_regular = NotStr(''' + +''') +icon_arrow_forward24_regular = NotStr(''' + +''') +icon_scan_thumb_up24_regular = NotStr(''' + +''') +icon_text_column_one24_filled = NotStr(''' + +''') +icon_square20_filled = NotStr(''' + +''') +icon_chevron_up20_regular = NotStr(''' + +''') +icon_chevron_circle_down16_filled = NotStr(''' + +''') +icon_channel_add48_filled = NotStr(''' + +''') +icon_filter_dismiss20_filled = NotStr(''' + +''') +icon_fps6024_regular = NotStr(''' + +''') +icon_send20_regular = NotStr(''' + +''') +icon_text_bullet_list_rtl20_regular = NotStr(''' + +''') +icon_blur28_regular = NotStr(''' + +''') +icon_communication20_regular = NotStr(''' + +''') +icon_play16_regular = NotStr(''' + +''') +icon_protocol_handler24_regular = NotStr(''' + +''') +icon_power20_filled = NotStr(''' + +''') +icon_clipboard_task20_filled = NotStr(''' + +''') +icon_person_board16_regular = NotStr(''' + +''') +icon_square_hint28_regular = NotStr(''' + +''') +icon_subtract20_filled = NotStr(''' + +''') +icon_pin32_filled = NotStr(''' + +''') +icon_comment_off24_regular = NotStr(''' + +''') +icon_eraser_medium24_filled = NotStr(''' + +''') +icon_cursor_hover16_filled = NotStr(''' + +''') +icon_mail_multiple20_regular = NotStr(''' + +''') +icon_slide_search24_filled = NotStr(''' + +''') +icon_cellular_warning20_regular = NotStr(''' + +''') +icon_text_grammar_checkmark20_filled = NotStr(''' + +''') +icon_text_indent_decrease_rtl20_filled = NotStr(''' + +''') +icon_patient32_filled = NotStr(''' + +''') +icon_library16_regular = NotStr(''' + +''') +icon_eraser_small24_regular = NotStr(''' + +''') +icon_arrow_fit16_regular = NotStr(''' + +''') +icon_people_checkmark24_filled = NotStr(''' + +''') +icon_table_cell_edit16_regular = NotStr(''' + +''') +icon_checkbox224_filled = NotStr(''' + + + + +''') +icon_read_aloud16_filled = NotStr(''' + +''') +icon_book_open20_regular = NotStr(''' + +''') +icon_caret_up20_regular = NotStr(''' + +''') +icon_table_move_above28_regular = NotStr(''' + +''') +icon_surface_earbuds20_regular = NotStr(''' + +''') +icon_people_swap16_filled = NotStr(''' + +''') +icon_door_tag24_regular = NotStr(''' + +''') +icon_share_screen_start24_filled = NotStr(''' + +''') +icon_box_toolbox20_filled = NotStr(''' + +''') +icon_arrow_sort_up16_regular = NotStr(''' + +''') +icon_table_delete_column24_filled = NotStr(''' + +''') +icon_alert32_filled = NotStr(''' + +''') +icon_arrow_swap20_regular = NotStr(''' + +''') +icon_folder_briefcase20_filled = NotStr(''' + +''') +icon_calendar_assistant20_regular = NotStr(''' + +''') +icon_text_number_format20_filled = NotStr(''' + +''') +icon_chevron_down12_filled = NotStr(''' + +''') +icon_book_arrow_clockwise24_filled = NotStr(''' + +''') +icon_calendar_star24_regular = NotStr(''' + +''') +icon_shape_intersect24_filled = NotStr(''' + +''') +icon_weather_rain_snow20_filled = NotStr(''' + +''') +icon_table_insert_row28_filled = NotStr(''' + +''') +icon_comment_dismiss20_regular = NotStr(''' + +''') +icon_autosum24_regular = NotStr(''' + +''') +icon_access_time20_filled = NotStr(''' + +''') +icon_call_inbound24_filled = NotStr(''' + +''') +icon_multiplier1_x24_filled = NotStr(''' + +''') +icon_cloud_sync16_regular = NotStr(''' + +''') +icon_document_add16_regular = NotStr(''' + +''') +icon_point_scan24_regular = NotStr(''' + +''') +icon_stack20_regular = NotStr(''' + +''') +icon_shifts_activity24_filled = NotStr(''' + +''') +icon_animal_cat28_filled = NotStr(''' + +''') +icon_video_chat16_regular = NotStr(''' + +''') +icon_backpack_add24_regular = NotStr(''' + +''') +icon_megaphone_loud24_filled = NotStr(''' + +''') +icon_content_settings24_regular = NotStr(''' + +''') +icon_document_queue_add20_filled = NotStr(''' + +''') +icon_checkbox_indeterminate16_regular = NotStr(''' + +''') +icon_weather_hail_day20_filled = NotStr(''' + +''') +icon_vault24_filled = NotStr(''' + +''') +icon_video_clip_multiple20_filled = NotStr(''' + +''') +icon_calculator_multiple24_regular = NotStr(''' + +''') +icon_caret_left20_filled = NotStr(''' + +''') +icon_text_change_case24_filled = NotStr(''' + +''') +icon_molecule16_regular = NotStr(''' + +''') +icon_video_person16_regular = NotStr(''' + +''') +icon_animal_cat28_regular = NotStr(''' + +''') +icon_tag_search20_filled = NotStr(''' + +''') +icon_dialpad28_regular = NotStr(''' + +''') +icon_textbox_align_top24_filled = NotStr(''' + +''') +icon_shortpick24_regular = NotStr(''' + +''') +icon_camera_dome20_regular = NotStr(''' + +''') +icon_document_error24_regular = NotStr(''' + +''') +icon_person_info16_regular = NotStr(''' + +''') +icon_textbox_align_top_rotate9020_regular = NotStr(''' + +''') +icon_folder48_regular = NotStr(''' + +''') +icon_megaphone24_filled = NotStr(''' + +''') +icon_square_arrow_forward20_filled = NotStr(''' + +''') +icon_people_team28_filled = NotStr(''' + +''') +icon_multiplier12_x48_filled = NotStr(''' + +''') +icon_document_page_break20_regular = NotStr(''' + +''') +icon_wrench16_regular = NotStr(''' + +''') +icon_document_link24_filled = NotStr(''' + +''') +icon_teddy20_regular = NotStr(''' + +''') +icon_data_pie24_regular = NotStr(''' + +''') +icon_arrow_download48_regular = NotStr(''' + +''') +icon_center_vertical20_regular = NotStr(''' + +''') +icon_alert_on20_regular = NotStr(''' + +''') +icon_people_team_add24_filled = NotStr(''' + +''') +icon_font_space_tracking_in28_filled = NotStr(''' + +''') +icon_line_dashes20_regular = NotStr(''' + +''') +icon_shape_intersect20_regular = NotStr(''' + +''') +icon_multiplier15_x28_filled = NotStr(''' + +''') +icon_expand_up_left48_regular = NotStr(''' + +''') +icon_math_symbols16_regular = NotStr(''' + +''') +icon_table_lightning28_regular = NotStr(''' + +''') +icon_data_line20_filled = NotStr(''' + +''') +icon_desktop_sync16_regular = NotStr(''' + +''') +icon_document_bullet_list_multiple24_regular = NotStr(''' + +''') +icon_people_team_delete24_filled = NotStr(''' + +''') +icon_clock48_regular = NotStr(''' + +''') +icon_person_feedback16_filled = NotStr(''' + +''') +icon_classification16_regular = NotStr(''' + +''') +icon_color_background20_filled = NotStr(''' + +''') +icon_text_bullet_list_ltr24_regular = NotStr(''' + +''') +icon_document_table_search20_filled = NotStr(''' + +''') +icon_briefcase24_filled = NotStr(''' + +''') +icon_design_ideas16_regular = NotStr(''' + +''') +icon_text_column_one_wide_lightning20_filled = NotStr(''' + +''') +icon_beach20_regular = NotStr(''' + +''') +icon_wallet20_filled = NotStr(''' + +''') +icon_mail_read28_regular = NotStr(''' + +''') +icon_panel_left_contract20_regular = NotStr(''' + +''') +icon_chevron_circle_left48_regular = NotStr(''' + +''') +icon_arrow_between_down20_filled = NotStr(''' + +''') +icon_comment_note24_regular = NotStr(''' + + + + +''') +icon_box_dismiss20_regular = NotStr(''' + +''') +icon_call_end16_regular = NotStr(''' + +''') +icon_toggle_left16_regular = NotStr(''' + +''') +icon_calendar_person20_regular = NotStr(''' + +''') +icon_book_compass20_regular = NotStr(''' + +''') +icon_molecule28_filled = NotStr(''' + +''') +icon_presence_away10_filled = NotStr(''' + +''') +icon_calendar_ltr20_filled = NotStr(''' + +''') +icon_breakout_room24_filled = NotStr(''' + +''') +icon_flash_auto24_regular = NotStr(''' + +''') +icon_caret_left24_regular = NotStr(''' + +''') +icon_document_chevron_double20_filled = NotStr(''' + +''') +icon_attach24_regular = NotStr(''' + +''') +icon_cart20_filled = NotStr(''' + +''') +icon_calendar3_day24_regular = NotStr(''' + +''') +icon_document_landscape_data24_regular = NotStr(''' + +''') +icon_dark_theme20_regular = NotStr(''' + +''') +icon_comment_note20_regular = NotStr(''' + +''') +icon_image_reflection24_filled = NotStr(''' + +''') +icon_call_park24_regular = NotStr(''' + +''') +icon_location_off24_filled = NotStr(''' + +''') +icon_math_formula32_regular = NotStr(''' + +''') +icon_add16_filled = NotStr(''' + +''') +icon_flip_vertical16_filled = NotStr(''' + +''') +icon_call_dismiss20_filled = NotStr(''' + +''') +icon_games32_filled = NotStr(''' + +''') +icon_text_case_lowercase20_regular = NotStr(''' + +''') +icon_clock_arrow_download24_regular = NotStr(''' + +''') +icon_battery_saver20_regular = NotStr(''' + +''') +icon_hand_right_off20_filled = NotStr(''' + +''') +icon_mail_checkmark20_regular = NotStr(''' + +''') +icon_battery820_regular = NotStr(''' + +''') +icon_dual_screen_vertical_scroll24_regular = NotStr(''' + +''') +icon_people_team20_filled = NotStr(''' + +''') +icon_calendar_info16_regular = NotStr(''' + +''') +icon_emoji_hand28_filled = NotStr(''' + +''') +icon_play_circle16_filled = NotStr(''' + +''') +icon_pill28_regular = NotStr(''' + +''') +icon_flip_vertical24_regular = NotStr(''' + +''') +icon_cart16_filled = NotStr(''' + +''') +icon_building_bank_link24_filled = NotStr(''' + +''') +icon_voicemail24_filled = NotStr(''' + +''') +icon_apps16_filled = NotStr(''' + +''') +icon_organization16_filled = NotStr(''' + +''') +icon_text_subscript24_regular = NotStr(''' + +''') +icon_text_grammar_dismiss24_filled = NotStr(''' + +''') +icon_text_footnote24_filled = NotStr(''' + +''') +icon_service_bell24_filled = NotStr(''' + +''') +icon_service_bell24_regular = NotStr(''' + +''') +icon_camera_dome28_filled = NotStr(''' + +''') +icon_contact_card_ribbon24_filled = NotStr(''' + +''') +icon_arrow_bidirectional_up_down12_filled = NotStr(''' + +''') +icon_share_screen_start20_regular = NotStr(''' + +''') +icon_projection_screen_dismiss28_filled = NotStr(''' + +''') +icon_calendar_pattern16_regular = NotStr(''' + +''') +icon_production_checkmark20_regular = NotStr(''' + +''') +icon_text_paragraph_direction_right16_filled = NotStr(''' + +''') +icon_note_pin16_regular = NotStr(''' + +''') +icon_checkbox_arrow_right20_regular = NotStr(''' + +''') +icon_shifts_day24_regular = NotStr(''' + +''') +icon_food_toast24_filled = NotStr(''' + +''') +icon_rotate_left24_filled = NotStr(''' + +''') +icon_drop16_regular = NotStr(''' + +''') +icon_xray24_regular = NotStr(''' + +''') +icon_ribbon_off12_regular = NotStr(''' + +''') +icon_table_move_above20_regular = NotStr(''' + +''') +icon_expand_up_right28_filled = NotStr(''' + +''') +icon_arrow_step_in_left24_filled = NotStr(''' + +''') +icon_accessibility28_filled = NotStr(''' + +''') +icon_textbox_align_middle_rotate9024_filled = NotStr(''' + +''') +icon_align_left28_regular = NotStr(''' + +''') +icon_pause20_regular = NotStr(''' + +''') +icon_line48_filled = NotStr(''' + +''') +icon_flag16_regular = NotStr(''' + +''') +icon_compose24_filled = NotStr(''' + +''') +icon_navigation_unread24_filled = NotStr(''' + +''') +icon_speaker_off20_regular = NotStr(''' + +''') +icon_mail_add24_regular = NotStr(''' + +''') +icon_table28_filled = NotStr(''' + +''') +icon_incognito24_filled = NotStr(''' + +''') +icon_center_vertical20_filled = NotStr(''' + +''') +icon_arrow_turn_right20_regular = NotStr(''' + +''') +icon_drop12_regular = NotStr(''' + +''') +icon_arrow_counterclockwise48_regular = NotStr(''' + +''') +icon_book_arrow_clockwise20_filled = NotStr(''' + +''') +icon_arrow_step_out12_filled = NotStr(''' + +''') +icon_location20_filled = NotStr(''' + +''') +icon_emoji_laugh20_filled = NotStr(''' + +''') +icon_dual_screen_tablet24_filled = NotStr(''' + +''') +icon_device_meeting_room24_filled = NotStr(''' + +''') +icon_tent48_filled = NotStr(''' + +''') +icon_decimal_arrow_left20_regular = NotStr(''' + +''') +icon_vote20_filled = NotStr(''' + +''') +icon_color_fill_accent20_regular = NotStr(''' + +''') +icon_globe_search20_filled = NotStr(''' + +''') +icon_dark_theme24_filled = NotStr(''' + +''') +icon_person_edit20_regular = NotStr(''' + +''') +icon_convert_range24_filled = NotStr(''' + +''') +icon_person_question_mark20_filled = NotStr(''' + +''') +icon_serial_port16_regular = NotStr(''' + +''') +icon_document_width24_regular = NotStr(''' + +''') +icon_cloud_checkmark48_regular = NotStr(''' + +''') +icon_flashlight20_filled = NotStr(''' + +''') +icon_document_ribbon48_filled = NotStr(''' + +''') +icon_component2_double_tap_swipe_up24_filled = NotStr(''' + +''') +icon_pin_off20_filled = NotStr(''' + +''') +icon_document_header20_regular = NotStr(''' + +''') +icon_globe_video32_regular = NotStr(''' + +''') +icon_circle_half_fill16_filled = NotStr(''' + +''') +icon_text_bullet_list_tree20_regular = NotStr(''' + +''') +icon_phone20_filled = NotStr(''' + +''') +icon_image_alt_text20_filled = NotStr(''' + +''') +icon_phone_laptop24_regular = NotStr(''' + +''') +icon_text_italic24_regular = NotStr(''' + +''') +icon_arrow_up_left20_regular = NotStr(''' + +''') +icon_toolbox24_regular = NotStr(''' + +''') +icon_phone24_filled = NotStr(''' + +''') +icon_calendar_settings16_regular = NotStr(''' + +''') +icon_tag_lock24_filled = NotStr(''' + +''') +icon_wallet48_filled = NotStr(''' + +''') +icon_share48_filled = NotStr(''' + +''') +icon_shifts_availability24_filled = NotStr(''' + +''') +icon_projection_screen_dismiss28_regular = NotStr(''' + +''') +icon_vehicle_truck20_regular = NotStr(''' + +''') +icon_math_symbols24_filled = NotStr(''' + +''') +icon_person_info20_regular = NotStr(''' + +''') +icon_arrow_trending_lines24_filled = NotStr(''' + +''') +icon_window28_filled = NotStr(''' + +''') +icon_person_support16_regular = NotStr(''' + +''') +icon_book_star24_regular = NotStr(''' + +''') +icon_calendar_mail20_filled = NotStr(''' + +''') +icon_text_t20_filled = NotStr(''' + +''') +icon_globe_search24_filled = NotStr(''' + +''') +icon_communication16_filled = NotStr(''' + +''') +icon_add_circle32_filled = NotStr(''' + +''') +icon_calendar_assistant20_filled = NotStr(''' + +''') +icon_window_new24_regular = NotStr(''' + +''') +icon_arrow_autofit_height_dotted20_regular = NotStr(''' + +''') +icon_text_column_two_right20_filled = NotStr(''' + +''') +icon_book_contacts28_filled = NotStr(''' + +''') +icon_star_prohibited24_regular = NotStr(''' + +''') +icon_tablet_speaker24_filled = NotStr(''' + + + + + + +''') +icon_location48_regular = NotStr(''' + +''') +icon_task_list_add20_regular = NotStr(''' + +''') +icon_textbox_align_middle_rotate9024_regular = NotStr(''' + +''') +icon_money_off24_filled = NotStr(''' + +''') +icon_people_add16_filled = NotStr(''' + +''') +icon_fluent48_regular = NotStr(''' + +''') +icon_swipe_up24_filled = NotStr(''' + +''') +icon_data_trending20_filled = NotStr(''' + +''') +icon_call_park16_filled = NotStr(''' + +''') +icon_square_dismiss20_regular = NotStr(''' + +''') +icon_timer48_regular = NotStr(''' + +''') +icon_clock_alarm20_filled = NotStr(''' + +''') +icon_weather_moon20_regular = NotStr(''' + +''') +icon_share_ios24_regular = NotStr(''' + +''') +icon_arrow_clockwise_dashes20_regular = NotStr(''' + +''') +icon_document_add28_filled = NotStr(''' + +''') +icon_call_dismiss24_filled = NotStr(''' + +''') +icon_font_space_tracking_in16_filled = NotStr(''' + +''') +icon_molecule28_regular = NotStr(''' + +''') +icon_cube20_filled = NotStr(''' + +''') +icon_people_list28_filled = NotStr(''' + +''') +icon_location_add16_filled = NotStr(''' + +''') +icon_building_retail_toolbox20_regular = NotStr(''' + +''') +icon_arrows_bidirectional24_filled = NotStr(''' + +''') +icon_app_folder20_regular = NotStr(''' + +''') +icon_money_calculator20_regular = NotStr(''' + +''') +icon_more_circle32_regular = NotStr(''' + +''') +icon_globe_clock20_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_day20_regular = NotStr(''' + +''') +icon_clear_formatting16_filled = NotStr(''' + +''') +icon_checkmark_circle16_regular = NotStr(''' + +''') +icon_comment_mention16_filled = NotStr(''' + +''') +icon_square_multiple16_regular = NotStr(''' + +''') +icon_mail_prohibited20_regular = NotStr(''' + +''') +icon_document_pdf16_regular = NotStr(''' + +''') +icon_position_to_front20_filled = NotStr(''' + +''') +icon_caret_down24_filled = NotStr(''' + +''') +icon_resize_small16_regular = NotStr(''' + +''') +icon_search16_filled = NotStr(''' + +''') +icon_door_arrow_left20_regular = NotStr(''' + +''') +icon_open20_filled = NotStr(''' + +''') +icon_number_symbol_square24_regular = NotStr(''' + +''') +icon_people_search24_filled = NotStr(''' + +''') +icon_call_end20_regular = NotStr(''' + +''') +icon_image_off24_regular = NotStr(''' + +''') +icon_arrow_curve_down_right20_filled = NotStr(''' + +''') +icon_headset24_regular = NotStr(''' + +''') +icon_table_dismiss20_regular = NotStr(''' + +''') +icon_backpack32_filled = NotStr(''' + +''') +icon_oval48_filled = NotStr(''' + +''') +icon_drawer_play20_filled = NotStr(''' + +''') +icon_play_circle48_regular = NotStr(''' + +''') +icon_mail_read16_filled = NotStr(''' + +''') +icon_usb_stick24_regular = NotStr(''' + +''') +icon_image_arrow_back24_regular = NotStr(''' + +''') +icon_star_add24_filled = NotStr(''' + +''') +icon_shifts32_filled = NotStr(''' + +''') +icon_chat_warning20_filled = NotStr(''' + +''') +icon_arrow_reply_all16_regular = NotStr(''' + +''') +icon_globe_clock24_regular = NotStr(''' + +''') +icon_timer32_regular = NotStr(''' + +''') +icon_call_outbound28_filled = NotStr(''' + +''') +icon_dual_screen_dismiss24_regular = NotStr(''' + +''') +icon_open_off20_regular = NotStr(''' + +''') +icon_channel_dismiss16_regular = NotStr(''' + +''') +icon_gift16_filled = NotStr(''' + +''') +icon_star_off12_regular = NotStr(''' + +''') +icon_flash_off24_regular = NotStr(''' + +''') +icon_vehicle_subway20_regular = NotStr(''' + +''') +icon_reading_list28_filled = NotStr(''' + +''') +icon_vehicle_cab16_filled = NotStr(''' + +''') +icon_weather_thunderstorm48_regular = NotStr(''' + +''') +icon_handshake20_regular = NotStr(''' + +''') +icon_food_toast16_filled = NotStr(''' + +''') +icon_open_off20_filled = NotStr(''' + +''') +icon_multiselect_rtl16_regular = NotStr(''' + +''') +icon_person_support20_filled = NotStr(''' + +''') +icon_subtract_circle12_regular = NotStr(''' + +''') +icon_rectangle_landscape16_regular = NotStr(''' + +''') +icon_checkmark12_filled = NotStr(''' + +''') +icon_circle_line24_filled = NotStr(''' + +''') +icon_person_lightbulb20_regular = NotStr(''' + +''') +icon_arrow_minimize20_filled = NotStr(''' + +''') +icon_weather_sunny24_filled = NotStr(''' + +''') +icon_star_dismiss24_filled = NotStr(''' + +''') +icon_person_edit24_filled = NotStr(''' + +''') +icon_directions20_regular = NotStr(''' + +''') +icon_book_coins24_regular = NotStr(''' + +''') +icon_shopping_bag20_regular = NotStr(''' + +''') +icon_more_horizontal48_regular = NotStr(''' + +''') +icon_table_link24_filled = NotStr(''' + +''') +icon_text_strikethrough24_regular = NotStr(''' + +''') +icon_arrow_sort24_regular = NotStr(''' + +''') +icon_clipboard_more24_filled = NotStr(''' + +''') +icon_position_backward24_filled = NotStr(''' + +''') +icon_book_coins24_filled = NotStr(''' + +''') +icon_document_search20_filled = NotStr(''' + +''') +icon_channel16_regular = NotStr(''' + +''') +icon_bookmark_search24_filled = NotStr(''' + +''') +icon_text_align_distributed_evenly20_filled = NotStr(''' + +''') +icon_note28_filled = NotStr(''' + +''') +icon_target_edit16_filled = NotStr(''' + +''') +icon_shopping_bag_percent24_filled = NotStr(''' + +''') +icon_chat_video24_filled = NotStr(''' + +''') +icon_smartwatch20_filled = NotStr(''' + +''') +icon_tag20_filled = NotStr(''' + +''') +icon_text_italic16_regular = NotStr(''' + +''') +icon_shield_prohibited24_regular = NotStr(''' + +''') +icon_star_three_quarter28_filled = NotStr(''' + +''') +icon_task_list_square_ltr24_filled = NotStr(''' + +''') +icon_projection_screen_dismiss20_regular = NotStr(''' + +''') +icon_approvals_app32_filled = NotStr(''' + +''') +icon_phone_update24_filled = NotStr(''' + +''') +icon_square_hint24_filled = NotStr(''' + +''') +icon_premium28_regular = NotStr(''' + +''') +icon_wand28_filled = NotStr(''' + +''') +icon_shopping_bag16_regular = NotStr(''' + +''') +icon_fps24020_filled = NotStr(''' + +''') +icon_star24_filled = NotStr(''' + +''') +icon_align_top32_filled = NotStr(''' + +''') +icon_arrow_counterclockwise16_regular = NotStr(''' + +''') +icon_cloud_dismiss32_filled = NotStr(''' + +''') +icon_number_symbol_dismiss24_filled = NotStr(''' + +''') +icon_text_italic16_filled = NotStr(''' + +''') +icon_person_clock16_filled = NotStr(''' + +''') +icon_text_direction_vertical20_filled = NotStr(''' + +''') +icon_star12_filled = NotStr(''' + +''') +icon_comment_arrow_right48_filled = NotStr(''' + +''') +icon_scan_thumb_up_off28_filled = NotStr(''' + +''') +icon_trophy28_regular = NotStr(''' + +''') +icon_calendar_reply16_regular = NotStr(''' + +''') +icon_time_picker24_filled = NotStr(''' + +''') +icon_expand_up_right48_filled = NotStr(''' + +''') +icon_location_dismiss24_filled = NotStr(''' + +''') +icon_document_page_top_right24_filled = NotStr(''' + +''') +icon_app_title24_regular = NotStr(''' + +''') +icon_phone_checkmark16_filled = NotStr(''' + +''') +icon_double_tap_swipe_up24_regular = NotStr(''' + +''') +icon_important16_filled = NotStr(''' + +''') +icon_notepad32_regular = NotStr(''' + +''') +icon_attach_arrow_right24_regular = NotStr(''' + +''') +icon_panel_left28_filled = NotStr(''' + +''') +icon_ribbon_off20_filled = NotStr(''' + +''') +icon_cookies20_filled = NotStr(''' + +''') +icon_globe_video24_regular = NotStr(''' + +''') +icon_closed_caption48_filled = NotStr(''' + +''') +icon_table_delete_column20_filled = NotStr(''' + +''') +icon_calendar_mail20_regular = NotStr(''' + +''') +icon_arrow_step_in_left12_filled = NotStr(''' + +''') +icon_text_bullet_list_square20_filled = NotStr(''' + +''') +icon_edit_off24_filled = NotStr(''' + +''') +icon_camera28_regular = NotStr(''' + +''') +icon_tab_desktop_image16_filled = NotStr(''' + +''') +icon_home_checkmark16_regular = NotStr(''' + +''') +icon_person_circle20_filled = NotStr(''' + +''') +icon_desktop_arrow_right24_regular = NotStr(''' + +''') +icon_people_checkmark16_regular = NotStr(''' + +''') +icon_error_circle16_filled = NotStr(''' + +''') +icon_location_live20_filled = NotStr(''' + +''') +icon_money_hand24_regular = NotStr(''' + +''') +icon_text_column_one_wide_lightning20_regular = NotStr(''' + +''') +icon_slide_arrow_right24_regular = NotStr(''' + +''') +icon_folder_sync16_regular = NotStr(''' + +''') +icon_table_move_right16_filled = NotStr(''' + +''') +icon_apps_add_in28_filled = NotStr(''' + +''') +icon_shield28_regular = NotStr(''' + +''') +icon_task_list_add24_regular = NotStr(''' + +''') +icon_window_wrench48_regular = NotStr(''' + +''') +icon_clipboard_code24_filled = NotStr(''' + +''') +icon_sound_wave_circle24_filled = NotStr(''' + +''') +icon_weather_blowing_snow24_filled = NotStr(''' + +''') +icon_arrow_minimize_vertical20_filled = NotStr(''' + +''') +icon_link_dismiss20_filled = NotStr(''' + +''') +icon_arrow_circle_down_up20_regular = NotStr(''' + +''') +icon_line_style24_filled = NotStr(''' + + + + + + + +''') +icon_border_top_bottom_thick24_regular = NotStr(''' + +''') +icon_text_t24_filled = NotStr(''' + +''') +icon_math_formula16_filled = NotStr(''' + + + + +''') +icon_document_link16_regular = NotStr(''' + +''') +icon_keyboard_shift24_regular = NotStr(''' + +''') +icon_folder_arrow_up20_regular = NotStr(''' + +''') +icon_backpack48_regular = NotStr(''' + +''') +icon_fps6048_regular = NotStr(''' + +''') +icon_tag_question_mark24_filled = NotStr(''' + +''') +icon_window_apps24_regular = NotStr(''' + +''') +icon_mail_pause20_filled = NotStr(''' + +''') +icon_arrow_rotate_counterclockwise20_regular = NotStr(''' + +''') +icon_currency_dollar_rupee16_filled = NotStr(''' + +''') +icon_text_grammar_checkmark24_filled = NotStr(''' + +''') +icon_chevron_right12_regular = NotStr(''' + +''') +icon_box_multiple_checkmark20_regular = NotStr(''' + +''') +icon_sparkle20_filled = NotStr(''' + +''') +icon_drink_wine20_regular = NotStr(''' + +''') +icon_arrow_trending_settings20_regular = NotStr(''' + +''') +icon_balloon12_filled = NotStr(''' + +''') +icon_voicemail_subtract16_filled = NotStr(''' + +''') +icon_video_prohibited16_regular = NotStr(''' + +''') +icon_more_horizontal24_regular = NotStr(''' + +''') +icon_vehicle_bus24_filled = NotStr(''' + +''') +icon_eye_off24_filled = NotStr(''' + +''') +icon_desktop_keyboard16_filled = NotStr(''' + +''') +icon_arrow_circle_left24_filled = NotStr(''' + +''') +icon_document_pdf20_regular = NotStr(''' + +''') +icon_folder_link24_filled = NotStr(''' + +''') +icon_folder_arrow_up24_filled = NotStr(''' + +''') +icon_panel_right20_regular = NotStr(''' + +''') +icon_contract_down_left24_regular = NotStr(''' + +''') +icon_location_off16_regular = NotStr(''' + +''') +icon_table_cells_merge16_filled = NotStr(''' + +''') +icon_caret_down24_regular = NotStr(''' + +''') +icon_arrow_curve_down_left16_regular = NotStr(''' + +''') +icon_comment_arrow_right24_regular = NotStr(''' + +''') +icon_mic_settings24_filled = NotStr(''' + +''') +icon_calendar_chat24_regular = NotStr(''' + +''') +icon_sim16_regular = NotStr(''' + +''') +icon_radio_button20_filled = NotStr(''' + +''') +icon_weather_rain_showers_night48_regular = NotStr(''' + +''') +icon_read_aloud28_filled = NotStr(''' + +''') +icon_board_split24_filled = NotStr(''' + +''') +icon_document_question_mark24_regular = NotStr(''' + +''') +icon_weather_sunny28_filled = NotStr(''' + +''') +icon_calendar_week_start28_filled = NotStr(''' + +''') +icon_text_position_square24_filled = NotStr(''' + +''') +icon_align_top16_filled = NotStr(''' + +''') +icon_shield_lock28_regular = NotStr(''' + +''') +icon_person_voice20_regular = NotStr(''' + +''') +icon_briefcase16_filled = NotStr(''' + +''') +icon_bookmark_add24_filled = NotStr(''' + +''') +icon_whiteboard48_regular = NotStr(''' + +''') +icon_scale_fit20_filled = NotStr(''' + +''') +icon_briefcase_off32_regular = NotStr(''' + +''') +icon_circle24_filled = NotStr(''' + +''') +icon_broad_activity_feed24_regular = NotStr(''' + +''') +icon_mail_inbox_dismiss20_regular = NotStr(''' + +''') +icon_comment12_regular = NotStr(''' + +''') +icon_settings20_filled = NotStr(''' + +''') +icon_brightness_low16_filled = NotStr(''' + +''') +icon_document_arrow_left48_regular = NotStr(''' + +''') +icon_cloud_words20_filled = NotStr(''' + +''') +icon_javascript24_filled = NotStr(''' + +''') +icon_archive28_filled = NotStr(''' + +''') +icon_wand48_regular = NotStr(''' + +''') +icon_clipboard_data_bar20_filled = NotStr(''' + +''') +icon_window_shield20_filled = NotStr(''' + +''') +icon_tag16_filled = NotStr(''' + +''') +icon_open28_regular = NotStr(''' + +''') +icon_flag_pride28_filled = NotStr(''' + + + + + + + + + + +''') +icon_briefcase32_regular = NotStr(''' + +''') +icon_tasks_app24_regular = NotStr(''' + +''') +icon_dismiss_square_multiple20_filled = NotStr(''' + +''') +icon_checkbox_checked24_filled = NotStr(''' + +''') +icon_device_meeting_room16_filled = NotStr(''' + +''') +icon_panel_left_contract20_filled = NotStr(''' + +''') +icon_bookmark_multiple32_filled = NotStr(''' + +''') +icon_border_top_bottom20_regular = NotStr(''' + +''') +icon_window_shield16_regular = NotStr(''' + +''') +icon_status24_regular = NotStr(''' + +''') +icon_leaf_two24_regular = NotStr(''' + +''') +icon_sim24_filled = NotStr(''' + +''') +icon_data_sunburst20_filled = NotStr(''' + +''') +icon_draw_shape24_regular = NotStr(''' + +''') +icon_globe_video48_filled = NotStr(''' + +''') +icon_rhombus24_regular = NotStr(''' + +''') +icon_open_folder24_regular = NotStr(''' + +''') +icon_receipt_bag20_filled = NotStr(''' + +''') +icon_my_location20_regular = NotStr(''' + +''') +icon_building_factory24_regular = NotStr(''' + +''') +icon_mail_unread24_regular = NotStr(''' + +''') +icon_wifi224_regular = NotStr(''' + +''') +icon_book_question_mark_rtl20_regular = NotStr(''' + +''') +icon_filter24_regular = NotStr(''' + +''') +icon_document_footer24_filled = NotStr(''' + +''') +icon_document_queue20_filled = NotStr(''' + +''') +icon_paint_brush24_filled = NotStr(''' + +''') +icon_star_add28_filled = NotStr(''' + +''') +icon_presence_available10_regular = NotStr(''' + +''') +icon_delete_off24_regular = NotStr(''' + +''') +icon_table_move_left28_regular = NotStr(''' + +''') +icon_question24_regular = NotStr(''' + +''') +icon_text_box_settings24_filled = NotStr(''' + +''') +icon_phone_add24_filled = NotStr(''' + +''') +icon_checkbox_checked16_filled = NotStr(''' + +''') +icon_book_number20_filled = NotStr(''' + +''') +icon_people_money20_filled = NotStr(''' + +''') +icon_weather_rain48_filled = NotStr(''' + +''') +icon_table_move_left20_regular = NotStr(''' + +''') +icon_mail_dismiss20_regular = NotStr(''' + +''') +icon_clock32_filled = NotStr(''' + +''') +icon_text_align_distributed_evenly20_regular = NotStr(''' + +''') +icon_database24_filled = NotStr(''' + +''') +icon_cursor_hover_off24_regular = NotStr(''' + +''') +icon_navigation16_filled = NotStr(''' + +''') +icon_folder_swap24_regular = NotStr(''' + +''') +icon_arrow_down12_regular = NotStr(''' + +''') +icon_crop24_filled = NotStr(''' + +''') +icon_animal_cat20_regular = NotStr(''' + +''') +icon_comment_dismiss24_filled = NotStr(''' + +''') +icon_share_screen_person28_filled = NotStr(''' + +''') +icon_mic_off12_filled = NotStr(''' + +''') +icon_alert_snooze20_regular = NotStr(''' + +''') +icon_cursor_hover_off48_filled = NotStr(''' + +''') +icon_eye_tracking_off20_regular = NotStr(''' + +''') +icon_select_object_skew_edit20_regular = NotStr(''' + +''') +icon_call_connecting20_filled = NotStr(''' + +''') +icon_lightbulb_filament20_filled = NotStr(''' + +''') +icon_arrow_enter_up20_regular = NotStr(''' + +''') +icon_border_top_bottom_double20_regular = NotStr(''' + +''') +icon_table_move_right20_regular = NotStr(''' + +''') +icon_comment_multiple24_filled = NotStr(''' + +''') +icon_folder_arrow_right20_regular = NotStr(''' + +''') +icon_arrow_maximize_vertical20_filled = NotStr(''' + +''') +icon_cloud_dismiss16_filled = NotStr(''' + +''') +icon_cube_rotate20_regular = NotStr(''' + +''') +icon_arrow_trending20_filled = NotStr(''' + +''') +icon_color_fill_accent28_regular = NotStr(''' + +''') +icon_border_left20_filled = NotStr(''' + +''') +icon_row_triple24_regular = NotStr(''' + +''') +icon_comment_add12_filled = NotStr(''' + +''') +icon_home16_regular = NotStr(''' + +''') +icon_sign_out20_regular = NotStr(''' + +''') +icon_number_symbol48_regular = NotStr(''' + +''') +icon_arrow_enter_up24_regular = NotStr(''' + +''') +icon_book_open_globe24_regular = NotStr(''' + + + + + + + + + +''') +icon_person_chat24_filled = NotStr(''' + +''') +icon_border_all20_regular = NotStr(''' + +''') +icon_checkmark_lock24_regular = NotStr(''' + +''') +icon_video_off32_filled = NotStr(''' + +''') +icon_classification16_filled = NotStr(''' + +''') +icon_classification20_filled = NotStr(''' + +''') +icon_signature24_regular = NotStr(''' + +''') +icon_textbox_align_middle20_filled = NotStr(''' + +''') +icon_arrow_export_rtl24_filled = NotStr(''' + +''') +icon_link_edit16_regular = NotStr(''' + +''') +icon_clipboard_letter16_filled = NotStr(''' + + + + +''') +icon_battery1020_regular = NotStr(''' + +''') +icon_screenshot20_regular = NotStr(''' + +''') +icon_cloud_arrow_down28_filled = NotStr(''' + +''') +icon_content_view20_filled = NotStr(''' + +''') +icon_line_dashes32_filled = NotStr(''' + +''') +icon_book_exclamation_mark20_filled = NotStr(''' + +''') +icon_arrow_circle_down12_regular = NotStr(''' + +''') +icon_vehicle_truck_cube20_regular = NotStr(''' + +''') +icon_align_top48_regular = NotStr(''' + +''') +icon_add_circle16_regular = NotStr(''' + + + + +''') +icon_document_css24_filled = NotStr(''' + +''') +icon_document_copy24_filled = NotStr(''' + +''') +icon_record48_filled = NotStr(''' + +''') +icon_rhombus32_filled = NotStr(''' + +''') +icon_headset32_regular = NotStr(''' + +''') +icon_clipboard_task_list_rtl24_regular = NotStr(''' + +''') +icon_chat_dismiss20_filled = NotStr(''' + +''') +icon_record_stop20_filled = NotStr(''' + +''') +icon_desktop_signal24_filled = NotStr(''' + +''') +icon_mail_error20_regular = NotStr(''' + +''') +icon_document_landscape_data20_regular = NotStr(''' + +''') +icon_dismiss_circle12_filled = NotStr(''' + +''') +icon_page_fit24_regular = NotStr(''' + +''') +icon_cellular5_g24_filled = NotStr(''' + + + + + + + + + +''') +icon_table_resize_row24_filled = NotStr(''' + +''') +icon_arrow_download24_filled = NotStr(''' + +''') +icon_phone_pagination24_filled = NotStr(''' + +''') +icon_drawer_play24_filled = NotStr(''' + +''') +icon_flip_horizontal24_filled = NotStr(''' + +''') +icon_text_position_line20_regular = NotStr(''' + +''') +icon_drink_wine16_filled = NotStr(''' + +''') +icon_signature20_regular = NotStr(''' + +''') +icon_brain_circuit20_regular = NotStr(''' + +''') +icon_panel_top_contract20_regular = NotStr(''' + +''') +icon_color_line16_filled = NotStr(''' + +''') +icon_emoji_add24_filled = NotStr(''' + +''') +icon_phone_vertical_scroll24_filled = NotStr(''' + +''') +icon_contact_card24_regular = NotStr(''' + +''') +icon_sparkle28_filled = NotStr(''' + +''') +icon_stream24_regular = NotStr(''' + +''') +icon_text_continuous24_regular = NotStr(''' + +''') +icon_share_screen_person_overlay20_filled = NotStr(''' + +''') +icon_text_grammar_arrow_left24_regular = NotStr(''' + +''') +icon_box_edit20_regular = NotStr(''' + +''') +icon_chat_settings24_filled = NotStr(''' + +''') +icon_building_bank_toolbox20_regular = NotStr(''' + +''') +icon_picture_in_picture_exit20_regular = NotStr(''' + +''') +icon_cloud_words32_filled = NotStr(''' + +''') +icon_certificate20_regular = NotStr(''' + +''') +icon_text_grammar_wand16_regular = NotStr(''' + +''') +icon_chevron_circle_left28_filled = NotStr(''' + +''') +icon_text_font_info16_filled = NotStr(''' + +''') +icon_prohibited24_filled = NotStr(''' + +''') +icon_cloud_off28_filled = NotStr(''' + +''') +icon_tab_desktop_image16_regular = NotStr(''' + +''') +icon_bookmark28_filled = NotStr(''' + +''') +icon_calendar_month28_filled = NotStr(''' + +''') +icon_document_margins24_regular = NotStr(''' + +''') +icon_circle_off16_filled = NotStr(''' + +''') +icon_broom16_regular = NotStr(''' + +''') +icon_arrow_counterclockwise12_regular = NotStr(''' + +''') +icon_folder_prohibited28_filled = NotStr(''' + +''') +icon_person_swap16_regular = NotStr(''' + +''') +icon_scan_object20_filled = NotStr(''' + +''') +icon_eye20_filled = NotStr(''' + +''') +icon_document_lock24_regular = NotStr(''' + +''') +icon_people_call16_regular = NotStr(''' + +''') +icon_desktop_signal24_regular = NotStr(''' + +''') +icon_bookmark_off20_regular = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise24_regular = NotStr(''' + +''') +icon_pause24_filled = NotStr(''' + +''') +icon_icons20_regular = NotStr(''' + +''') +icon_rectangle_landscape32_regular = NotStr(''' + +''') +icon_arrow_swap20_filled = NotStr(''' + +''') +icon_text_grammar_arrow_right20_regular = NotStr(''' + +''') +icon_warning_shield20_regular = NotStr(''' + + + + + + +''') +icon_briefcase_off28_filled = NotStr(''' + +''') +icon_bin_full20_filled = NotStr(''' + +''') +icon_book_contacts20_regular = NotStr(''' + +''') +icon_call_inbound16_filled = NotStr(''' + +''') +icon_oval32_regular = NotStr(''' + +''') +icon_wrench_screwdriver24_regular = NotStr(''' + +''') +icon_arrows_bidirectional24_regular = NotStr(''' + +''') +icon_pill24_regular = NotStr(''' + +''') +icon_window32_regular = NotStr(''' + +''') +icon_arrow_step_in_right28_filled = NotStr(''' + +''') +icon_drop48_regular = NotStr(''' + +''') +icon_tab_desktop_copy20_filled = NotStr(''' + +''') +icon_production24_filled = NotStr(''' + +''') +icon_book_globe24_regular = NotStr(''' + +''') +icon_patch24_regular = NotStr(''' + +''') +icon_tetris_app28_filled = NotStr(''' + +''') +icon_arrow_bidirectional_up_down12_regular = NotStr(''' + +''') +icon_number_row20_filled = NotStr(''' + +''') +icon_person_clock16_regular = NotStr(''' + +''') +icon_transmission24_regular = NotStr(''' + +''') +icon_text_grammar_arrow_left24_filled = NotStr(''' + +''') +icon_shapes16_regular = NotStr(''' + +''') +icon_chat_dismiss16_filled = NotStr(''' + +''') +icon_text_subscript20_filled = NotStr(''' + +''') +icon_board_heart24_regular = NotStr(''' + +''') +icon_document_arrow_right24_filled = NotStr(''' + + + + + +''') +icon_padding_left24_filled = NotStr(''' + +''') +icon_sport_basketball24_filled = NotStr(''' + +''') +icon_tab_inprivate_account20_filled = NotStr(''' + +''') +icon_rotate_right24_filled = NotStr(''' + +''') +icon_location_add20_filled = NotStr(''' + +''') +icon_smartwatch_dot24_regular = NotStr(''' + +''') +icon_emoji_meh24_filled = NotStr(''' + +''') +icon_text_quote20_regular = NotStr(''' + +''') +icon_lasso24_filled = NotStr(''' + +''') +icon_chevron_down48_filled = NotStr(''' + +''') +icon_payment24_filled = NotStr(''' + +''') +icon_align_top20_regular = NotStr(''' + +''') +icon_guitar24_filled = NotStr(''' + +''') +icon_calligraphy_pen20_filled = NotStr(''' + +''') +icon_blur16_regular = NotStr(''' + +''') +icon_document_flowchart24_regular = NotStr(''' + +''') +icon_stack20_filled = NotStr(''' + +''') +icon_align_space_fit_vertical20_filled = NotStr(''' + + + + +''') +icon_circle_half_fill12_filled = NotStr(''' + +''') +icon_square_hint_apps20_filled = NotStr(''' + +''') +icon_sport_baseball24_regular = NotStr(''' + +''') +icon_mobile_optimized24_filled = NotStr(''' + +''') +icon_drawer_dismiss24_filled = NotStr(''' + +''') +icon_battery_charge20_filled = NotStr(''' + +''') +icon_movies_and_tv16_filled = NotStr(''' + +''') +icon_call_park20_filled = NotStr(''' + +''') +icon_headphones20_filled = NotStr(''' + +''') +icon_box_dismiss24_filled = NotStr(''' + +''') +icon_mail_edit24_regular = NotStr(''' + +''') +icon_timer324_filled = NotStr(''' + + + + + + +''') +icon_mic_off24_regular = NotStr(''' + +''') +icon_document_flowchart24_filled = NotStr(''' + +''') +icon_calendar_reply28_regular = NotStr(''' + +''') +icon_document_page_break24_regular = NotStr(''' + +''') +icon_chevron_circle_down24_filled = NotStr(''' + +''') +icon_mail_inbox24_regular = NotStr(''' + +''') +icon_tab_desktop_new_page20_filled = NotStr(''' + +''') +icon_bluetooth_disabled24_filled = NotStr(''' + +''') +icon_chat_off24_regular = NotStr(''' + + + + + +''') +icon_weather_sunny_low24_regular = NotStr(''' + +''') +icon_plug_disconnected24_filled = NotStr(''' + +''') +icon_arrow_move_inward20_filled = NotStr(''' + +''') +icon_share_android20_filled = NotStr(''' + +''') +icon_document_question_mark16_regular = NotStr(''' + +''') +icon_weather_squalls20_regular = NotStr(''' + +''') +icon_bluetooth_connected24_filled = NotStr(''' + +''') +icon_text_sort_descending20_filled = NotStr(''' + +''') +icon_arrow_circle_down28_regular = NotStr(''' + +''') +icon_align_stretch_vertical20_regular = NotStr(''' + + + + + + +''') +icon_mail_alert16_filled = NotStr(''' + +''') +icon_book_information20_regular = NotStr(''' + +''') +icon_chat_warning20_regular = NotStr(''' + +''') +icon_arrow_reply_down16_regular = NotStr(''' + +''') +icon_weather_sunny_high20_filled = NotStr(''' + +''') +icon_accessibility48_regular = NotStr(''' + +''') +icon_arrow_undo20_regular = NotStr(''' + +''') +icon_calendar_cancel24_regular = NotStr(''' + +''') +icon_arrow_curve_down_left16_filled = NotStr(''' + +''') +icon_auto_fit_width20_filled = NotStr(''' + +''') +icon_currency_dollar_euro20_regular = NotStr(''' + +''') +icon_location_off24_regular = NotStr(''' + +''') +icon_calendar_empty24_regular = NotStr(''' + +''') +icon_closed_caption_off48_filled = NotStr(''' + +''') +icon_cloud_words24_filled = NotStr(''' + +''') +icon_arrow_curve_up_right20_regular = NotStr(''' + +''') +icon_calculator_multiple20_regular = NotStr(''' + +''') +icon_tab_in_private28_regular = NotStr(''' + +''') +icon_drawer_dismiss20_regular = NotStr(''' + +''') +icon_home_add24_filled = NotStr(''' + +''') +icon_document_page_number24_regular = NotStr(''' + +''') +icon_eye_tracking20_filled = NotStr(''' + +''') +icon_mail_arrow_up20_regular = NotStr(''' + +''') +icon_arrow_down28_filled = NotStr(''' + +''') +icon_diversity20_regular = NotStr(''' + +''') +icon_share_screen_person_overlay16_regular = NotStr(''' + +''') +icon_mail_clock24_regular = NotStr(''' + +''') +icon_call_prohibited48_filled = NotStr(''' + +''') +icon_cloud_link16_regular = NotStr(''' + +''') +icon_building_government20_regular = NotStr(''' + +''') +icon_gift_card_add24_regular = NotStr(''' + +''') +icon_contact_card_group16_filled = NotStr(''' + +''') +icon_emoji_sparkle28_regular = NotStr(''' + +''') +icon_contact_card16_filled = NotStr(''' + +''') +icon_video_security24_regular = NotStr(''' + +''') +icon_document_copy16_regular = NotStr(''' + +''') +icon_flip_vertical20_regular = NotStr(''' + +''') +icon_calendar_day24_regular = NotStr(''' + +''') +icon_mail_prohibited16_regular = NotStr(''' + +''') +icon_document_split_hint16_regular = NotStr(''' + +''') +icon_calendar_empty16_filled = NotStr(''' + +''') +icon_share_screen_stop16_filled = NotStr(''' + +''') +icon_chat_off20_filled = NotStr(''' + + + + +''') +icon_headphones_sound_wave24_regular = NotStr(''' + +''') +icon_arrow_up_right20_regular = NotStr(''' + +''') +icon_arrow_hook_up_left16_filled = NotStr(''' + +''') +icon_scan24_filled = NotStr(''' + +''') +icon_resize20_filled = NotStr(''' + +''') +icon_table_settings28_regular = NotStr(''' + +''') +icon_desktop_sync24_regular = NotStr(''' + +''') +icon_caret_down_right16_filled = NotStr(''' + +''') +icon_mail_alert24_filled = NotStr(''' + +''') +icon_star28_filled = NotStr(''' + +''') +icon_filter16_regular = NotStr(''' + +''') +icon_tab_add24_filled = NotStr(''' + +''') +icon_toolbox16_filled = NotStr(''' + +''') +icon_align_center_horizontal48_filled = NotStr(''' + +''') +icon_zoom_out24_regular = NotStr(''' + +''') +icon_presence_unknown10_regular = NotStr(''' + +''') +icon_power24_regular = NotStr(''' + +''') +icon_previous24_filled = NotStr(''' + +''') +icon_prohibited24_regular = NotStr(''' + +''') +icon_my_location16_regular = NotStr(''' + +''') +icon_diamond24_filled = NotStr(''' + +''') +icon_phone_span_in20_filled = NotStr(''' + +''') +icon_save_edit24_regular = NotStr(''' + +''') +icon_wrench24_filled = NotStr(''' + +''') +icon_dismiss_circle24_regular = NotStr(''' + +''') +icon_javascript20_regular = NotStr(''' + +''') +icon_chevron_down12_regular = NotStr(''' + +''') +icon_arrow_trending_wrench24_filled = NotStr(''' + +''') +icon_arrow_sort_down24_regular = NotStr(''' + +''') +icon_glasses_off48_regular = NotStr(''' + +''') +icon_cursor_hover_off24_filled = NotStr(''' + +''') +icon_calendar_settings16_filled = NotStr(''' + +''') +icon_text_align_distributed_vertical24_regular = NotStr(''' + +''') +icon_text_quote24_regular = NotStr(''' + +''') +icon_document_pill24_regular = NotStr(''' + +''') +icon_chevron_down24_filled = NotStr(''' + +''') +icon_calendar_agenda28_regular = NotStr(''' + +''') +icon_color_fill24_filled = NotStr(''' + +''') +icon_arrow_step_in_right24_regular = NotStr(''' + +''') +icon_record48_regular = NotStr(''' + +''') +icon_cloud_link20_filled = NotStr(''' + +''') +icon_tablet24_filled = NotStr(''' + +''') +icon_re_order_dots_horizontal20_regular = NotStr(''' + +''') +icon_table_add28_regular = NotStr(''' + +''') +icon_arrow_right20_filled = NotStr(''' + +''') +icon_align_start_horizontal20_regular = NotStr(''' + + + + +''') +icon_trophy24_regular = NotStr(''' + +''') +icon_target_arrow24_filled = NotStr(''' + +''') +icon_slide_settings24_filled = NotStr(''' + +''') +icon_folder_link20_regular = NotStr(''' + +''') +icon_checkmark_square24_filled = NotStr(''' + +''') +icon_heart48_filled = NotStr(''' + +''') +icon_toggle_right28_regular = NotStr(''' + +''') +icon_door28_regular = NotStr(''' + +''') +icon_more_circle20_filled = NotStr(''' + +''') +icon_link_dismiss24_regular = NotStr(''' + +''') +icon_position_to_back20_filled = NotStr(''' + +''') +icon_cellular3_g24_regular = NotStr(''' + + + + + + + + + +''') +icon_web_asset24_regular = NotStr(''' + +''') +icon_arrow_circle_down20_regular = NotStr(''' + +''') +icon_patient24_filled = NotStr(''' + +''') +icon_call_end24_filled = NotStr(''' + +''') +icon_play12_regular = NotStr(''' + +''') +icon_toggle_right24_regular = NotStr(''' + +''') +icon_call_outbound24_filled = NotStr(''' + +''') +icon_earth16_regular = NotStr(''' + +''') +icon_mail_arrow_double_back16_filled = NotStr(''' + +''') +icon_calendar_work_week24_filled = NotStr(''' + +''') +icon_border_bottom_double20_filled = NotStr(''' + +''') +icon_more_horizontal24_filled = NotStr(''' + +''') +icon_leaf_two20_filled = NotStr(''' + +''') +icon_translate24_filled = NotStr(''' + +''') +icon_cloud_edit16_regular = NotStr(''' + +''') +icon_tablet48_filled = NotStr(''' + +''') +icon_weather_squalls20_filled = NotStr(''' + +''') +icon_document_page_break20_filled = NotStr(''' + +''') +icon_people_call16_filled = NotStr(''' + +''') +icon_emoji_laugh16_filled = NotStr(''' + +''') +icon_border_top24_filled = NotStr(''' + +''') +icon_weather_snowflake24_regular = NotStr(''' + +''') +icon_box_toolbox20_regular = NotStr(''' + +''') +icon_target24_filled = NotStr(''' + +''') +icon_chart_multiple24_regular = NotStr(''' + +''') +icon_drop28_regular = NotStr(''' + +''') +icon_grid20_filled = NotStr(''' + +''') +icon_text_quote16_filled = NotStr(''' + +''') +icon_record_stop12_filled = NotStr(''' + +''') +icon_checkbox_checked_sync20_regular = NotStr(''' + +''') +icon_square_dismiss20_filled = NotStr(''' + +''') +icon_calligraphy_pen24_regular = NotStr(''' + +''') +icon_document_header_footer24_filled = NotStr(''' + +''') +icon_reading_list20_regular = NotStr(''' + +''') +icon_briefcase_medical32_regular = NotStr(''' + +''') +icon_communication_person20_regular = NotStr(''' + +''') +icon_food_pizza20_filled = NotStr(''' + +''') +icon_document_bullet_list20_regular = NotStr(''' + +''') +icon_arrow_trending_wrench20_regular = NotStr(''' + +''') +icon_arrow_up_left16_regular = NotStr(''' + +''') +icon_shield_checkmark48_filled = NotStr(''' + +''') +icon_desktop_cursor20_filled = NotStr(''' + +''') +icon_radio_button24_filled = NotStr(''' + +''') +icon_tap_single32_filled = NotStr(''' + +''') +icon_arrow_right16_regular = NotStr(''' + +''') +icon_table_dismiss28_regular = NotStr(''' + +''') +icon_connector24_filled = NotStr(''' + +''') +icon_document_sync24_regular = NotStr(''' + +''') +icon_document_prohibited20_regular = NotStr(''' + +''') +icon_building_bank28_regular = NotStr(''' + +''') +icon_vehicle_truck20_filled = NotStr(''' + +''') +icon_border_top_bottom_thick24_filled = NotStr(''' + +''') +icon_channel_arrow_left28_regular = NotStr(''' + +''') +icon_arrow_turn_bidirectional_down_right24_filled = NotStr(''' + +''') +icon_live20_regular = NotStr(''' + +''') +icon_learning_app20_regular = NotStr(''' + +''') +icon_person_lightbulb24_regular = NotStr(''' + +''') +icon_open20_regular = NotStr(''' + +''') +icon_text_column_one_wide24_regular = NotStr(''' + +''') +icon_wifi220_filled = NotStr(''' + +''') +icon_desktop_signal20_regular = NotStr(''' + +''') +icon_usb_stick20_regular = NotStr(''' + +''') +icon_picture_in_picture_enter16_regular = NotStr(''' + +''') +icon_document_table_checkmark24_filled = NotStr(''' + +''') +icon_skip_forward1028_filled = NotStr(''' + +''') +icon_document_landscape_split24_filled = NotStr(''' + +''') +icon_comment_arrow_left12_filled = NotStr(''' + +''') +icon_beaker_edit20_regular = NotStr(''' + +''') +icon_arrow_right48_regular = NotStr(''' + +''') +icon_document_width20_regular = NotStr(''' + +''') +icon_box_multiple24_regular = NotStr(''' + +''') +icon_guitar16_regular = NotStr(''' + +''') +icon_info28_filled = NotStr(''' + +''') +icon_book_contacts24_regular = NotStr(''' + +''') +icon_channel_share48_regular = NotStr(''' + +''') +icon_border_bottom_thick24_filled = NotStr(''' + +''') +icon_square_shadow12_filled = NotStr(''' + +''') +icon_calendar_empty24_filled = NotStr(''' + +''') +icon_book_letter20_filled = NotStr(''' + +''') +icon_edit_off16_filled = NotStr(''' + +''') +icon_text_case_uppercase20_regular = NotStr(''' + +''') +icon_arrow_maximize_vertical24_filled = NotStr(''' + + + + + +''') +icon_table_edit20_filled = NotStr(''' + +''') +icon_building_lighthouse20_filled = NotStr(''' + +''') +icon_align_start_horizontal20_filled = NotStr(''' + + + + +''') +icon_arrow_circle_right28_filled = NotStr(''' + +''') +icon_arrow_bidirectional_up_down20_filled = NotStr(''' + +''') +icon_calendar_checkmark24_filled = NotStr(''' + +''') +icon_call_park48_regular = NotStr(''' + +''') +icon_tap_double24_filled = NotStr(''' + +''') +icon_people_team_add20_filled = NotStr(''' + +''') +icon_building_factory32_filled = NotStr(''' + +''') +icon_split_vertical24_filled = NotStr(''' + +''') +icon_arrow_autofit_width20_filled = NotStr(''' + +''') +icon_notepad_person20_regular = NotStr(''' + +''') +icon_flip_vertical32_regular = NotStr(''' + +''') +icon_food_toast20_filled = NotStr(''' + +''') +icon_flag20_regular = NotStr(''' + +''') +icon_people_team32_regular = NotStr(''' + +''') +icon_text_column_one20_filled = NotStr(''' + +''') +icon_people_audience24_filled = NotStr(''' + +''') +icon_zoom_in16_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_day16_filled = NotStr(''' + +''') +icon_arrow_autofit_down24_regular = NotStr(''' + +''') +icon_weather_hail_night20_regular = NotStr(''' + +''') +icon_navigation16_regular = NotStr(''' + +''') +icon_globe24_regular = NotStr(''' + +''') +icon_notepad_person20_filled = NotStr(''' + +''') +icon_equal_circle20_filled = NotStr(''' + +''') +icon_branch24_regular = NotStr(''' + +''') +icon_previous32_regular = NotStr(''' + +''') +icon_status24_filled = NotStr(''' + +''') +icon_table_link20_filled = NotStr(''' + +''') +icon_add20_filled = NotStr(''' + +''') +icon_star_one_quarter12_filled = NotStr(''' + +''') +icon_calendar_chat20_filled = NotStr(''' + +''') +icon_drop48_filled = NotStr(''' + +''') +icon_dock_row20_regular = NotStr(''' + +''') +icon_weather_snowflake24_filled = NotStr(''' + +''') +icon_image_prohibited20_regular = NotStr(''' + +''') +icon_arrow_trending_wrench24_regular = NotStr(''' + +''') +icon_fingerprint24_regular = NotStr(''' + +''') +icon_note_add16_regular = NotStr(''' + +''') +icon_window_dev_edit16_regular = NotStr(''' + + + + + + +''') +icon_reading_list28_regular = NotStr(''' + +''') +icon_subtract_square20_regular = NotStr(''' + +''') +icon_text_align_right20_filled = NotStr(''' + +''') +icon_call_inbound48_filled = NotStr(''' + +''') +icon_usb_plug24_filled = NotStr(''' + +''') +icon_caret_down20_filled = NotStr(''' + +''') +icon_table_resize_row28_filled = NotStr(''' + +''') +icon_arrow_left48_filled = NotStr(''' + +''') +icon_cloud_sync24_filled = NotStr(''' + +''') +icon_receipt_play20_regular = NotStr(''' + +''') +icon_weather_hail_night24_filled = NotStr(''' + +''') +icon_chart_multiple20_regular = NotStr(''' + +''') +icon_sport16_regular = NotStr(''' + +''') +icon_circle_edit20_filled = NotStr(''' + +''') +icon_equal_circle24_filled = NotStr(''' + +''') +icon_slide_layout24_filled = NotStr(''' + +''') +icon_drop24_filled = NotStr(''' + +''') +icon_arrow_autofit_down20_filled = NotStr(''' + +''') +icon_person_delete24_filled = NotStr(''' + +''') +icon_comment48_filled = NotStr(''' + +''') +icon_book_open48_filled = NotStr(''' + +''') +icon_calendar_ltr12_regular = NotStr(''' + +''') +icon_column_triple20_filled = NotStr(''' + +''') +icon_desktop_toolbox20_filled = NotStr(''' + +''') +icon_desktop_edit24_filled = NotStr(''' + +''') +icon_presence_blocked16_regular = NotStr(''' + +''') +icon_backpack16_regular = NotStr(''' + +''') +icon_trophy_off16_regular = NotStr(''' + +''') +icon_eye_tracking_off24_regular = NotStr(''' + +''') +icon_board_split20_regular = NotStr(''' + +''') +icon_door16_filled = NotStr(''' + +''') +icon_speaker_off16_regular = NotStr(''' + +''') +icon_clipboard_pulse24_filled = NotStr(''' + +''') +icon_person32_regular = NotStr(''' + +''') +icon_weather_squalls24_filled = NotStr(''' + +''') +icon_bluetooth_connected24_regular = NotStr(''' + +''') +icon_building_bank_link28_filled = NotStr(''' + +''') +icon_table_edit16_filled = NotStr(''' + +''') +icon_backpack_add20_regular = NotStr(''' + +''') +icon_info20_filled = NotStr(''' + +''') +icon_comment_checkmark48_regular = NotStr(''' + +''') +icon_live_off24_filled = NotStr(''' + +''') +icon_text_position_tight24_filled = NotStr(''' + +''') +icon_sim20_regular = NotStr(''' + +''') +icon_multiplier15_x48_filled = NotStr(''' + +''') +icon_shifts_prohibited24_filled = NotStr(''' + +''') +icon_paint_brush20_regular = NotStr(''' + +''') +icon_people_swap20_regular = NotStr(''' + +''') +icon_alert_on24_regular = NotStr(''' + +''') +icon_mail_link24_regular = NotStr(''' + +''') +icon_weather_haze24_filled = NotStr(''' + +''') +icon_chat16_filled = NotStr(''' + +''') +icon_arrow_outline_up_right48_regular = NotStr(''' + +''') +icon_weather_snow_shower_night24_filled = NotStr(''' + +''') +icon_usb_plug24_regular = NotStr(''' + +''') +icon_dialpad32_regular = NotStr(''' + +''') +icon_channel_add20_filled = NotStr(''' + +''') +icon_sparkle16_filled = NotStr(''' + +''') +icon_panel_left_contract16_filled = NotStr(''' + +''') +icon_toggle_left48_regular = NotStr(''' + +''') +icon_run24_filled = NotStr(''' + +''') +icon_question_circle24_regular = NotStr(''' + +''') +icon_ticket_diagonal28_filled = NotStr(''' + +''') +icon_textbox_align_center20_regular = NotStr(''' + +''') +icon_mail_read48_regular = NotStr(''' + +''') +icon_building20_filled = NotStr(''' + +''') +icon_home16_filled = NotStr(''' + +''') +icon_slide_grid24_filled = NotStr(''' + +''') +icon_data_usage20_filled = NotStr(''' + +''') +icon_dual_screen_desktop24_regular = NotStr(''' + +''') +icon_document_edit16_regular = NotStr(''' + +''') +icon_document_search16_regular = NotStr(''' + +''') +icon_split_vertical28_filled = NotStr(''' + +''') +icon_text_number_list_rtl16_filled = NotStr(''' + +''') +icon_arrow_outline_up_right32_filled = NotStr(''' + +''') +icon_document_queue20_regular = NotStr(''' + +''') +icon_dismiss_square24_filled = NotStr(''' + +''') +icon_drink_beer16_regular = NotStr(''' + +''') +icon_arrow_minimize24_regular = NotStr(''' + +''') +icon_wifi_warning24_filled = NotStr(''' + +''') +icon_document16_filled = NotStr(''' + +''') +icon_contract_down_left32_regular = NotStr(''' + +''') +icon_slide_eraser20_filled = NotStr(''' + +''') +icon_data_funnel20_regular = NotStr(''' + +''') +icon_checkbox_unchecked24_regular = NotStr(''' + +''') +icon_error_circle16_regular = NotStr(''' + +''') +icon_people_money20_regular = NotStr(''' + +''') +icon_paint_bucket20_regular = NotStr(''' + +''') +icon_scan_type20_filled = NotStr(''' + +''') +icon_backpack_add28_filled = NotStr(''' + +''') +icon_battery420_filled = NotStr(''' + +''') +icon_table28_regular = NotStr(''' + +''') +icon_megaphone_loud20_regular = NotStr(''' + +''') +icon_math_formula32_filled = NotStr(''' + +''') +icon_password20_regular = NotStr(''' + +''') +icon_scan_camera28_regular = NotStr(''' + +''') +icon_savings20_filled = NotStr(''' + +''') +icon_guardian20_filled = NotStr(''' + +''') +icon_phone_page_header24_filled = NotStr(''' + +''') +icon_mail_read20_regular = NotStr(''' + +''') +icon_share_close_tray20_regular = NotStr(''' + +''') +icon_animal_rabbit20_regular = NotStr(''' + +''') +icon_expand_up_right32_filled = NotStr(''' + +''') +icon_weather_rain_snow20_regular = NotStr(''' + +''') +icon_headphones24_regular = NotStr(''' + +''') +icon_note_pin20_filled = NotStr(''' + +''') +icon_tag_error24_filled = NotStr(''' + +''') +icon_shield_checkmark16_regular = NotStr(''' + +''') +icon_scan_type_checkmark20_regular = NotStr(''' + +''') +icon_couch24_filled = NotStr(''' + +''') +icon_position_to_back20_regular = NotStr(''' + +''') +icon_phone_span_out16_filled = NotStr(''' + +''') +icon_speaker_mute28_regular = NotStr(''' + +''') +icon_share_screen_stop48_regular = NotStr(''' + +''') +icon_subtract_circle24_regular = NotStr(''' + +''') +icon_document_page_top_left20_filled = NotStr(''' + +''') +icon_pin28_regular = NotStr(''' + +''') +icon_folder_swap16_filled = NotStr(''' + +''') +icon_text_sort_ascending16_regular = NotStr(''' + +''') +icon_panel_separate_window20_regular = NotStr(''' + +''') +icon_select_object_skew20_regular = NotStr(''' + +''') +icon_desktop_speaker24_regular = NotStr(''' + +''') +icon_line_style24_regular = NotStr(''' + + + + + + + +''') +icon_calendar_work_week28_regular = NotStr(''' + +''') +icon_checkmark_circle48_regular = NotStr(''' + +''') +icon_book24_regular = NotStr(''' + +''') +icon_tetris_app32_filled = NotStr(''' + +''') +icon_tetris_app32_regular = NotStr(''' + +''') +icon_merge24_filled = NotStr(''' + +''') +icon_text_grammar_arrow_left20_regular = NotStr(''' + +''') +icon_iot24_regular = NotStr(''' + +''') +icon_data_sunburst24_filled = NotStr(''' + +''') +icon_couch20_regular = NotStr(''' + +''') +icon_flag_off28_filled = NotStr(''' + +''') +icon_notepad12_regular = NotStr(''' + +''') +icon_trophy28_filled = NotStr(''' + +''') +icon_arrow_autofit_height_dotted24_filled = NotStr(''' + +''') +icon_clipboard_text_ltr20_regular = NotStr(''' + +''') +icon_share_screen_stop20_regular = NotStr(''' + +''') +icon_form_new28_regular = NotStr(''' + +''') +icon_rectangle_landscape16_filled = NotStr(''' + +''') +icon_chat12_filled = NotStr(''' + +''') +icon_sparkle24_filled = NotStr(''' + +''') +icon_chat24_regular = NotStr(''' + +''') +icon_document_split_hint20_regular = NotStr(''' + +''') +icon_note_add20_regular = NotStr(''' + +''') +icon_globe20_regular = NotStr(''' + +''') +icon_sleep24_filled = NotStr(''' + +''') +icon_emoji_meh20_regular = NotStr(''' + +''') +icon_status16_filled = NotStr(''' + +''') +icon_share_ios48_regular = NotStr(''' + +''') +icon_map24_regular = NotStr(''' + +''') +icon_launcher_settings24_regular = NotStr(''' + +''') +icon_database_person20_filled = NotStr(''' + +''') +icon_document_add20_filled = NotStr(''' + +''') +icon_text_font_size24_filled = NotStr(''' + +''') +icon_weather_moon24_filled = NotStr(''' + +''') +icon_position_forward20_regular = NotStr(''' + +''') +icon_send_clock24_filled = NotStr(''' + +''') +icon_table_cells_merge20_filled = NotStr(''' + +''') +icon_microscope20_regular = NotStr(''' + +''') +icon_textbox_more20_regular = NotStr(''' + +''') +icon_people_swap20_filled = NotStr(''' + +''') +icon_timeline20_filled = NotStr(''' + +''') +icon_shield_lock24_regular = NotStr(''' + +''') +icon_calendar_today28_regular = NotStr(''' + +''') +icon_dual_screen_arrow_up24_regular = NotStr(''' + +''') +icon_border_top_bottom24_filled = NotStr(''' + +''') +icon_arrow_redo24_regular = NotStr(''' + +''') +icon_search20_filled = NotStr(''' + +''') +icon_hand_left16_regular = NotStr(''' + +''') +icon_building_shop24_filled = NotStr(''' + +''') +icon_channel_add24_filled = NotStr(''' + +''') +icon_text_word_count24_filled = NotStr(''' + +''') +icon_arrow_sync12_regular = NotStr(''' + +''') +icon_network_check24_regular = NotStr(''' + +''') +icon_presence_busy10_filled = NotStr(''' + +''') +icon_chat_arrow_back16_filled = NotStr(''' + +''') +icon_weather_moon_off20_filled = NotStr(''' + +''') +icon_phone_arrow_right20_filled = NotStr(''' + +''') +icon_board_heart20_regular = NotStr(''' + +''') +icon_delete48_filled = NotStr(''' + +''') +icon_walkie_talkie24_filled = NotStr(''' + +''') +icon_savings16_regular = NotStr(''' + +''') +icon_wand16_regular = NotStr(''' + +''') +icon_food_grains20_regular = NotStr(''' + +''') +icon_text_baseline20_filled = NotStr(''' + + + + +''') +icon_dual_screen_lock24_filled = NotStr(''' + +''') +icon_text_add_space_after20_regular = NotStr(''' + +''') +icon_barcode_scanner20_regular = NotStr(''' + +''') +icon_folder16_regular = NotStr(''' + +''') +icon_arrow_hook_up_left24_regular = NotStr(''' + +''') +icon_window_inprivate20_regular = NotStr(''' + +''') +icon_task_list_square_rtl20_regular = NotStr(''' + +''') +icon_speaker048_filled = NotStr(''' + +''') +icon_people_queue20_regular = NotStr(''' + +''') +icon_ruler20_filled = NotStr(''' + +''') +icon_checkmark_square24_regular = NotStr(''' + +''') +icon_align_right48_regular = NotStr(''' + +''') +icon_grid_dots24_regular = NotStr(''' + +''') +icon_table_stack_left16_filled = NotStr(''' + +''') +icon_table_insert_column20_filled = NotStr(''' + +''') +icon_arrow_circle_down_split20_regular = NotStr(''' + +''') +icon_games24_regular = NotStr(''' + +''') +icon_cloud48_filled = NotStr(''' + +''') +icon_line_horizontal5_error20_regular = NotStr(''' + +''') +icon_diamond48_regular = NotStr(''' + +''') +icon_symbols20_filled = NotStr(''' + +''') +icon_speaker216_filled = NotStr(''' + +''') +icon_style_guide20_filled = NotStr(''' + +''') +icon_arrow_step_in_right12_regular = NotStr(''' + +''') +icon_wallet24_filled = NotStr(''' + +''') +icon_mic_off48_filled = NotStr(''' + +''') +icon_shield16_filled = NotStr(''' + +''') +icon_desktop_cursor24_regular = NotStr(''' + +''') +icon_text_direction_horizontal_left24_regular = NotStr(''' + +''') +icon_meet_now20_regular = NotStr(''' + +''') +icon_document_page_number20_filled = NotStr(''' + +''') +icon_table_move_below20_filled = NotStr(''' + +''') +icon_copy24_regular = NotStr(''' + +''') +icon_comment_checkmark28_regular = NotStr(''' + +''') +icon_clipboard_search20_filled = NotStr(''' + +''') +icon_fast_forward20_filled = NotStr(''' + +''') +icon_mic_prohibited28_filled = NotStr(''' + +''') +icon_arrow_forward_down_person20_regular = NotStr(''' + +''') +icon_text_direction_rotate90_left24_filled = NotStr(''' + +''') +icon_tab_desktop16_filled = NotStr(''' + +''') +icon_calligraphy_pen_checkmark20_filled = NotStr(''' + + + + + +''') +icon_skip_forward_tab24_filled = NotStr(''' + +''') +icon_star_line_horizontal324_regular = NotStr(''' + +''') +icon_scan_camera20_filled = NotStr(''' + +''') +icon_document_settings16_regular = NotStr(''' + +''') +icon_building20_regular = NotStr(''' + +''') +icon_text_asterisk20_regular = NotStr(''' + +''') +icon_comment24_filled = NotStr(''' + +''') +icon_briefcase16_regular = NotStr(''' + +''') +icon_window_dev_tools24_regular = NotStr(''' + +''') +icon_arrow_step_in12_filled = NotStr(''' + +''') +icon_people_audience20_filled = NotStr(''' + +''') +icon_people_settings20_filled = NotStr(''' + +''') +icon_document_save20_filled = NotStr(''' + +''') +icon_home_checkmark24_regular = NotStr(''' + +''') +icon_crop20_regular = NotStr(''' + +''') +icon_person_available16_regular = NotStr(''' + +''') +icon_window_dev_edit20_filled = NotStr(''' + +''') +icon_print_add24_regular = NotStr(''' + +''') +icon_textbox_align_center24_filled = NotStr(''' + +''') +icon_arrow_left48_regular = NotStr(''' + +''') +icon_star_line_horizontal316_regular = NotStr(''' + +''') +icon_arrow_rotate_counterclockwise20_filled = NotStr(''' + +''') +icon_arrow_reset24_filled = NotStr(''' + +''') +icon_calendar_agenda20_regular = NotStr(''' + +''') +icon_arrow_up_left48_filled = NotStr(''' + +''') +icon_align_top28_filled = NotStr(''' + +''') +icon_column_edit24_filled = NotStr(''' + +''') +icon_phone_screen_time24_filled = NotStr(''' + +''') +icon_cloud_swap20_filled = NotStr(''' + +''') +icon_prohibited48_regular = NotStr(''' + +''') +icon_slide_layout20_filled = NotStr(''' + +''') +icon_megaphone_off24_regular = NotStr(''' + +''') +icon_dismiss_square24_regular = NotStr(''' + +''') +icon_chevron_circle_left12_regular = NotStr(''' + +''') +icon_caret_down_right12_filled = NotStr(''' + +''') +icon_arrow_clockwise_dashes24_filled = NotStr(''' + +''') +icon_stack_star24_regular = NotStr(''' + +''') +icon_arrow_reset32_regular = NotStr(''' + +''') +icon_board_heart16_regular = NotStr(''' + +''') +icon_book_theta20_filled = NotStr(''' + +''') +icon_fps6024_filled = NotStr(''' + +''') +icon_branch20_regular = NotStr(''' + +''') +icon_shifts_day20_filled = NotStr(''' + +''') +icon_tab_in_private16_filled = NotStr(''' + +''') +icon_search20_regular = NotStr(''' + +''') +icon_table_resize_column20_filled = NotStr(''' + +''') +icon_ink_stroke20_filled = NotStr(''' + +''') +icon_text_grammar_settings24_regular = NotStr(''' + +''') +icon_chat_warning24_filled = NotStr(''' + +''') +icon_channel_arrow_left20_regular = NotStr(''' + +''') +icon_door_arrow_right20_regular = NotStr(''' + +''') +icon_branch_fork16_regular = NotStr(''' + +''') +icon_closed_caption_off16_filled = NotStr(''' + +''') +icon_flag_off16_filled = NotStr(''' + +''') +icon_arrow_enter_left24_filled = NotStr(''' + +''') +icon_building_bank_link20_filled = NotStr(''' + +''') +icon_shopping_bag_percent20_filled = NotStr(''' + +''') +icon_text_bullet_list_rtl16_regular = NotStr(''' + +''') +icon_sim16_filled = NotStr(''' + +''') +icon_star_prohibited24_filled = NotStr(''' + +''') +icon_table_cells_split24_filled = NotStr(''' + +''') +icon_badge20_filled = NotStr(''' + +''') +icon_next32_regular = NotStr(''' + +''') +icon_ticket_diagonal16_regular = NotStr(''' + +''') +icon_error_circle20_regular = NotStr(''' + +''') +icon_gif20_filled = NotStr(''' + +''') +icon_link48_filled = NotStr(''' + +''') +icon_walkie_talkie24_regular = NotStr(''' + +''') +icon_diamond32_regular = NotStr(''' + +''') +icon_rename16_regular = NotStr(''' + +''') +icon_airplane_take_off16_filled = NotStr(''' + +''') +icon_group20_filled = NotStr(''' + +''') +icon_text_t48_filled = NotStr(''' + +''') +icon_cube_link20_filled = NotStr(''' + +''') +icon_weather_snow_shower_night24_regular = NotStr(''' + +''') +icon_desktop28_filled = NotStr(''' + +''') +icon_align_center_horizontal20_filled = NotStr(''' + +''') +icon_book_pulse24_regular = NotStr(''' + +''') +icon_textbox_align_bottom_rotate9024_filled = NotStr(''' + +''') +icon_fast_acceleration24_regular = NotStr(''' + +''') +icon_people_settings24_regular = NotStr(''' + +''') +icon_book_theta24_filled = NotStr(''' + +''') +icon_checkbox_warning24_regular = NotStr(''' + + + + + +''') +icon_notebook_section_arrow_right24_filled = NotStr(''' + + + + +''') +icon_live24_regular = NotStr(''' + +''') +icon_briefcase_off32_filled = NotStr(''' + +''') +icon_speaker_usb28_regular = NotStr(''' + +''') +icon_speaker024_filled = NotStr(''' + +''') +icon_window_apps24_filled = NotStr(''' + +''') +icon_beaker24_regular = NotStr(''' + +''') +icon_drawer_dismiss24_regular = NotStr(''' + +''') +icon_dismiss_circle48_regular = NotStr(''' + +''') +icon_trophy_off24_filled = NotStr(''' + +''') +icon_maximize20_regular = NotStr(''' + +''') +icon_library16_filled = NotStr(''' + +''') +icon_chat28_filled = NotStr(''' + +''') +icon_person_mail20_filled = NotStr(''' + +''') +icon_channel_add16_filled = NotStr(''' + +''') +icon_arrow_sync_checkmark20_regular = NotStr(''' + +''') +icon_textbox24_regular = NotStr(''' + +''') +icon_align_center_vertical32_filled = NotStr(''' + +''') +icon_clipboard_bullet_list_rtl20_regular = NotStr(''' + +''') +icon_delete_off20_filled = NotStr(''' + +''') +icon_target_edit20_regular = NotStr(''' + +''') +icon_headset20_regular = NotStr(''' + +''') +icon_table_delete_column20_regular = NotStr(''' + +''') +icon_person_money24_regular = NotStr(''' + +''') +icon_presence_available10_filled = NotStr(''' + +''') +icon_image_multiple28_filled = NotStr(''' + +''') +icon_rocket20_regular = NotStr(''' + +''') +icon_gift_card_add20_filled = NotStr(''' + +''') +icon_comment_note24_filled = NotStr(''' + + + + +''') +icon_cloud_checkmark24_filled = NotStr(''' + +''') +icon_leaf_three16_regular = NotStr(''' + +''') +icon_delete_arrow_back20_filled = NotStr(''' + +''') +icon_slide_text16_filled = NotStr(''' + +''') +icon_road_cone24_filled = NotStr(''' + +''') +icon_font_space_tracking_in24_filled = NotStr(''' + +''') +icon_battery_charge24_filled = NotStr(''' + +''') +icon_table_stack_right20_regular = NotStr(''' + +''') +icon_shopping_bag_percent20_regular = NotStr(''' + +''') +icon_text_t24_regular = NotStr(''' + +''') +icon_chevron_circle_right28_regular = NotStr(''' + +''') +icon_question_circle16_regular = NotStr(''' + +''') +icon_calendar_error24_regular = NotStr(''' + +''') +icon_add_subtract_circle48_filled = NotStr(''' + +''') +icon_arrow_step_in16_filled = NotStr(''' + +''') +icon_clipboard_link16_regular = NotStr(''' + +''') +icon_calendar3_day28_regular = NotStr(''' + +''') +icon_box_toolbox24_regular = NotStr(''' + +''') +icon_oval16_filled = NotStr(''' + +''') +icon_voicemail_arrow_forward16_regular = NotStr(''' + +''') +icon_plug_disconnected28_filled = NotStr(''' + +''') +icon_document_arrow_down20_regular = NotStr(''' + +''') +icon_font_increase20_regular = NotStr(''' + +''') +icon_cube_sync24_filled = NotStr(''' + +''') +icon_text_collapse24_filled = NotStr(''' + +''') +icon_globe_shield24_regular = NotStr(''' + +''') +icon_call_checkmark20_regular = NotStr(''' + +''') +icon_live24_filled = NotStr(''' + +''') +icon_content_settings20_regular = NotStr(''' + +''') +icon_expand_up_right20_filled = NotStr(''' + +''') +icon_table_stack_above20_regular = NotStr(''' + +''') +icon_call_connecting20_regular = NotStr(''' + +''') +icon_document_search20_regular = NotStr(''' + +''') +icon_premium20_regular = NotStr(''' + +''') +icon_thumb_like20_regular = NotStr(''' + +''') +icon_calendar_week_start24_filled = NotStr(''' + +''') +icon_arrow_step_in_left20_filled = NotStr(''' + +''') +icon_people_lock20_regular = NotStr(''' + +''') +icon_textbox_align_bottom20_filled = NotStr(''' + +''') +icon_news20_regular = NotStr(''' + +''') +icon_beaker_edit24_regular = NotStr(''' + +''') +icon_calendar_star24_filled = NotStr(''' + +''') +icon_sidebar_search_ltr20_regular = NotStr(''' + +''') +icon_people_toolbox20_filled = NotStr(''' + +''') +icon_news28_filled = NotStr(''' + +''') +icon_video_person_off24_regular = NotStr(''' + +''') +icon_glasses_off48_filled = NotStr(''' + +''') +icon_timeline20_regular = NotStr(''' + +''') +icon_video_add20_regular = NotStr(''' + +''') +icon_mail_arrow_forward20_regular = NotStr(''' + +''') +icon_puzzle_cube20_filled = NotStr(''' + +''') +icon_new24_filled = NotStr(''' + +''') +icon_person16_regular = NotStr(''' + +''') +icon_picture_in_picture_exit16_regular = NotStr(''' + +''') +icon_cursor_hover20_regular = NotStr(''' + +''') +icon_scan_camera48_filled = NotStr(''' + +''') +icon_cloud_arrow_down28_regular = NotStr(''' + +''') +icon_clipboard_arrow_right24_filled = NotStr(''' + +''') +icon_money_hand20_filled = NotStr(''' + +''') +icon_share_screen_person_p16_filled = NotStr(''' + +''') +icon_doctor20_filled = NotStr(''' + +''') +icon_tab_desktop_copy20_regular = NotStr(''' + +''') +icon_weather_thunderstorm48_filled = NotStr(''' + +''') +icon_projection_screen20_filled = NotStr(''' + +''') +icon_panel_right48_filled = NotStr(''' + +''') +icon_flashlight_off24_regular = NotStr(''' + +''') +icon_approvals_app20_filled = NotStr(''' + +''') +icon_add_subtract_circle20_filled = NotStr(''' + +''') +icon_document_arrow_down16_filled = NotStr(''' + +''') +icon_align_left48_regular = NotStr(''' + +''') +icon_folder_arrow_up28_filled = NotStr(''' + +''') +icon_comment_off48_filled = NotStr(''' + +''') +icon_cloud_archive16_filled = NotStr(''' + +''') +icon_inking_tool_accent16_filled = NotStr(''' + +''') +icon_multiselect_ltr24_regular = NotStr(''' + +''') +icon_inprivate_account24_filled = NotStr(''' + +''') +icon_scan_object20_regular = NotStr(''' + +''') +icon_tetris_app16_regular = NotStr(''' + +''') +icon_calendar_search16_filled = NotStr(''' + +''') +icon_mail_inbox_dismiss24_filled = NotStr(''' + +''') +icon_folder_globe16_regular = NotStr(''' + +''') +icon_gift_card_multiple20_filled = NotStr(''' + +''') +icon_document_page_bottom_left24_filled = NotStr(''' + +''') +icon_shield_task16_filled = NotStr(''' + +''') +icon_badge20_regular = NotStr(''' + +''') +icon_weather_blowing_snow48_regular = NotStr(''' + +''') +icon_arrow_expand20_regular = NotStr(''' + +''') +icon_tab_desktop_bottom20_regular = NotStr(''' + +''') +icon_branch_fork20_regular = NotStr(''' + +''') +icon_expand_up_left48_filled = NotStr(''' + +''') +icon_person_prohibited28_regular = NotStr(''' + +''') +icon_book_open_globe20_filled = NotStr(''' + + + + + + + + + +''') +icon_weather_moon_off24_filled = NotStr(''' + +''') +icon_bug16_regular = NotStr(''' + +''') +icon_people32_regular = NotStr(''' + +''') +icon_document_prohibited24_filled = NotStr(''' + +''') +icon_scale_fit24_filled = NotStr(''' + +''') +icon_table_simple48_filled = NotStr(''' + +''') +icon_image_edit20_filled = NotStr(''' + +''') +icon_copy_arrow_right24_filled = NotStr(''' + +''') +icon_fps3024_filled = NotStr(''' + +''') +icon_comment_lightning24_filled = NotStr(''' + +''') +icon_ticket_diagonal24_regular = NotStr(''' + +''') +icon_music_note2_play20_regular = NotStr(''' + +''') +icon_tab_desktop_multiple_bottom24_filled = NotStr(''' + +''') +icon_data_whisker24_filled = NotStr(''' + +''') +icon_heart_circle20_filled = NotStr(''' + +''') +icon_align_bottom24_filled = NotStr(''' + +''') +icon_link48_regular = NotStr(''' + +''') +icon_bin_full24_filled = NotStr(''' + +''') +icon_chevron_circle_up28_regular = NotStr(''' + +''') +icon_scales24_filled = NotStr(''' + +''') +icon_arrow_hook_up_right16_regular = NotStr(''' + +''') +icon_arrow_sort_up24_filled = NotStr(''' + +''') +icon_calendar_week_numbers24_regular = NotStr(''' + +''') +icon_data_bar_horizontal20_regular = NotStr(''' + +''') +icon_video_person_call20_filled = NotStr(''' + +''') +icon_checkmark20_regular = NotStr(''' + +''') +icon_slide_add48_regular = NotStr(''' + +''') +icon_chevron_up_down16_filled = NotStr(''' + +''') +icon_open_folder20_regular = NotStr(''' + +''') +icon_globe_star20_filled = NotStr(''' + +''') +icon_video_chat20_regular = NotStr(''' + +''') +icon_translate20_regular = NotStr(''' + +''') +icon_weather_sunny16_regular = NotStr(''' + +''') +icon_caret_down_right16_regular = NotStr(''' + +''') +icon_mail_inbox_add24_filled = NotStr(''' + +''') +icon_checkbox_checked20_filled = NotStr(''' + +''') +icon_chevron_double_left16_regular = NotStr(''' + +''') +icon_document_copy20_regular = NotStr(''' + +''') +icon_video_off32_regular = NotStr(''' + +''') +icon_document_javascript20_filled = NotStr(''' + +''') +icon_channel_share24_filled = NotStr(''' + +''') +icon_save16_filled = NotStr(''' + +''') +icon_table_settings16_filled = NotStr(''' + +''') +icon_caret_left24_filled = NotStr(''' + +''') +icon_video_security20_filled = NotStr(''' + +''') +icon_video360_off20_filled = NotStr(''' + +''') +icon_split_horizontal48_filled = NotStr(''' + +''') +icon_text_header324_filled = NotStr(''' + +''') +icon_battery924_regular = NotStr(''' + +''') +icon_vehicle_car_collision48_regular = NotStr(''' + +''') +icon_multiplier18_x48_regular = NotStr(''' + +''') +icon_call_missed48_filled = NotStr(''' + +''') +icon_document_lock20_regular = NotStr(''' + +''') +icon_crop_interim20_filled = NotStr(''' + +''') +icon_headphones24_filled = NotStr(''' + +''') +icon_content_settings16_regular = NotStr(''' + +''') +icon_mail_unread28_filled = NotStr(''' + +''') +icon_camera_add24_regular = NotStr(''' + +''') +icon_table_insert_column24_filled = NotStr(''' + +''') +icon_align_left24_regular = NotStr(''' + +''') +icon_animal_dog20_regular = NotStr(''' + +''') +icon_bed24_filled = NotStr(''' + +''') +icon_projection_screen_dismiss24_regular = NotStr(''' + +''') +icon_document_landscape_split20_regular = NotStr(''' + +''') +icon_device_meeting_room48_filled = NotStr(''' + +''') +icon_table_simple16_filled = NotStr(''' + +''') +icon_pause_circle20_filled = NotStr(''' + +''') +icon_clock48_filled = NotStr(''' + +''') +icon_call_outbound16_regular = NotStr(''' + +''') +icon_database_link24_filled = NotStr(''' + +''') +icon_speaker_edit24_regular = NotStr(''' + +''') +icon_document_table20_filled = NotStr(''' + +''') +icon_caret_down16_regular = NotStr(''' + +''') +icon_window_wrench24_regular = NotStr(''' + +''') +icon_camera_add20_regular = NotStr(''' + +''') +icon_device_meeting_room_remote48_filled = NotStr(''' + +''') +icon_text_period_asterisk20_filled = NotStr(''' + +''') +icon_rename28_regular = NotStr(''' + +''') +icon_arrow_turn_bidirectional_down_right20_regular = NotStr(''' + +''') +icon_arrow_maximize28_regular = NotStr(''' + +''') +icon_mail48_filled = NotStr(''' + +''') +icon_home20_regular = NotStr(''' + +''') +icon_data_whisker24_regular = NotStr(''' + +''') +icon_table_switch28_filled = NotStr(''' + +''') +icon_multiplier12_x20_filled = NotStr(''' + +''') +icon_folder_swap16_regular = NotStr(''' + +''') +icon_arrow_hook_up_right16_filled = NotStr(''' + +''') +icon_tray_item_remove24_filled = NotStr(''' + +''') +icon_attach12_filled = NotStr(''' + +''') +icon_currency_dollar_euro16_regular = NotStr(''' + +''') +icon_stream20_filled = NotStr(''' + +''') +icon_speaker132_regular = NotStr(''' + +''') +icon_tasks_app20_regular = NotStr(''' + +''') +icon_text_italic20_regular = NotStr(''' + +''') +icon_slide_size24_filled = NotStr(''' + +''') +icon_alert_urgent20_regular = NotStr(''' + +''') +icon_mail_add24_filled = NotStr(''' + +''') +icon_puzzle_cube16_regular = NotStr(''' + +''') +icon_weather_squalls48_filled = NotStr(''' + +''') +icon_tag_multiple16_regular = NotStr(''' + +''') +icon_padding_right20_regular = NotStr(''' + +''') +icon_window_shield24_regular = NotStr(''' + +''') +icon_caret_up20_filled = NotStr(''' + +''') +icon_box16_filled = NotStr(''' + +''') +icon_tag_lock20_filled = NotStr(''' + +''') +icon_door16_regular = NotStr(''' + +''') +icon_calendar_checkmark28_regular = NotStr(''' + +''') +icon_play20_filled = NotStr(''' + +''') +icon_calendar_checkmark24_regular = NotStr(''' + +''') +icon_text_font_info20_filled = NotStr(''' + +''') +icon_table_move_left24_regular = NotStr(''' + +''') +icon_square_hint_sparkles48_regular = NotStr(''' + +''') +icon_tag_reset24_regular = NotStr(''' + +''') +icon_expand_up_right16_filled = NotStr(''' + +''') +icon_sticker20_filled = NotStr(''' + +''') +icon_accessibility_checkmark24_regular = NotStr(''' + +''') +icon_tab20_filled = NotStr(''' + +''') +icon_skip_forward1028_regular = NotStr(''' + +''') +icon_shapes24_regular = NotStr(''' + +''') +icon_shifts28_regular = NotStr(''' + +''') +icon_image_prohibited24_regular = NotStr(''' + +''') +icon_arrow_sync_off20_regular = NotStr(''' + +''') +icon_phone_desktop_add20_regular = NotStr(''' + +''') +icon_read_aloud24_filled = NotStr(''' + +''') +icon_share_screen_person24_filled = NotStr(''' + +''') +icon_emoji_multiple20_filled = NotStr(''' + +''') +icon_comment_multiple24_regular = NotStr(''' + +''') +icon_info_shield20_filled = NotStr(''' + +''') +icon_shield_keyhole20_regular = NotStr(''' + +''') +icon_open_off16_filled = NotStr(''' + +''') +icon_pin_off48_filled = NotStr(''' + +''') +icon_data_trending20_regular = NotStr(''' + +''') +icon_vehicle_ship20_filled = NotStr(''' + +''') +icon_vault16_filled = NotStr(''' + +''') +icon_call_exclamation20_filled = NotStr(''' + +''') +icon_filter20_regular = NotStr(''' + +''') +icon_tray_item_add24_filled = NotStr(''' + +''') +icon_circle_half_fill24_filled = NotStr(''' + +''') +icon_learning_app20_filled = NotStr(''' + +''') +icon_access_time24_filled = NotStr(''' + +''') +icon_arrow_circle_down_double24_regular = NotStr(''' + +''') +icon_calendar_work_week20_filled = NotStr(''' + +''') +icon_vehicle_cab20_filled = NotStr(''' + +''') +icon_arrow_hook_down_right16_filled = NotStr(''' + +''') +icon_shapes20_filled = NotStr(''' + +''') +icon_lottery24_regular = NotStr(''' + +''') +icon_checkmark_underline_circle20_regular = NotStr(''' + +''') +icon_arrow_left20_regular = NotStr(''' + +''') +icon_calendar_assistant16_filled = NotStr(''' + +''') +icon_road_cone32_regular = NotStr(''' + +''') +icon_square_multiple20_filled = NotStr(''' + +''') +icon_mic_sparkle16_filled = NotStr(''' + +''') +icon_branch_compare24_filled = NotStr(''' + +''') +icon_wand20_filled = NotStr(''' + +''') +icon_luggage16_filled = NotStr(''' + +''') +icon_brightness_low28_filled = NotStr(''' + +''') +icon_table_stack_above28_filled = NotStr(''' + +''') +icon_cloud_words48_filled = NotStr(''' + +''') +icon_backspace20_filled = NotStr(''' + +''') +icon_desktop24_filled = NotStr(''' + +''') +icon_question16_filled = NotStr(''' + +''') +icon_prohibited12_regular = NotStr(''' + +''') +icon_text_number_list_ltr24_filled = NotStr(''' + +''') +icon_cloud_arrow_up24_regular = NotStr(''' + +''') +icon_folder_globe20_filled = NotStr(''' + +''') +icon_sparkle28_regular = NotStr(''' + +''') +icon_image_prohibited20_filled = NotStr(''' + +''') +icon_production20_filled = NotStr(''' + +''') +icon_weather_moon16_filled = NotStr(''' + +''') +icon_server24_filled = NotStr(''' + +''') +icon_circle16_filled = NotStr(''' + +''') +icon_phone_status_bar24_regular = NotStr(''' + +''') +icon_chevron_up20_filled = NotStr(''' + +''') +icon_movies_and_tv24_regular = NotStr(''' + +''') +icon_info12_filled = NotStr(''' + +''') +icon_notebook_add24_filled = NotStr(''' + + + + + + + +''') +icon_window_apps28_filled = NotStr(''' + +''') +icon_weather_blowing_snow48_filled = NotStr(''' + +''') +icon_slide_add32_filled = NotStr(''' + +''') +icon_mic_prohibited20_filled = NotStr(''' + +''') +icon_vehicle_cab28_regular = NotStr(''' + +''') +icon_color24_regular = NotStr(''' + +''') +icon_folder_link48_regular = NotStr(''' + +''') +icon_form_new48_regular = NotStr(''' + +''') +icon_text_indent_increase_ltr16_regular = NotStr(''' + +''') +icon_panel_right28_regular = NotStr(''' + +''') +icon_share_screen_person28_regular = NotStr(''' + +''') +icon_arrow_curve_down_left24_filled = NotStr(''' + +''') +icon_wifi_settings20_regular = NotStr(''' + +''') +icon_animal_cat16_regular = NotStr(''' + +''') +icon_mail28_regular = NotStr(''' + +''') +icon_folder_arrow_right16_filled = NotStr(''' + +''') +icon_building_government32_filled = NotStr(''' + +''') +icon_text_column_one_narrow20_regular = NotStr(''' + +''') +icon_slide_arrow_right24_filled = NotStr(''' + +''') +icon_plug_connected20_filled = NotStr(''' + +''') +icon_cellular_off20_regular = NotStr(''' + +''') +icon_emoji28_filled = NotStr(''' + +''') +icon_tv_usb24_filled = NotStr(''' + +''') +icon_text_more24_regular = NotStr(''' + +''') +icon_accessibility20_regular = NotStr(''' + +''') +icon_arrow_rotate_clockwise20_regular = NotStr(''' + +''') +icon_wifi120_regular = NotStr(''' + +''') +icon_resize_image20_regular = NotStr(''' + +''') +icon_text_position_top_bottom20_filled = NotStr(''' + +''') +icon_globe_clock16_filled = NotStr(''' + +''') +icon_comment_edit24_regular = NotStr(''' + +''') +icon_arrow_step_in20_regular = NotStr(''' + +''') +icon_person_tag28_filled = NotStr(''' + +''') +icon_mail_read16_regular = NotStr(''' + +''') +icon_document_endnote20_regular = NotStr(''' + +''') +icon_document_prohibited20_filled = NotStr(''' + +''') +icon_channel_share48_filled = NotStr(''' + +''') +icon_circle48_regular = NotStr(''' + +''') +icon_bookmark20_regular = NotStr(''' + +''') +icon_call32_filled = NotStr(''' + +''') +icon_steps20_regular = NotStr(''' + +''') +icon_cursor_hover_off16_filled = NotStr(''' + +''') +icon_square_multiple24_filled = NotStr(''' + +''') +icon_conference_room48_regular = NotStr(''' + +''') +icon_data_usage_edit20_regular = NotStr(''' + +''') +icon_image_arrow_forward24_regular = NotStr(''' + +''') +icon_book_add20_regular = NotStr(''' + +''') +icon_contact_card_ribbon20_regular = NotStr(''' + +''') +icon_people_team_toolbox24_regular = NotStr(''' + +''') +icon_panel_right28_filled = NotStr(''' + +''') +icon_text_position_behind24_regular = NotStr(''' + +''') +icon_bookmark32_regular = NotStr(''' + +''') +icon_chat28_regular = NotStr(''' + +''') +icon_projection_screen24_regular = NotStr(''' + +''') +icon_battery_saver24_filled = NotStr(''' + +''') +icon_text_effects20_regular = NotStr(''' + +''') +icon_triangle32_regular = NotStr(''' + +''') +icon_star20_filled = NotStr(''' + +''') +icon_multiplier5_x32_filled = NotStr(''' + +''') +icon_control_button24_regular = NotStr(''' + +''') +icon_channel_add16_regular = NotStr(''' + +''') +icon_approvals_app28_filled = NotStr(''' + +''') +icon_molecule24_regular = NotStr(''' + +''') +icon_map_drive16_filled = NotStr(''' + +''') +icon_folder24_filled = NotStr(''' + +''') +icon_heart_pulse20_regular = NotStr(''' + +''') +icon_window48_filled = NotStr(''' + +''') +icon_briefcase12_filled = NotStr(''' + +''') +icon_text_case_title16_filled = NotStr(''' + +''') +icon_view_desktop24_regular = NotStr(''' + +''') +icon_calendar_sync20_regular = NotStr(''' + +''') +icon_person_support16_filled = NotStr(''' + +''') +icon_library24_filled = NotStr(''' + +''') +icon_caret_right12_filled = NotStr(''' + +''') +icon_vehicle_bicycle20_filled = NotStr(''' + +''') +icon_gantt_chart24_regular = NotStr(''' + +''') +icon_text_bullet_list_square_warning16_regular = NotStr(''' + +''') +icon_window_new24_filled = NotStr(''' + +''') +icon_task_list_square_add24_filled = NotStr(''' + +''') +icon_camera_dome16_filled = NotStr(''' + +''') +icon_square16_filled = NotStr(''' + +''') +icon_communication_person24_regular = NotStr(''' + +''') +icon_voicemail20_regular = NotStr(''' + +''') +icon_person28_regular = NotStr(''' + +''') +icon_book_question_mark20_regular = NotStr(''' + +''') +icon_table_stack_above24_filled = NotStr(''' + +''') +icon_folder_prohibited20_filled = NotStr(''' + +''') +icon_reward16_filled = NotStr(''' + +''') +icon_math_formula24_regular = NotStr(''' + +''') +icon_cloud_checkmark32_regular = NotStr(''' + +''') +icon_open_folder16_regular = NotStr(''' + +''') +icon_phone_span_out24_regular = NotStr(''' + +''') +icon_cellular_warning20_filled = NotStr(''' + +''') +icon_circle_half_fill24_regular = NotStr(''' + +''') +icon_immersive_reader16_regular = NotStr(''' + +''') +icon_arrow_autofit_width20_regular = NotStr(''' + +''') +icon_people20_filled = NotStr(''' + +''') +icon_brightness_low32_filled = NotStr(''' + +''') +icon_scale_fill24_regular = NotStr(''' + +''') +icon_glasses16_filled = NotStr(''' + +''') +icon_flag28_filled = NotStr(''' + +''') +icon_checkmark_underline_circle16_filled = NotStr(''' + +''') +icon_bookmark_add24_regular = NotStr(''' + +''') +icon_table_edit16_regular = NotStr(''' + +''') +icon_money16_regular = NotStr(''' + +''') +icon_tag_lock20_regular = NotStr(''' + +''') +icon_surface_hub24_regular = NotStr(''' + +''') +icon_math_symbols20_regular = NotStr(''' + +''') +icon_chevron_left20_filled = NotStr(''' + +''') +icon_screen_cut20_filled = NotStr(''' + + + + + + + + + + + + + +''') +icon_page_fit20_filled = NotStr(''' + +''') +icon_database24_regular = NotStr(''' + +''') +icon_checkbox_unchecked20_regular = NotStr(''' + +''') +icon_battery720_filled = NotStr(''' + +''') +icon_building_factory16_regular = NotStr(''' + +''') +icon_expand_up_right32_regular = NotStr(''' + +''') +icon_lock_open16_filled = NotStr(''' + +''') +icon_mention24_regular = NotStr(''' + +''') +icon_align_bottom28_regular = NotStr(''' + +''') +icon_archive16_regular = NotStr(''' + +''') +icon_hand_right16_filled = NotStr(''' + +''') +icon_screen_search20_filled = NotStr(''' + +''') +icon_task_list_square_ltr20_filled = NotStr(''' + +''') +icon_oval48_regular = NotStr(''' + +''') +icon_panel_left_contract24_regular = NotStr(''' + +''') +icon_square_arrow_forward24_filled = NotStr(''' + +''') +icon_key24_regular = NotStr(''' + +''') +icon_cloud_swap24_filled = NotStr(''' + +''') +icon_serial_port20_regular = NotStr(''' + +''') +icon_chevron_double_up20_filled = NotStr(''' + +''') +icon_text_paragraph16_filled = NotStr(''' + +''') +icon_brightness_high16_filled = NotStr(''' + + + + + + + + + + + +''') +icon_presence_available12_regular = NotStr(''' + +''') +icon_arrow_circle_left16_filled = NotStr(''' + +''') +icon_thinking24_filled = NotStr(''' + +''') +icon_document_lock16_regular = NotStr(''' + +''') +icon_presence_oof12_regular = NotStr(''' + +''') +icon_video_off28_filled = NotStr(''' + +''') +icon_stop20_regular = NotStr(''' + +''') +icon_record_stop24_filled = NotStr(''' + +''') +icon_emoji_sparkle24_regular = NotStr(''' + +''') +icon_speaker048_regular = NotStr(''' + +''') +icon_document_pdf24_filled = NotStr(''' + +''') +icon_swipe_up24_regular = NotStr(''' + +''') +icon_chat_video20_filled = NotStr(''' + +''') +icon_square_hint_apps24_regular = NotStr(''' + +''') +icon_channel28_regular = NotStr(''' + +''') +icon_flowchart24_filled = NotStr(''' + +''') +icon_mail_inbox28_filled = NotStr(''' + +''') +icon_book_open_microphone28_filled = NotStr(''' + +''') +icon_prohibited20_regular = NotStr(''' + +''') +icon_cursor_hover20_filled = NotStr(''' + +''') +icon_book_open_microphone24_regular = NotStr(''' + +''') +icon_multiplier12_x24_filled = NotStr(''' + +''') +icon_drop20_filled = NotStr(''' + +''') +icon_conference_room28_filled = NotStr(''' + +''') +icon_call_park48_filled = NotStr(''' + +''') +icon_data_waterfall20_filled = NotStr(''' + +''') +icon_bookmark24_filled = NotStr(''' + +''') +icon_document_text_link20_regular = NotStr(''' + +''') +icon_table_cells_split20_filled = NotStr(''' + +''') +icon_checkbox_indeterminate20_filled = NotStr(''' + +''') +icon_square48_filled = NotStr(''' + +''') +icon_surface_earbuds24_filled = NotStr(''' + +''') +icon_drafts16_filled = NotStr(''' + +''') +icon_device_eq24_regular = NotStr(''' + +''') +icon_bluetooth_disabled24_regular = NotStr(''' + +''') +icon_previous20_regular = NotStr(''' + +''') +icon_phone_desktop16_filled = NotStr(''' + +''') +icon_document_javascript20_regular = NotStr(''' + +''') +icon_person_voice24_regular = NotStr(''' + +''') +icon_dismiss24_filled = NotStr(''' + +''') +icon_cursor_hover24_filled = NotStr(''' + +''') +icon_equal_off24_regular = NotStr(''' + +''') +icon_cellular_data324_filled = NotStr(''' + +''') +icon_call_missed28_regular = NotStr(''' + +''') +icon_text_align_justify24_regular = NotStr(''' + +''') +icon_laptop_dismiss16_regular = NotStr(''' + +''') +icon_text_position_through20_filled = NotStr(''' + +''') +icon_arrow_undo20_filled = NotStr(''' + +''') +icon_premium16_filled = NotStr(''' + +''') +icon_calculator_arrow_clockwise24_regular = NotStr(''' + +''') +icon_align_bottom48_regular = NotStr(''' + +''') +icon_align_left16_regular = NotStr(''' + +''') +icon_classification24_filled = NotStr(''' + +''') +icon_storage24_filled = NotStr(''' + +''') +icon_document_table_arrow_right24_filled = NotStr(''' + +''') +icon_folder_arrow_right28_filled = NotStr(''' + +''') +icon_drawer_arrow_download24_regular = NotStr(''' + +''') +icon_phone_span_out20_regular = NotStr(''' + +''') +icon_arrow_autofit_height20_regular = NotStr(''' + +''') +icon_rotate_right20_regular = NotStr(''' + +''') +icon_link32_regular = NotStr(''' + +''') +icon_app_title20_filled = NotStr(''' + +''') +icon_table_settings20_regular = NotStr(''' + +''') +icon_money_off20_filled = NotStr(''' + +''') +icon_home_add24_regular = NotStr(''' + +''') +icon_table_stack_below28_filled = NotStr(''' + +''') +icon_fps12020_filled = NotStr(''' + +''') +icon_home_checkmark16_filled = NotStr(''' + +''') +icon_wand16_filled = NotStr(''' + +''') +icon_megaphone16_filled = NotStr(''' + +''') +icon_album24_filled = NotStr(''' + +''') +icon_text_paragraph_direction24_regular = NotStr(''' + +''') +icon_comment_add28_filled = NotStr(''' + +''') +icon_glasses48_regular = NotStr(''' + +''') +icon_mail_inbox_add28_filled = NotStr(''' + +''') +icon_vehicle_car_profile_rtl20_filled = NotStr(''' + +''') +icon_people_error16_regular = NotStr(''' + +''') +icon_flip_horizontal48_filled = NotStr(''' + +''') +icon_caret_down_right24_regular = NotStr(''' + +''') +icon_handshake16_filled = NotStr(''' + +''') +icon_ruler16_filled = NotStr(''' + +''') +icon_sticker_add24_regular = NotStr(''' + +''') +icon_video_clip_multiple20_regular = NotStr(''' + +''') +icon_alert24_filled = NotStr(''' + +''') +icon_arrow_right48_filled = NotStr(''' + +''') +icon_link_square20_filled = NotStr(''' + +''') +icon_text_field20_filled = NotStr(''' + +''') +icon_scan_thumb_up16_regular = NotStr(''' + +''') +icon_document_person16_regular = NotStr(''' + +''') +icon_serial_port20_filled = NotStr(''' + +''') +icon_arrow_counterclockwise20_regular = NotStr(''' + +''') +icon_people_queue24_filled = NotStr(''' + +''') +icon_edit_arrow_back20_filled = NotStr(''' + +''') +icon_share_screen_stop24_regular = NotStr(''' + +''') +icon_video_person_sparkle28_regular = NotStr(''' + +''') +icon_add28_filled = NotStr(''' + +''') +icon_briefcase20_regular = NotStr(''' + +''') +icon_shape_union16_regular = NotStr(''' + +''') +icon_weather_moon_off48_regular = NotStr(''' + +''') +icon_task_list_square_rtl24_regular = NotStr(''' + +''') +icon_table_simple24_regular = NotStr(''' + +''') +icon_megaphone_off24_filled = NotStr(''' + +''') +icon_cloud_checkmark20_regular = NotStr(''' + +''') +icon_filter_dismiss16_regular = NotStr(''' + +''') +icon_chevron_circle_left16_filled = NotStr(''' + +''') +icon_table_link20_regular = NotStr(''' + +''') +icon_document_pdf32_regular = NotStr(''' + +''') +icon_share28_regular = NotStr(''' + +''') +icon_filter_dismiss20_regular = NotStr(''' + +''') +icon_comment24_regular = NotStr(''' + +''') +icon_stack_arrow_forward20_filled = NotStr(''' + +''') +icon_arrow_step_out16_filled = NotStr(''' + +''') +icon_clock24_regular = NotStr(''' + +''') +icon_notebook24_filled = NotStr(''' + +''') +icon_resize_large16_regular = NotStr(''' + +''') +icon_poll16_filled = NotStr(''' + +''') +icon_document_question_mark24_filled = NotStr(''' + +''') +icon_question20_filled = NotStr(''' + +''') +icon_fps96024_regular = NotStr(''' + +''') +icon_call_park16_regular = NotStr(''' + +''') +icon_glance_horizontal20_regular = NotStr(''' + +''') +icon_video_play_pause24_regular = NotStr(''' + +''') +icon_slide_transition24_filled = NotStr(''' + +''') +icon_poll16_regular = NotStr(''' + +''') +icon_cloud_off24_filled = NotStr(''' + +''') +icon_briefcase_off16_filled = NotStr(''' + +''') +icon_wifi_warning20_filled = NotStr(''' + +''') +icon_search_shield20_regular = NotStr(''' + +''') +icon_share_ios24_filled = NotStr(''' + +''') +icon_emoji_sparkle16_filled = NotStr(''' + +''') +icon_wifi324_filled = NotStr(''' + +''') +icon_desktop_signal20_filled = NotStr(''' + +''') +icon_calendar_person16_regular = NotStr(''' + +''') +icon_shapes20_regular = NotStr(''' + +''') +icon_clipboard_text_rtl20_regular = NotStr(''' + + + + + + +''') +icon_arrow_minimize28_regular = NotStr(''' + +''') +icon_apps_list24_filled = NotStr(''' + +''') +icon_text_align_distributed20_filled = NotStr(''' + +''') +icon_weather_thunderstorm20_filled = NotStr(''' + +''') +icon_clock_arrow_download20_filled = NotStr(''' + +''') +icon_paint_brush_arrow_up24_filled = NotStr(''' + +''') +icon_table_insert_column16_regular = NotStr(''' + +''') +icon_text_indent_increase_ltr20_filled = NotStr(''' + +''') +icon_rhombus32_regular = NotStr(''' + +''') +icon_xbox_console24_filled = NotStr(''' + +''') +icon_delete_dismiss20_filled = NotStr(''' + +''') +icon_autosum20_filled = NotStr(''' + +''') +icon_receipt20_filled = NotStr(''' + +''') +icon_branch_fork_link24_filled = NotStr(''' + +''') +icon_share_screen_person_overlay_inside16_regular = NotStr(''' + +''') +icon_trophy32_regular = NotStr(''' + +''') +icon_flash_settings20_regular = NotStr(''' + +''') +icon_cloud_checkmark20_filled = NotStr(''' + +''') +icon_multiplier18_x20_regular = NotStr(''' + +''') +icon_vehicle_subway24_filled = NotStr(''' + +''') +icon_warning12_regular = NotStr(''' + +''') +icon_text_change_case16_regular = NotStr(''' + +''') +icon_record28_regular = NotStr(''' + +''') +icon_bluetooth24_regular = NotStr(''' + +''') +icon_receipt_cube24_regular = NotStr(''' + +''') +icon_call_forward24_filled = NotStr(''' + +''') +icon_align_center_vertical28_regular = NotStr(''' + +''') +icon_text_grammar_arrow_left20_filled = NotStr(''' + +''') +icon_comment_arrow_right12_filled = NotStr(''' + +''') +icon_chevron_circle_up16_filled = NotStr(''' + +''') +icon_multiselect_ltr20_filled = NotStr(''' + +''') +icon_subtract_circle12_filled = NotStr(''' + +''') +icon_gas24_filled = NotStr(''' + +''') +icon_fluid16_filled = NotStr(''' + +''') +icon_document_endnote20_filled = NotStr(''' + +''') +icon_multiplier1_x32_filled = NotStr(''' + +''') +icon_document_lock32_filled = NotStr(''' + +''') +icon_comment_add16_regular = NotStr(''' + +''') +icon_pin24_filled = NotStr(''' + +''') +icon_zoom_out20_regular = NotStr(''' + +''') +icon_image_edit24_filled = NotStr(''' + +''') +icon_bin_full20_regular = NotStr(''' + +''') +icon_history24_regular = NotStr(''' + +''') +icon_call_pause20_regular = NotStr(''' + +''') +icon_developer_board_search20_regular = NotStr(''' + +''') +icon_document_arrow_left20_regular = NotStr(''' + +''') +icon_eyedropper20_regular = NotStr(''' + +''') +icon_checkbox_unchecked20_filled = NotStr(''' + +''') +icon_globe20_filled = NotStr(''' + +''') +icon_draw_text24_filled = NotStr(''' + +''') +icon_laptop20_filled = NotStr(''' + +''') +icon_battery920_filled = NotStr(''' + +''') +icon_document_settings20_regular = NotStr(''' + +''') +icon_directions16_regular = NotStr(''' + +''') +icon_cellular_warning24_filled = NotStr(''' + +''') +icon_align_bottom16_filled = NotStr(''' + +''') +icon_options48_filled = NotStr(''' + +''') +icon_reading_mode_mobile20_filled = NotStr(''' + +''') +icon_trophy_off20_regular = NotStr(''' + +''') +icon_emoji_smile_slight20_regular = NotStr(''' + +''') +icon_star_line_horizontal316_filled = NotStr(''' + +''') +icon_mic_prohibited16_filled = NotStr(''' + +''') +icon_reading_list_add24_filled = NotStr(''' + +''') +icon_text_grammar_error20_regular = NotStr(''' + +''') +icon_arrow_up_right24_filled = NotStr(''' + +''') +icon_checkmark_circle32_regular = NotStr(''' + +''') +icon_arrow_autofit_content24_filled = NotStr(''' + +''') +icon_network_check24_filled = NotStr(''' + +''') +icon_document_margins24_filled = NotStr(''' + +''') +icon_speaker116_regular = NotStr(''' + +''') +icon_mail_prohibited24_regular = NotStr(''' + +''') +icon_mail_alert24_regular = NotStr(''' + +''') +icon_document_header16_regular = NotStr(''' + +''') +icon_tag_error24_regular = NotStr(''' + +''') +icon_warning20_regular = NotStr(''' + +''') +icon_delete_off24_filled = NotStr(''' + +''') +icon_device_meeting_room16_regular = NotStr(''' + +''') +icon_video_person_sparkle48_regular = NotStr(''' + +''') +icon_phone_desktop24_filled = NotStr(''' + +''') +icon_people_list16_regular = NotStr(''' + +''') +icon_shifts_activity20_regular = NotStr(''' + +''') +icon_tag_lock_accent32_filled = NotStr(''' + +''') +icon_developer_board24_filled = NotStr(''' + +''') +icon_table_add16_regular = NotStr(''' + +''') +icon_tab_shield_dismiss24_filled = NotStr(''' + +''') +icon_multiplier15_x20_filled = NotStr(''' + +''') +icon_folder_open24_regular = NotStr(''' + +''') +icon_toolbox20_regular = NotStr(''' + +''') +icon_more_vertical24_regular = NotStr(''' + +''') +icon_autocorrect24_filled = NotStr(''' + +''') +icon_save16_regular = NotStr(''' + +''') +icon_align_center_vertical16_filled = NotStr(''' + +''') +icon_presence_blocked10_regular = NotStr(''' + +''') +icon_circle20_regular = NotStr(''' + +''') +icon_hdr24_regular = NotStr(''' + +''') +icon_window_new20_filled = NotStr(''' + +''') +icon_wifi124_regular = NotStr(''' + +''') +icon_library20_filled = NotStr(''' + +''') +icon_board_split20_filled = NotStr(''' + +''') +icon_document_catch_up24_regular = NotStr(''' + +''') +icon_text_indent_decrease_ltr24_regular = NotStr(''' + +''') +icon_phone_dismiss24_regular = NotStr(''' + +''') +icon_image_alt_text16_regular = NotStr(''' + +''') +icon_arrow_circle_up28_filled = NotStr(''' + +''') +icon_video_clip_multiple24_regular = NotStr(''' + +''') +icon_square28_filled = NotStr(''' + +''') +icon_person_call16_regular = NotStr(''' + +''') +icon_weather_cloudy24_filled = NotStr(''' + +''') +icon_document_edit20_filled = NotStr(''' + +''') +icon_arrow_undo48_filled = NotStr(''' + +''') +icon_mail_inbox_checkmark20_filled = NotStr(''' + +''') +icon_text_position_through24_filled = NotStr(''' + +''') +icon_chevron_left28_regular = NotStr(''' + +''') +icon_document_bullet_list_off20_filled = NotStr(''' + +''') +icon_square24_regular = NotStr(''' + +''') +icon_multiplier12_x28_filled = NotStr(''' + +''') +icon_mail_off24_regular = NotStr(''' + +''') +icon_animal_dog24_regular = NotStr(''' + +''') +icon_arrow_upload16_filled = NotStr(''' + +''') +icon_document_arrow_up16_regular = NotStr(''' + +''') +icon_time_picker24_regular = NotStr(''' + +''') +icon_table_resize_row20_regular = NotStr(''' + +''') +icon_document_bullet_list_multiple20_filled = NotStr(''' + +''') +icon_calendar_checkmark28_filled = NotStr(''' + +''') +icon_arrow_upload20_filled = NotStr(''' + +''') +icon_chevron_circle_right48_regular = NotStr(''' + +''') +icon_play48_filled = NotStr(''' + +''') +icon_text_change_case20_regular = NotStr(''' + +''') +icon_data_sunburst20_regular = NotStr(''' + +''') +icon_video_person_sparkle24_filled = NotStr(''' + +''') +icon_weather_drizzle24_regular = NotStr(''' + +''') +icon_resize_large20_filled = NotStr(''' + +''') +icon_food16_filled = NotStr(''' + +''') +icon_chart_person24_filled = NotStr(''' + +''') +icon_speaker_off24_filled = NotStr(''' + +''') +icon_emoji_laugh16_regular = NotStr(''' + +''') +icon_badge24_filled = NotStr(''' + +''') +icon_lightbulb20_regular = NotStr(''' + +''') +icon_speaker_bluetooth24_filled = NotStr(''' + +''') +icon_brightness_low20_regular = NotStr(''' + +''') +icon_archive16_filled = NotStr(''' + +''') +icon_filter_sync24_regular = NotStr(''' + +''') +icon_star_off20_filled = NotStr(''' + +''') +icon_arrow_autofit_width_dotted24_filled = NotStr(''' + +''') +icon_arrow_circle_down_right24_filled = NotStr(''' + +''') +icon_text_paragraph_direction_left16_filled = NotStr(''' + +''') +icon_screen_search20_regular = NotStr(''' + +''') +icon_desktop_pulse16_filled = NotStr(''' + +''') +icon_border_bottom_thick24_regular = NotStr(''' + +''') +icon_table_freeze_column_and_row24_filled = NotStr(''' + +''') +icon_premium24_regular = NotStr(''' + +''') +icon_brightness_high28_filled = NotStr(''' + +''') +icon_syringe20_regular = NotStr(''' + +''') +icon_cellular3_g24_filled = NotStr(''' + + + + + + + + + +''') +icon_person_clock20_filled = NotStr(''' + +''') +icon_next16_regular = NotStr(''' + +''') +icon_closed_caption16_filled = NotStr(''' + +''') +icon_book_number16_regular = NotStr(''' + +''') +icon_panel_separate_window20_filled = NotStr(''' + +''') +icon_mail_arrow_forward16_filled = NotStr(''' + +''') +icon_dual_screen_header24_filled = NotStr(''' + +''') +icon_weather_moon_off24_regular = NotStr(''' + +''') +icon_arrow_left12_filled = NotStr(''' + +''') +icon_mail_arrow_forward20_filled = NotStr(''' + +''') +icon_expand_up_right16_regular = NotStr(''' + +''') +icon_desktop28_regular = NotStr(''' + +''') +icon_tap_single20_filled = NotStr(''' + +''') +icon_drink_to_go24_filled = NotStr(''' + +''') +icon_square_hint20_filled = NotStr(''' + +''') +icon_caret_down_right24_filled = NotStr(''' + +''') +icon_dismiss12_filled = NotStr(''' + +''') +icon_desktop_keyboard24_regular = NotStr(''' + +''') +icon_scan_thumb_up24_filled = NotStr(''' + +''') +icon_channel_share20_regular = NotStr(''' + +''') +icon_tag_reset20_filled = NotStr(''' + +''') +icon_slide_add20_regular = NotStr(''' + +''') +icon_arrow_maximize48_regular = NotStr(''' + +''') +icon_attach16_regular = NotStr(''' + +''') +icon_flag_off16_regular = NotStr(''' + +''') +icon_text_align_center24_filled = NotStr(''' + +''') +icon_text_font_size16_filled = NotStr(''' + +''') +icon_auto_fit_height20_regular = NotStr(''' + +''') +icon_speaker_edit20_regular = NotStr(''' + +''') +icon_document_search24_regular = NotStr(''' + +''') +icon_arrow_maximize20_regular = NotStr(''' + +''') +icon_image_shadow24_filled = NotStr(''' + +''') +icon_location_live24_filled = NotStr(''' + +''') +icon_previous32_filled = NotStr(''' + +''') +icon_folder_briefcase20_regular = NotStr(''' + +''') +icon_app_store24_filled = NotStr(''' + +''') +icon_calendar_arrow_down24_regular = NotStr(''' + +''') +icon_comma24_regular = NotStr(''' + +''') +icon_document_add48_regular = NotStr(''' + +''') +icon_braces_variable20_filled = NotStr(''' + +''') +icon_emoji_sad24_regular = NotStr(''' + +''') +icon_chevron_down28_filled = NotStr(''' + +''') +icon_dentist28_filled = NotStr(''' + +''') +icon_arrow_counterclockwise_dashes20_regular = NotStr(''' + +''') +icon_guest16_filled = NotStr(''' + +''') +icon_arrow_up32_regular = NotStr(''' + +''') +icon_inking_tool_accent20_filled = NotStr(''' + +''') +icon_design_ideas20_filled = NotStr(''' + +''') +icon_channel_arrow_left16_filled = NotStr(''' + +''') +icon_tab28_filled = NotStr(''' + +''') +icon_eye16_filled = NotStr(''' + +''') +icon_tab_inprivate_account20_regular = NotStr(''' + +''') +icon_text_align_right16_filled = NotStr(''' + +''') +icon_headset48_filled = NotStr(''' + +''') +icon_open_folder16_filled = NotStr(''' + +''') +icon_gift_card_arrow_right20_filled = NotStr(''' + +''') +icon_tv_arrow_right20_filled = NotStr(''' + +''') +icon_document_briefcase24_regular = NotStr(''' + +''') +icon_group_dismiss24_regular = NotStr(''' + +''') +icon_document_table_search24_regular = NotStr(''' + +''') +icon_rhombus20_regular = NotStr(''' + +''') +icon_weather_rain_showers_day20_regular = NotStr(''' + +''') +icon_data_usage_edit20_filled = NotStr(''' + +''') +icon_box_multiple_arrow_right24_regular = NotStr(''' + +''') +icon_desktop_toolbox24_filled = NotStr(''' + +''') +icon_video16_regular = NotStr(''' + +''') +icon_text_align_left20_filled = NotStr(''' + +''') +icon_subtract_circle32_regular = NotStr(''' + +''') +icon_slide_text24_regular = NotStr(''' + +''') +icon_add28_regular = NotStr(''' + +''') +icon_table_insert_column24_regular = NotStr(''' + +''') +icon_document_table_cube24_regular = NotStr(''' + +''') +icon_earth16_filled = NotStr(''' + +''') +icon_diversity28_regular = NotStr(''' + +''') +icon_align_center_horizontal32_regular = NotStr(''' + +''') +icon_temperature16_filled = NotStr(''' + +''') +icon_shopping_bag_arrow_left24_regular = NotStr(''' + +''') +icon_table_cells_split16_regular = NotStr(''' + +''') +icon_cellular_data320_regular = NotStr(''' + +''') +icon_building_shop20_regular = NotStr(''' + +''') +icon_city24_regular = NotStr(''' + +''') +icon_weather_moon28_filled = NotStr(''' + +''') +icon_bug24_filled = NotStr(''' + +''') +icon_arrow_minimize16_regular = NotStr(''' + +''') +icon_weather_moon48_regular = NotStr(''' + +''') +icon_multiselect_ltr16_regular = NotStr(''' + +''') +icon_channel_arrow_left24_filled = NotStr(''' + +''') +icon_arrow_circle_up24_regular = NotStr(''' + +''') +icon_vehicle_truck16_filled = NotStr(''' + +''') +icon_settings16_regular = NotStr(''' + +''') +icon_table_stack_right16_filled = NotStr(''' + +''') +icon_dual_screen_group24_regular = NotStr(''' + +''') +icon_toggle_left24_filled = NotStr(''' + +''') +icon_split_vertical24_regular = NotStr(''' + +''') +icon_battery_checkmark20_regular = NotStr(''' + +''') +icon_meet_now16_regular = NotStr(''' + +''') +icon_arrow_circle_right20_regular = NotStr(''' + +''') +icon_cast24_regular = NotStr(''' + +''') +icon_lightbulb_filament24_filled = NotStr(''' + +''') +icon_print28_regular = NotStr(''' + +''') +icon_arrow_enter_up20_filled = NotStr(''' + +''') +icon_attach_arrow_right24_filled = NotStr(''' + +''') +icon_location_off16_filled = NotStr(''' + +''') +icon_camera_dome16_regular = NotStr(''' + +''') +icon_likert20_filled = NotStr(''' + +''') +icon_drawer_add24_regular = NotStr(''' + +''') +icon_thinking20_regular = NotStr(''' + +''') +icon_table_stack_above20_filled = NotStr(''' + +''') +icon_brightness_low48_regular = NotStr(''' + +''') +icon_desktop_cursor16_regular = NotStr(''' + +''') +icon_multiplier18_x28_filled = NotStr(''' + +''') +icon_multiplier2_x24_regular = NotStr(''' + +''') +icon_document_bullet_list24_filled = NotStr(''' + +''') +icon_shortpick24_filled = NotStr(''' + +''') +icon_shield_lock48_filled = NotStr(''' + +''') +icon_person_tag24_regular = NotStr(''' + +''') +icon_contract_down_left28_regular = NotStr(''' + +''') +icon_text_header220_filled = NotStr(''' + +''') +icon_channel_share16_regular = NotStr(''' + +''') +icon_presence_available16_filled = NotStr(''' + +''') +icon_chevron_circle_up48_filled = NotStr(''' + +''') +icon_slide_multiple_search20_filled = NotStr(''' + +''') +icon_chevron_circle_right24_regular = NotStr(''' + +''') +icon_presence_unknown12_regular = NotStr(''' + +''') +icon_style_guide24_regular = NotStr(''' + +''') +icon_person_swap20_filled = NotStr(''' + +''') +icon_cloud_off28_regular = NotStr(''' + +''') +icon_arrow_up_left48_regular = NotStr(''' + +''') +icon_building_lighthouse20_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_down16_filled = NotStr(''' + +''') +icon_arrow_hook_up_right20_regular = NotStr(''' + +''') +icon_mail_add16_filled = NotStr(''' + +''') +icon_person_tag48_filled = NotStr(''' + +''') +icon_bed24_regular = NotStr(''' + +''') +icon_scan_thumb_up_off28_regular = NotStr(''' + +''') +icon_mail_template20_filled = NotStr(''' + +''') +icon_shifts20_regular = NotStr(''' + +''') +icon_arrow_forward16_filled = NotStr(''' + +''') +icon_speaker_mute20_filled = NotStr(''' + +''') +icon_text_sort_ascending24_regular = NotStr(''' + +''') +icon_border_all16_filled = NotStr(''' + +''') +icon_text_paragraph20_regular = NotStr(''' + +''') +icon_window_dev_tools20_filled = NotStr(''' + +''') +icon_arrow_sync_circle16_filled = NotStr(''' + +''') +icon_tv_usb24_regular = NotStr(''' + +''') +icon_tap_single48_filled = NotStr(''' + +''') +icon_wifi420_filled = NotStr(''' + +''') +icon_shield_error16_regular = NotStr(''' + +''') +icon_image_search20_regular = NotStr(''' + +''') +icon_headset16_filled = NotStr(''' + +''') +icon_call_checkmark24_regular = NotStr(''' + +''') +icon_weather_cloudy48_filled = NotStr(''' + +''') +icon_gift16_regular = NotStr(''' + +''') +icon_speaker_edit16_filled = NotStr(''' + +''') +icon_window_inprivate_account20_filled = NotStr(''' + +''') +icon_square_hint_sparkles32_filled = NotStr(''' + +''') +icon_glasses48_filled = NotStr(''' + +''') +icon_timer_off24_regular = NotStr(''' + +''') +icon_desktop_mac20_regular = NotStr(''' + +''') +icon_text_align_distributed_evenly24_regular = NotStr(''' + +''') +icon_keyboard_layout_one_handed_left24_regular = NotStr(''' + +''') +icon_rotate_right20_filled = NotStr(''' + +''') +icon_checkbox_person20_regular = NotStr(''' + +''') +icon_calendar_ltr48_regular = NotStr(''' + +''') +icon_note_pin16_filled = NotStr(''' + +''') +icon_text_indent_increase_rtl20_regular = NotStr(''' + +''') +icon_table_move_above16_filled = NotStr(''' + +''') +icon_table_cells_merge24_regular = NotStr(''' + +''') +icon_skip_back1032_filled = NotStr(''' + +''') +icon_alert28_filled = NotStr(''' + +''') +icon_cellular_data324_regular = NotStr(''' + +''') +icon_text_header224_filled = NotStr(''' + +''') +icon_guardian20_regular = NotStr(''' + +''') +icon_add_square_multiple16_regular = NotStr(''' + +''') +icon_chevron_left48_regular = NotStr(''' + +''') +icon_fps6020_filled = NotStr(''' + +''') +icon_vehicle_car_profile_ltr20_regular = NotStr(''' + +''') +icon_slide_multiple24_regular = NotStr(''' + +''') +icon_weather_rain_showers_night20_filled = NotStr(''' + +''') +icon_scan_thumb_up20_regular = NotStr(''' + +''') +icon_math_symbols32_regular = NotStr(''' + +''') +icon_star_settings20_filled = NotStr(''' + +''') +icon_vehicle_cab28_filled = NotStr(''' + +''') +icon_arrow_sync_circle16_regular = NotStr(''' + +''') +icon_font_space_tracking_in16_regular = NotStr(''' + +''') +icon_play24_filled = NotStr(''' + +''') +icon_connector20_regular = NotStr(''' + +''') +icon_call_outbound20_filled = NotStr(''' + +''') +icon_text_bullet_list_square_warning24_regular = NotStr(''' + +''') +icon_align_start_vertical20_filled = NotStr(''' + + + + +''') +icon_camera_add20_filled = NotStr(''' + +''') +icon_read_aloud20_filled = NotStr(''' + +''') +icon_arrow_undo24_regular = NotStr(''' + +''') +icon_calendar_ltr28_filled = NotStr(''' + +''') +icon_emoji20_regular = NotStr(''' + +''') +icon_window_wrench48_filled = NotStr(''' + +''') +icon_lock_multiple24_regular = NotStr(''' + +''') +icon_calendar_reply24_filled = NotStr(''' + +''') +icon_square_add20_regular = NotStr(''' + +''') +icon_heart_broken20_regular = NotStr(''' + +''') +icon_star_half24_filled = NotStr(''' + +''') +icon_weather_moon_off28_regular = NotStr(''' + +''') +icon_scan_type_checkmark20_filled = NotStr(''' + +''') +icon_text_paragraph24_filled = NotStr(''' + +''') +icon_class20_regular = NotStr(''' + +''') +icon_more_vertical16_regular = NotStr(''' + +''') +icon_pause12_filled = NotStr(''' + +''') +icon_subtract48_filled = NotStr(''' + +''') +icon_channel_dismiss24_filled = NotStr(''' + +''') +icon_battery1024_filled = NotStr(''' + +''') +icon_number_row24_filled = NotStr(''' + +''') +icon_earth20_regular = NotStr(''' + +''') +icon_document_page_number20_regular = NotStr(''' + +''') +icon_javascript20_filled = NotStr(''' + +''') +icon_signature16_filled = NotStr(''' + +''') +icon_more_horizontal16_filled = NotStr(''' + +''') +icon_comment_arrow_right28_filled = NotStr(''' + +''') +icon_calendar_multiple16_regular = NotStr(''' + +''') +icon_people_error24_filled = NotStr(''' + +''') +icon_arrow_expand24_regular = NotStr(''' + +''') +icon_data_bar_horizontal24_regular = NotStr(''' + +''') +icon_window_arrow_up24_filled = NotStr(''' + +''') +icon_send_copy24_filled = NotStr(''' + +''') +icon_shield48_filled = NotStr(''' + +''') +icon_ribbon_off16_filled = NotStr(''' + +''') +icon_image_arrow_counterclockwise24_filled = NotStr(''' + +''') +icon_arrow_maximize_vertical48_regular = NotStr(''' + +''') +icon_math_format_professional24_regular = NotStr(''' + +''') +icon_tab_desktop_image24_regular = NotStr(''' + +''') +icon_presenter_off24_regular = NotStr(''' + +''') +icon_arrow_maximize_vertical48_filled = NotStr(''' + +''') +icon_person20_regular = NotStr(''' + +''') +icon_comment20_regular = NotStr(''' + +''') +icon_person_settings20_regular = NotStr(''' + +''') +icon_person_info16_filled = NotStr(''' + +''') +icon_hat_graduation24_regular = NotStr(''' + +''') +icon_rhombus16_regular = NotStr(''' + +''') +icon_panel_right_contract20_filled = NotStr(''' + +''') +icon_building_retail_money20_regular = NotStr(''' + +''') +icon_speaker_mute16_filled = NotStr(''' + +''') +icon_arrow_turn_bidirectional_down_right20_filled = NotStr(''' + +''') +icon_attach20_filled = NotStr(''' + +''') +icon_arrow_step_in_left16_regular = NotStr(''' + +''') +icon_desktop_keyboard28_regular = NotStr(''' + +''') +icon_shield_checkmark20_regular = NotStr(''' + +''') +icon_protocol_handler16_filled = NotStr(''' + +''') +icon_mail_attach16_filled = NotStr(''' + +''') +icon_table_stack_above24_regular = NotStr(''' + +''') +icon_desktop_keyboard20_filled = NotStr(''' + +''') +icon_record_stop16_regular = NotStr(''' + +''') +icon_table_add20_filled = NotStr(''' + +''') +icon_channel_arrow_left48_filled = NotStr(''' + +''') +icon_calendar_month24_filled = NotStr(''' + +''') +icon_fingerprint48_regular = NotStr(''' + +''') +icon_oval28_filled = NotStr(''' + +''') +icon_dock_row20_filled = NotStr(''' + +''') +icon_cloud_arrow_up32_filled = NotStr(''' + +''') +icon_document_add24_filled = NotStr(''' + +''') +icon_shield_dismiss16_regular = NotStr(''' + +''') +icon_call_prohibited28_regular = NotStr(''' + +''') +icon_arrow_left24_regular = NotStr(''' + +''') +icon_phone_laptop16_filled = NotStr(''' + +''') +icon_video_recording20_regular = NotStr(''' + +''') +icon_vehicle_car_profile_rtl16_regular = NotStr(''' + +''') +icon_food20_filled = NotStr(''' + +''') +icon_chevron_up_down20_regular = NotStr(''' + +''') +icon_location24_regular = NotStr(''' + +''') +icon_paint_brush_arrow_down24_filled = NotStr(''' + +''') +icon_pin48_filled = NotStr(''' + +''') +icon_gift20_regular = NotStr(''' + +''') +icon_trophy_off28_filled = NotStr(''' + +''') +icon_image_alt_text24_filled = NotStr(''' + +''') +icon_caret_down12_filled = NotStr(''' + +''') +icon_table_insert_row24_regular = NotStr(''' + +''') +icon_square_arrow_forward16_filled = NotStr(''' + +''') +icon_pivot20_filled = NotStr(''' + +''') +icon_photo_filter24_regular = NotStr(''' + +''') +icon_sparkle48_regular = NotStr(''' + +''') +icon_contract_down_left24_filled = NotStr(''' + +''') +icon_important20_filled = NotStr(''' + +''') +icon_headphones_sound_wave20_regular = NotStr(''' + +''') +icon_math_symbols48_filled = NotStr(''' + +''') +icon_text_grammar_dismiss24_regular = NotStr(''' + +''') +icon_code20_filled = NotStr(''' + +''') +icon_checkbox_checked_sync16_regular = NotStr(''' + +''') +icon_device_eq20_filled = NotStr(''' + +''') +icon_branch_fork_hint24_filled = NotStr(''' + +''') +icon_arrow_down_left16_regular = NotStr(''' + +''') +icon_window_dev_tools16_regular = NotStr(''' + +''') +icon_window_ad_off20_regular = NotStr(''' + +''') +icon_chat_settings20_filled = NotStr(''' + +''') +icon_receipt_play24_filled = NotStr(''' + +''') +icon_home32_filled = NotStr(''' + +''') +icon_person_feedback20_filled = NotStr(''' + +''') +icon_camera24_regular = NotStr(''' + +''') +icon_heart12_filled = NotStr(''' + +''') +icon_surface_earbuds20_filled = NotStr(''' + +''') +icon_book_toolbox24_regular = NotStr(''' + +''') +icon_gauge24_filled = NotStr(''' + +''') +icon_clipboard_task_list_ltr20_regular = NotStr(''' + +''') +icon_weather_duststorm48_regular = NotStr(''' + +''') +icon_brightness_high48_filled = NotStr(''' + +''') +icon_note16_filled = NotStr(''' + +''') +icon_weather_sunny_low20_filled = NotStr(''' + +''') +icon_calculator24_filled = NotStr(''' + +''') +icon_window_wrench20_regular = NotStr(''' + +''') +icon_calendar_add20_filled = NotStr(''' + +''') +icon_speaker_off20_filled = NotStr(''' + +''') +icon_music_note124_filled = NotStr(''' + +''') +icon_rating_mature24_filled = NotStr(''' + +''') +icon_keyboard_dock24_filled = NotStr(''' + +''') +icon_delete_dismiss24_regular = NotStr(''' + +''') +icon_savings24_filled = NotStr(''' + +''') +icon_blur28_filled = NotStr(''' + +''') +icon_folder_zip24_filled = NotStr(''' + +''') +icon_laptop24_regular = NotStr(''' + +''') +icon_shifts_availability24_regular = NotStr(''' + +''') +icon_sport_american_football24_regular = NotStr(''' + +''') +icon_arrow_curve_up_left20_filled = NotStr(''' + +''') +icon_settings_chat20_regular = NotStr(''' + +''') +icon_prohibited_multiple24_filled = NotStr(''' + +''') +icon_square20_regular = NotStr(''' + +''') +icon_arrow_up48_regular = NotStr(''' + +''') +icon_person_question_mark16_regular = NotStr(''' + +''') +icon_tent24_regular = NotStr(''' + +''') +icon_contact_card_ribbon28_filled = NotStr(''' + +''') +icon_video28_regular = NotStr(''' + +''') +icon_open_folder28_filled = NotStr(''' + +''') +icon_key20_filled = NotStr(''' + +''') +icon_text_align_center20_regular = NotStr(''' + +''') +icon_animal_rabbit20_filled = NotStr(''' + +''') +icon_table_stack_right24_filled = NotStr(''' + +''') +icon_text_grammar_wand24_regular = NotStr(''' + +''') +icon_box20_regular = NotStr(''' + +''') +icon_document_arrow_down20_filled = NotStr(''' + +''') +icon_drag24_regular = NotStr(''' + +''') +icon_arrow_repeat_all16_filled = NotStr(''' + +''') +icon_box24_filled = NotStr(''' + +''') +icon_table24_filled = NotStr(''' + +''') +icon_comment_multiple16_filled = NotStr(''' + +''') +icon_globe32_regular = NotStr(''' + +''') +icon_speaker148_regular = NotStr(''' + +''') +icon_drink_margarita24_filled = NotStr(''' + +''') +icon_document20_filled = NotStr(''' + +''') +icon_arrow_bounce24_regular = NotStr(''' + +''') +icon_arrow_split20_regular = NotStr(''' + +''') +icon_square_hint16_filled = NotStr(''' + +''') +icon_molecule48_filled = NotStr(''' + +''') +icon_oval20_filled = NotStr(''' + +''') +icon_document_landscape24_filled = NotStr(''' + +''') +icon_document_link16_filled = NotStr(''' + +''') +icon_pentagon48_filled = NotStr(''' + +''') +icon_tab_add20_regular = NotStr(''' + +''') +icon_scan_dash16_regular = NotStr(''' + +''') +icon_cloud_dismiss48_filled = NotStr(''' + +''') +icon_sidebar_search_rtl20_filled = NotStr(''' + +''') +icon_home12_regular = NotStr(''' + +''') +icon_share_screen_person_p28_regular = NotStr(''' + +''') +icon_text_number_format24_regular = NotStr(''' + +''') +icon_desktop_flow20_filled = NotStr(''' + +''') +icon_keyboard_layout_split24_filled = NotStr(''' + +''') +icon_mail_clock24_filled = NotStr(''' + +''') +icon_video36020_regular = NotStr(''' + +''') +icon_zoom_in24_filled = NotStr(''' + +''') +icon_checkmark28_filled = NotStr(''' + +''') +icon_vehicle_car_collision24_filled = NotStr(''' + +''') +icon_person_arrow_left16_filled = NotStr(''' + +''') +icon_text_direction_horizontal_left20_regular = NotStr(''' + +''') +icon_comment_error24_regular = NotStr(''' + +''') +icon_share_screen_person_p20_regular = NotStr(''' + +''') +icon_arrow_bounce16_filled = NotStr(''' + +''') +icon_person_prohibited24_filled = NotStr(''' + +''') +icon_call_forward28_filled = NotStr(''' + +''') +icon_arrow_sort20_filled = NotStr(''' + +''') +icon_comment_multiple_link24_filled = NotStr(''' + +''') +icon_tap_double24_regular = NotStr(''' + +''') +icon_bookmark_multiple32_regular = NotStr(''' + +''') +icon_chevron_circle_right12_filled = NotStr(''' + +''') +icon_people_add24_filled = NotStr(''' + +''') +icon_arrow_left16_filled = NotStr(''' + +''') +icon_door28_filled = NotStr(''' + +''') +icon_conference_room20_filled = NotStr(''' + +''') +icon_mail_edit24_filled = NotStr(''' + +''') +icon_folder20_filled = NotStr(''' + +''') +icon_alert_urgent16_filled = NotStr(''' + +''') +icon_share_screen_start28_filled = NotStr(''' + +''') +icon_table_resize_row16_filled = NotStr(''' + +''') +icon_checkmark12_regular = NotStr(''' + +''') +icon_cloud_arrow_up28_filled = NotStr(''' + +''') +icon_error_circle20_filled = NotStr(''' + +''') +icon_calendar_week_start28_regular = NotStr(''' + +''') +icon_emoji_angry20_regular = NotStr(''' + +''') +icon_brightness_high20_filled = NotStr(''' + +''') +icon_document_table_search24_filled = NotStr(''' + +''') +icon_document_table16_filled = NotStr(''' + +''') +icon_document_text_link24_regular = NotStr(''' + +''') +icon_phone_update24_regular = NotStr(''' + +''') +icon_tab_arrow_left24_filled = NotStr(''' + +''') +icon_emoji_angry24_filled = NotStr(''' + +''') +icon_stack24_regular = NotStr(''' + +''') +icon_align_end_vertical20_regular = NotStr(''' + + + + +''') +icon_calendar_star16_regular = NotStr(''' + +''') +icon_glasses24_regular = NotStr(''' + +''') +icon_extended_dock24_filled = NotStr(''' + +''') +icon_pill24_filled = NotStr(''' + +''') +icon_mic32_regular = NotStr(''' + +''') +icon_document_catch_up20_regular = NotStr(''' + +''') +icon_dual_screen_update24_regular = NotStr(''' + +''') +icon_bluetooth28_regular = NotStr(''' + +''') +icon_headset48_regular = NotStr(''' + +''') +icon_alert20_filled = NotStr(''' + +''') +icon_text_indent_decrease_ltr16_regular = NotStr(''' + +''') +icon_text_subscript20_regular = NotStr(''' + +''') +icon_cursor_hover48_filled = NotStr(''' + +''') +icon_link_square12_filled = NotStr(''' + +''') +icon_arrow_down32_regular = NotStr(''' + +''') +icon_data_bar_vertical_add20_regular = NotStr(''' + +''') +icon_save_arrow_right24_filled = NotStr(''' + +''') +icon_zoom_out16_filled = NotStr(''' + +''') +icon_border_bottom_double24_regular = NotStr(''' + +''') +icon_text_align_justify24_filled = NotStr(''' + +''') +icon_closed_caption20_filled = NotStr(''' + +''') +icon_align_space_around_horizontal20_regular = NotStr(''' + + + + +''') +icon_dialpad_off20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left28_regular = NotStr(''' + +''') +icon_split_vertical48_filled = NotStr(''' + +''') +icon_text_line_spacing24_regular = NotStr(''' + +''') +icon_slide_text16_regular = NotStr(''' + +''') +icon_document_error16_filled = NotStr(''' + +''') +icon_alert_off20_filled = NotStr(''' + +''') +icon_dismiss_square_multiple16_regular = NotStr(''' + +''') +icon_arrow_hook_down_left16_filled = NotStr(''' + +''') +icon_skip_forward3020_filled = NotStr(''' + +''') +icon_picture_in_picture24_regular = NotStr(''' + +''') +icon_arrow_circle_down16_regular = NotStr(''' + +''') +icon_scan_thumb_up28_regular = NotStr(''' + +''') +icon_panel_bottom_expand20_filled = NotStr(''' + +''') +icon_calendar_clock20_filled = NotStr(''' + +''') +icon_snooze16_regular = NotStr(''' + +''') +icon_smartwatch24_filled = NotStr(''' + +''') +icon_book_contacts24_filled = NotStr(''' + +''') +icon_text_subscript16_regular = NotStr(''' + +''') +icon_scan_dash28_filled = NotStr(''' + +''') +icon_puzzle_piece24_filled = NotStr(''' + +''') +icon_arrow_left28_filled = NotStr(''' + +''') +icon_sanitize24_regular = NotStr(''' + +''') +icon_pin16_regular = NotStr(''' + +''') +icon_text_position_tight20_filled = NotStr(''' + +''') +icon_task_list_rtl20_filled = NotStr(''' + +''') +icon_document_dismiss24_filled = NotStr(''' + +''') +icon_checkmark24_regular = NotStr(''' + +''') +icon_cloud_sync48_filled = NotStr(''' + +''') +icon_fps6028_filled = NotStr(''' + +''') +icon_box_arrow_left20_filled = NotStr(''' + +''') +icon_multiplier2_x32_filled = NotStr(''' + +''') +icon_weather_rain_showers_night20_regular = NotStr(''' + +''') +icon_document_header24_filled = NotStr(''' + +''') +icon_speaker_mute48_filled = NotStr(''' + +''') +icon_shopping_bag_pause24_filled = NotStr(''' + +''') +icon_person_add28_regular = NotStr(''' + +''') +icon_settings16_filled = NotStr(''' + +''') +icon_comment_checkmark12_filled = NotStr(''' + +''') +icon_alert_urgent20_filled = NotStr(''' + +''') +icon_text_change_case24_regular = NotStr(''' + +''') +icon_cube12_regular = NotStr(''' + +''') +icon_chat_warning16_regular = NotStr(''' + +''') +icon_scale_fit16_filled = NotStr(''' + +''') +icon_tv_usb48_filled = NotStr(''' + +''') +icon_gas_pump24_regular = NotStr(''' + +''') +icon_presence_unknown16_regular = NotStr(''' + +''') +icon_tab_desktop_bottom24_regular = NotStr(''' + +''') +icon_shield_dismiss24_filled = NotStr(''' + +''') +icon_calendar_reply20_regular = NotStr(''' + +''') +icon_save20_filled = NotStr(''' + +''') +icon_text_position_front20_regular = NotStr(''' + +''') +icon_cloud_arrow_up16_regular = NotStr(''' + +''') +icon_text_header124_filled = NotStr(''' + +''') +icon_share_screen_start48_regular = NotStr(''' + +''') +icon_phone_shake24_regular = NotStr(''' + +''') +icon_midi20_filled = NotStr(''' + +''') +icon_globe_video20_regular = NotStr(''' + +''') +icon_tag_error16_filled = NotStr(''' + +''') +icon_vehicle_car_collision48_filled = NotStr(''' + +''') +icon_sound_source24_filled = NotStr(''' + +''') +icon_grid28_regular = NotStr(''' + +''') +icon_folder_globe20_regular = NotStr(''' + +''') +icon_speaker_usb28_filled = NotStr(''' + +''') +icon_notebook_question_mark24_regular = NotStr(''' + +''') +icon_cloud_words16_regular = NotStr(''' + +''') +icon_select_object_skew_dismiss24_regular = NotStr(''' + +''') +icon_production24_regular = NotStr(''' + +''') +icon_calendar_ltr32_filled = NotStr(''' + +''') +icon_document_person20_filled = NotStr(''' + +''') +icon_multiplier1_x20_regular = NotStr(''' + +''') +icon_folder_add16_filled = NotStr(''' + +''') +icon_notepad_edit20_regular = NotStr(''' + +''') +icon_flow16_filled = NotStr(''' + +''') +icon_rewind24_filled = NotStr(''' + +''') +icon_chevron_up12_regular = NotStr(''' + +''') +icon_person48_regular = NotStr(''' + +''') +icon_person_feedback24_filled = NotStr(''' + +''') +icon_movies_and_tv16_regular = NotStr(''' + +''') +icon_reward16_regular = NotStr(''' + +''') +icon_pi24_regular = NotStr(''' + +''') +icon_toolbox24_filled = NotStr(''' + +''') +icon_play_circle24_filled = NotStr(''' + +''') +icon_mic_prohibited24_regular = NotStr(''' + +''') +icon_table_add24_filled = NotStr(''' + +''') +icon_immersive_reader16_filled = NotStr(''' + +''') +icon_shield_keyhole24_regular = NotStr(''' + +''') +icon_dumbbell20_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_down20_regular = NotStr(''' + +''') +icon_arrow_bounce24_filled = NotStr(''' + +''') +icon_person_arrow_right24_regular = NotStr(''' + +''') +icon_star_add20_filled = NotStr(''' + +''') +icon_balloon20_filled = NotStr(''' + +''') +icon_box_multiple_search24_regular = NotStr(''' + +''') +icon_line_dashes24_regular = NotStr(''' + +''') +icon_tap_double32_regular = NotStr(''' + +''') +icon_comment_multiple_link24_regular = NotStr(''' + +''') +icon_meet_now32_filled = NotStr(''' + +''') +icon_luggage28_filled = NotStr(''' + +''') +icon_notebook_section24_regular = NotStr(''' + +''') +icon_document_catch_up16_filled = NotStr(''' + +''') +icon_bookmark_search20_filled = NotStr(''' + +''') +icon_multiplier5_x32_regular = NotStr(''' + +''') +icon_arrow_reply48_filled = NotStr(''' + +''') +icon_scan_dash20_filled = NotStr(''' + +''') +icon_cloud_checkmark24_regular = NotStr(''' + +''') +icon_comment_arrow_left20_filled = NotStr(''' + +''') +icon_mail_inbox_arrow_right24_filled = NotStr(''' + +''') +icon_window_shield20_regular = NotStr(''' + +''') +icon_presenter_off20_filled = NotStr(''' + +''') +icon_border_none20_regular = NotStr(''' + +''') +icon_shield_badge20_regular = NotStr(''' + +''') +icon_contact_card_ribbon32_filled = NotStr(''' + +''') +icon_video_off48_filled = NotStr(''' + +''') +icon_video_sync20_filled = NotStr(''' + +''') +icon_book_search20_filled = NotStr(''' + +''') +icon_text_bold20_regular = NotStr(''' + +''') +icon_weather_haze20_filled = NotStr(''' + +''') +icon_weather_rain_showers_night24_filled = NotStr(''' + +''') +icon_doctor16_filled = NotStr(''' + +''') +icon_document_arrow_right24_regular = NotStr(''' + + + + +''') +icon_open48_filled = NotStr(''' + +''') +icon_checkbox_unchecked24_filled = NotStr(''' + +''') +icon_arrow_enter_left24_regular = NotStr(''' + +''') +icon_tab_desktop_multiple20_regular = NotStr(''' + +''') +icon_heart20_filled = NotStr(''' + +''') +icon_video_person24_filled = NotStr(''' + +''') +icon_time_and_weather24_filled = NotStr(''' + +''') +icon_vehicle_cab20_regular = NotStr(''' + +''') +icon_headphones_sound_wave32_regular = NotStr(''' + +''') +icon_add_square_multiple16_filled = NotStr(''' + +''') +icon_ribbon24_regular = NotStr(''' + +''') +icon_filter24_filled = NotStr(''' + +''') +icon_apps_add_in16_regular = NotStr(''' + +''') +icon_chevron_left20_regular = NotStr(''' + +''') +icon_book_add24_regular = NotStr(''' + +''') +icon_emoji_sad20_regular = NotStr(''' + +''') +icon_arrow_up_left24_regular = NotStr(''' + +''') +icon_person32_filled = NotStr(''' + +''') +icon_scan_text24_regular = NotStr(''' + +''') +icon_calendar_arrow_right24_filled = NotStr(''' + +''') +icon_sticker24_filled = NotStr(''' + +''') +icon_battery224_regular = NotStr(''' + +''') +icon_clipboard_pulse24_regular = NotStr(''' + +''') +icon_note_edit24_regular = NotStr(''' + +''') +icon_text_bullet_list_ltr16_filled = NotStr(''' + +''') +icon_money_calculator24_filled = NotStr(''' + +''') +icon_flip_vertical48_regular = NotStr(''' + +''') +icon_draw_image24_regular = NotStr(''' + +''') +icon_checkbox_checked_sync16_filled = NotStr(''' + +''') +icon_info20_regular = NotStr(''' + +''') +icon_notepad16_filled = NotStr(''' + +''') +icon_clipboard_bullet_list_rtl16_filled = NotStr(''' + +''') +icon_people_community_add28_filled = NotStr(''' + +''') +icon_rocket24_filled = NotStr(''' + +''') +icon_beach24_filled = NotStr(''' + +''') +icon_doctor28_regular = NotStr(''' + +''') +icon_calendar_person20_filled = NotStr(''' + +''') +icon_table_freeze_column_and_row16_filled = NotStr(''' + +''') +icon_weather_rain_showers_day48_regular = NotStr(''' + +''') +icon_document_page_top_center24_regular = NotStr(''' + +''') +icon_layer24_filled = NotStr(''' + +''') +icon_text_column_two_right20_regular = NotStr(''' + +''') +icon_tasks_app20_filled = NotStr(''' + +''') +icon_circle_small24_regular = NotStr(''' + +''') +icon_smartwatch_dot24_filled = NotStr(''' + +''') +icon_comment_lightning24_regular = NotStr(''' + +''') +icon_desktop32_filled = NotStr(''' + +''') +icon_warning24_regular = NotStr(''' + +''') +icon_text_case_title20_filled = NotStr(''' + +''') +icon_border_left20_regular = NotStr(''' + +''') +icon_translate16_regular = NotStr(''' + +''') +icon_folder_arrow_right24_filled = NotStr(''' + +''') +icon_arrow_hook_down_right20_regular = NotStr(''' + +''') +icon_people_money24_filled = NotStr(''' + +''') +icon_arrow_circle_right28_regular = NotStr(''' + +''') +icon_briefcase_off24_filled = NotStr(''' + +''') +icon_send28_filled = NotStr(''' + +''') +icon_add_square24_filled = NotStr(''' + +''') +icon_textbox_align_bottom24_regular = NotStr(''' + +''') +icon_shield_lock24_filled = NotStr(''' + +''') +icon_backpack48_filled = NotStr(''' + +''') +icon_mic_off12_regular = NotStr(''' + +''') +icon_mail_attach20_regular = NotStr(''' + +''') +icon_reading_mode_mobile20_regular = NotStr(''' + +''') +icon_comment_multiple_checkmark16_filled = NotStr(''' + +''') +icon_cloud_dismiss28_filled = NotStr(''' + +''') +icon_temperature16_regular = NotStr(''' + +''') +icon_circle48_filled = NotStr(''' + +''') +icon_clock_dismiss20_filled = NotStr(''' + +''') +icon_edit20_regular = NotStr(''' + +''') +icon_building_bank48_filled = NotStr(''' + +''') +icon_book_theta24_regular = NotStr(''' + +''') +icon_ios_arrow_rtl24_filled = NotStr(''' + +''') +icon_conference_room16_regular = NotStr(''' + +''') +icon_shopping_bag20_filled = NotStr(''' + +''') +icon_text_clear_formatting20_filled = NotStr(''' + +''') +icon_rewind20_filled = NotStr(''' + +''') +icon_wifi_off24_regular = NotStr(''' + +''') +icon_balloon24_regular = NotStr(''' + +''') +icon_shopping_bag_pause24_regular = NotStr(''' + +''') +icon_text_bullet_list_square_warning24_filled = NotStr(''' + +''') +icon_beach32_regular = NotStr(''' + +''') +icon_control_button24_filled = NotStr(''' + +''') +icon_people_add20_regular = NotStr(''' + +''') +icon_book_star24_filled = NotStr(''' + +''') +icon_mail_inbox_checkmark16_filled = NotStr(''' + +''') +icon_image20_filled = NotStr(''' + +''') +icon_textbox_align_top_rotate9024_regular = NotStr(''' + +''') +icon_add_subtract_circle28_regular = NotStr(''' + +''') +icon_money_dismiss24_regular = NotStr(''' + +''') +icon_checkbox_checked20_regular = NotStr(''' + +''') +icon_checkbox_checked_sync20_filled = NotStr(''' + +''') +icon_font_space_tracking_out20_regular = NotStr(''' + +''') +icon_add24_filled = NotStr(''' + +''') +icon_document_arrow_right20_regular = NotStr(''' + +''') +icon_subtract_circle_arrow_forward16_regular = NotStr(''' + +''') +icon_voicemail_subtract16_regular = NotStr(''' + +''') +icon_directions24_filled = NotStr(''' + +''') +icon_screen_person20_filled = NotStr(''' + +''') +icon_calendar_multiple24_regular = NotStr(''' + +''') +icon_dual_screen_mirror24_regular = NotStr(''' + +''') +icon_preview_link24_regular = NotStr(''' + +''') +icon_call_prohibited28_filled = NotStr(''' + +''') +icon_apps_add_in20_filled = NotStr(''' + +''') +icon_bowl_chopsticks16_regular = NotStr(''' + +''') +icon_link32_filled = NotStr(''' + +''') +icon_emoji_sparkle48_filled = NotStr(''' + +''') +icon_arrow_export_up24_filled = NotStr(''' + +''') +icon_run20_regular = NotStr(''' + +''') +icon_compose28_regular = NotStr(''' + +''') +icon_arrow_circle_left28_filled = NotStr(''' + +''') +icon_app_generic20_filled = NotStr(''' + +''') +icon_local_language28_regular = NotStr(''' + +''') +icon_sticker20_regular = NotStr(''' + +''') +icon_headset_add20_regular = NotStr(''' + +''') +icon_class20_filled = NotStr(''' + +''') +icon_align_left24_filled = NotStr(''' + +''') +icon_calendar_rtl48_filled = NotStr(''' + +''') +icon_person_feedback24_regular = NotStr(''' + +''') +icon_channel28_filled = NotStr(''' + +''') +icon_lasso28_regular = NotStr(''' + +''') +icon_folder48_filled = NotStr(''' + +''') +icon_checkbox_warning20_regular = NotStr(''' + +''') +icon_caret_up16_filled = NotStr(''' + +''') +icon_scan_table24_filled = NotStr(''' + +''') +icon_tab28_regular = NotStr(''' + +''') +icon_print28_filled = NotStr(''' + +''') +icon_square_shadow12_regular = NotStr(''' + +''') +icon_skip_back1048_regular = NotStr(''' + +''') +icon_document_header16_filled = NotStr(''' + +''') +icon_table_stack_left16_regular = NotStr(''' + +''') +icon_select_object_skew24_filled = NotStr(''' + +''') +icon_key16_filled = NotStr(''' + +''') +icon_certificate24_filled = NotStr(''' + +''') +icon_apps24_regular = NotStr(''' + +''') +icon_branch_fork_link20_regular = NotStr(''' + +''') +icon_text_position_front24_filled = NotStr(''' + +''') +icon_cloud_arrow_up48_regular = NotStr(''' + +''') +icon_channel_alert16_regular = NotStr(''' + +''') +icon_globe_prohibited20_regular = NotStr(''' + +''') +icon_quiz_new48_filled = NotStr(''' + +''') +icon_live_off20_filled = NotStr(''' + +''') +icon_wifi_warning24_regular = NotStr(''' + +''') +icon_document_edit24_regular = NotStr(''' + +''') +icon_bookmark_multiple24_regular = NotStr(''' + +''') +icon_battery520_filled = NotStr(''' + +''') +icon_document_landscape20_regular = NotStr(''' + +''') +icon_image_alt_text20_regular = NotStr(''' + +''') +icon_double_swipe_down24_filled = NotStr(''' + +''') +icon_align_center_horizontal24_regular = NotStr(''' + +''') +icon_share_screen_person_overlay_inside20_regular = NotStr(''' + +''') +icon_mail_read28_filled = NotStr(''' + +''') +icon_position_backward20_filled = NotStr(''' + +''') +icon_cloud_off48_regular = NotStr(''' + +''') +icon_mail_pause16_filled = NotStr(''' + +''') +icon_clipboard_bullet_list_ltr16_regular = NotStr(''' + +''') +icon_cellular_data424_filled = NotStr(''' + +''') +icon_tv20_filled = NotStr(''' + +''') +icon_share16_filled = NotStr(''' + +''') +icon_arrow_maximize16_regular = NotStr(''' + +''') +icon_book_letter20_regular = NotStr(''' + +''') +icon_text_period_asterisk20_regular = NotStr(''' + +''') +icon_video_prohibited20_regular = NotStr(''' + +''') +icon_notebook_subsection24_filled = NotStr(''' + + + + +''') +icon_clipboard_paste20_filled = NotStr(''' + +''') +icon_comment_error24_filled = NotStr(''' + +''') +icon_sign_out24_regular = NotStr(''' + +''') +icon_maximize24_filled = NotStr(''' + +''') +icon_vault24_regular = NotStr(''' + +''') +icon_leaf_two24_filled = NotStr(''' + +''') +icon_cloud_arrow_up28_regular = NotStr(''' + +''') +icon_add16_regular = NotStr(''' + +''') +icon_document_width24_filled = NotStr(''' + +''') +icon_pill16_filled = NotStr(''' + +''') +icon_presence_dnd12_regular = NotStr(''' + +''') +icon_contact_card28_filled = NotStr(''' + +''') +icon_bowl_chopsticks20_regular = NotStr(''' + +''') +icon_weather_rain_showers_day24_filled = NotStr(''' + +''') +icon_star_one_quarter28_filled = NotStr(''' + +''') +icon_location_live20_regular = NotStr(''' + +''') +icon_database_person24_regular = NotStr(''' + +''') +icon_shape_subtract24_regular = NotStr(''' + +''') +icon_wallet48_regular = NotStr(''' + +''') +icon_search_square24_filled = NotStr(''' + +''') +icon_emoji48_filled = NotStr(''' + +''') +icon_swipe_right24_regular = NotStr(''' + +''') +icon_scan_thumb_up_off24_regular = NotStr(''' + +''') +icon_tag_lock_accent16_filled = NotStr(''' + +''') +icon_channel_add24_regular = NotStr(''' + +''') +icon_math_formula16_regular = NotStr(''' + + + + +''') +icon_desktop_flow24_regular = NotStr(''' + +''') +icon_task_list_ltr20_filled = NotStr(''' + +''') +icon_list16_filled = NotStr(''' + +''') +icon_subtract12_regular = NotStr(''' + +''') +icon_draw_shape20_filled = NotStr(''' + +''') +icon_zoom_out24_filled = NotStr(''' + +''') +icon_meet_now20_filled = NotStr(''' + +''') +icon_arrow_hook_up_left20_filled = NotStr(''' + +''') +icon_midi24_filled = NotStr(''' + +''') +icon_desktop_toolbox20_regular = NotStr(''' + +''') +icon_box_toolbox24_filled = NotStr(''' + +''') +icon_text_bullet_list_square_edit20_regular = NotStr(''' + +''') +icon_arrow_circle_right12_regular = NotStr(''' + +''') +icon_developer_board20_regular = NotStr(''' + +''') +icon_table_add20_regular = NotStr(''' + +''') +icon_port_usb_a24_regular = NotStr(''' + +''') +icon_document_ribbon48_regular = NotStr(''' + +''') +icon_new24_regular = NotStr(''' + +''') +icon_phone_pagination24_regular = NotStr(''' + +''') +icon_clock_alarm24_regular = NotStr(''' + +''') +icon_calendar_empty20_filled = NotStr(''' + +''') +icon_border_left24_filled = NotStr(''' + +''') +icon_open_off16_regular = NotStr(''' + +''') +icon_note20_filled = NotStr(''' + +''') +icon_slide_microphone32_regular = NotStr(''' + +''') +icon_money_dismiss24_filled = NotStr(''' + +''') +icon_arrow_download20_regular = NotStr(''' + +''') +icon_previous16_regular = NotStr(''' + +''') +icon_comment_arrow_left16_regular = NotStr(''' + +''') +icon_call_inbound20_regular = NotStr(''' + +''') +icon_weather_sunny_low20_regular = NotStr(''' + +''') +icon_mail_template16_filled = NotStr(''' + +''') +icon_wallpaper24_regular = NotStr(''' + +''') +icon_calendar_clock16_regular = NotStr(''' + +''') +icon_tap_single24_regular = NotStr(''' + +''') +icon_flash28_regular = NotStr(''' + +''') +icon_comment_multiple_checkmark28_filled = NotStr(''' + +''') +icon_calendar_day16_filled = NotStr(''' + +''') +icon_person_feedback16_regular = NotStr(''' + +''') +icon_star_three_quarter24_filled = NotStr(''' + +''') +icon_multiplier18_x24_filled = NotStr(''' + +''') +icon_movies_and_tv24_filled = NotStr(''' + +''') +icon_quiz_new28_regular = NotStr(''' + +''') +icon_print16_filled = NotStr(''' + +''') +icon_book_arrow_clockwise24_regular = NotStr(''' + +''') +icon_note_edit20_filled = NotStr(''' + +''') +icon_mail_shield20_regular = NotStr(''' + +''') +icon_drink_coffee16_filled = NotStr(''' + +''') +icon_people_swap28_regular = NotStr(''' + +''') +icon_slide_text28_regular = NotStr(''' + +''') +icon_link20_regular = NotStr(''' + +''') +icon_video36024_regular = NotStr(''' + +''') +icon_document_css20_regular = NotStr(''' + +''') +icon_gift_card16_regular = NotStr(''' + +''') +icon_tv_usb20_regular = NotStr(''' + +''') +icon_speaker020_filled = NotStr(''' + +''') +icon_city16_filled = NotStr(''' + +''') +icon_vehicle_cab24_regular = NotStr(''' + +''') +icon_copy16_regular = NotStr(''' + +''') +icon_draw_image24_filled = NotStr(''' + +''') +icon_lightbulb_filament48_filled = NotStr(''' + +''') +icon_drag24_filled = NotStr(''' + +''') +icon_contact_card_group20_regular = NotStr(''' + +''') +icon_position_to_front24_filled = NotStr(''' + +''') +icon_drop28_filled = NotStr(''' + +''') +icon_multiplier2_x32_regular = NotStr(''' + +''') +icon_weather_rain_showers_day20_filled = NotStr(''' + +''') +icon_shield28_filled = NotStr(''' + +''') +icon_web_asset24_filled = NotStr(''' + +''') +icon_divider_tall20_regular = NotStr(''' + +''') +icon_question_circle48_filled = NotStr(''' + +''') +icon_sport16_filled = NotStr(''' + +''') +icon_people_team16_filled = NotStr(''' + +''') +icon_delete_dismiss28_filled = NotStr(''' + +''') +icon_keyboard24_filled = NotStr(''' + +''') +icon_home20_filled = NotStr(''' + +''') +icon_branch20_filled = NotStr(''' + +''') +icon_cloud_archive28_regular = NotStr(''' + +''') +icon_font_space_tracking_out16_filled = NotStr(''' + +''') +icon_calendar_checkmark20_filled = NotStr(''' + +''') +icon_copy20_regular = NotStr(''' + +''') +icon_text_align_center16_regular = NotStr(''' + +''') +icon_communication24_filled = NotStr(''' + +''') +icon_document_add24_regular = NotStr(''' + +''') +icon_speaker228_filled = NotStr(''' + +''') +icon_comment16_regular = NotStr(''' + +''') +icon_backpack12_regular = NotStr(''' + +''') +icon_shifts_add24_regular = NotStr(''' + +''') +icon_video_switch20_regular = NotStr(''' + +''') +icon_read_aloud28_regular = NotStr(''' + +''') +icon_folder_add28_regular = NotStr(''' + +''') +icon_text_grammar_arrow_right20_filled = NotStr(''' + +''') +icon_tag_lock32_filled = NotStr(''' + +''') +icon_eye24_regular = NotStr(''' + +''') +icon_mail_multiple20_filled = NotStr(''' + +''') +icon_arrow_routing24_regular = NotStr(''' + +''') +icon_trophy48_filled = NotStr(''' + +''') +icon_document_multiple_percent20_filled = NotStr(''' + +''') +icon_shifts_add24_filled = NotStr(''' + +''') +icon_document_margins20_regular = NotStr(''' + +''') +icon_cellular_data224_regular = NotStr(''' + +''') +icon_branch_compare24_regular = NotStr(''' + +''') +icon_table_stack_right24_regular = NotStr(''' + +''') +icon_square_hint_sparkles48_filled = NotStr(''' + +''') +icon_emoji_multiple24_regular = NotStr(''' + +''') +icon_text_direction_rotate90_left24_regular = NotStr(''' + +''') +icon_location_arrow_right48_regular = NotStr(''' + +''') +icon_calendar_pattern20_filled = NotStr(''' + +''') +icon_search28_filled = NotStr(''' + +''') +icon_skip_back1020_filled = NotStr(''' + +''') +icon_checkbox_person20_filled = NotStr(''' + +''') +icon_glance24_filled = NotStr(''' + +''') +icon_inking_tool16_regular = NotStr(''' + +''') +icon_eye_tracking_off20_filled = NotStr(''' + +''') +icon_square_hint_sparkles20_regular = NotStr(''' + +''') +icon_question_circle16_filled = NotStr(''' + +''') +icon_mail_all_read20_filled = NotStr(''' + +''') +icon_speaker220_regular = NotStr(''' + +''') +icon_pause_circle20_regular = NotStr(''' + +''') +icon_text_underline20_filled = NotStr(''' + +''') +icon_comment_multiple_checkmark24_regular = NotStr(''' + +''') +icon_live20_filled = NotStr(''' + +''') +icon_stop24_filled = NotStr(''' + +''') +icon_building_bank_link16_regular = NotStr(''' + +''') +icon_bookmark_multiple20_filled = NotStr(''' + +''') +icon_calendar_week_start20_regular = NotStr(''' + +''') +icon_align_end_vertical20_filled = NotStr(''' + + + + +''') +icon_delete_lines20_regular = NotStr(''' + +''') +icon_call20_filled = NotStr(''' + +''') +icon_timer32_filled = NotStr(''' + +''') +icon_link24_filled = NotStr(''' + +''') +icon_link24_regular = NotStr(''' + +''') +icon_eraser20_filled = NotStr(''' + +''') +icon_couch20_filled = NotStr(''' + +''') +icon_book_open32_filled = NotStr(''' + +''') +icon_organization20_regular = NotStr(''' + +''') +icon_ruler20_regular = NotStr(''' + +''') +icon_call_pause24_regular = NotStr(''' + +''') +icon_picture_in_picture16_regular = NotStr(''' + +''') +icon_tetris_app16_filled = NotStr(''' + +''') +icon_table_freeze_row28_filled = NotStr(''' + +''') +icon_map_drive24_filled = NotStr(''' + +''') +icon_more_vertical28_regular = NotStr(''' + +''') +icon_star_one_quarter24_filled = NotStr(''' + +''') +icon_shopping_bag_arrow_left20_filled = NotStr(''' + +''') +icon_image_multiple28_regular = NotStr(''' + +''') +icon_fps3028_regular = NotStr(''' + +''') +icon_person_prohibited16_filled = NotStr(''' + +''') +icon_people_sync20_regular = NotStr(''' + +''') +icon_games28_regular = NotStr(''' + +''') +icon_arrow_redo16_regular = NotStr(''' + +''') +icon_calendar_info20_regular = NotStr(''' + +''') +icon_document16_regular = NotStr(''' + +''') +icon_laptop24_filled = NotStr(''' + +''') +icon_arrow_down_left20_filled = NotStr(''' + +''') +icon_channel_arrow_left28_filled = NotStr(''' + +''') +icon_tent12_regular = NotStr(''' + +''') +icon_contact_card_ribbon16_regular = NotStr(''' + + + + + + +''') +icon_arrow_sync_circle20_regular = NotStr(''' + +''') +icon_eye_off16_filled = NotStr(''' + +''') +icon_text_underline16_regular = NotStr(''' + +''') +icon_star_half28_filled = NotStr(''' + +''') +icon_text_t28_filled = NotStr(''' + +''') +icon_emoji_sparkle20_filled = NotStr(''' + +''') +icon_window_header_vertical20_regular = NotStr(''' + +''') +icon_table24_regular = NotStr(''' + +''') +icon_beach28_regular = NotStr(''' + +''') +icon_headphones28_filled = NotStr(''' + +''') +icon_window_wrench32_filled = NotStr(''' + +''') +icon_cloud_arrow_down32_filled = NotStr(''' + +''') +icon_rectangle_landscape12_filled = NotStr(''' + +''') +icon_paint_bucket16_regular = NotStr(''' + +''') +icon_thumb_dislike24_regular = NotStr(''' + +''') +icon_split_vertical16_filled = NotStr(''' + +''') +icon_text_proofing_tools24_filled = NotStr(''' + +''') +icon_textbox_align_top_rotate9024_filled = NotStr(''' + +''') +icon_payment20_regular = NotStr(''' + +''') +icon_battery924_filled = NotStr(''' + +''') +icon_bowl_chopsticks28_filled = NotStr(''' + +''') +icon_comment_arrow_left24_filled = NotStr(''' + +''') +icon_mic_off16_filled = NotStr(''' + +''') +icon_notebook_sync24_filled = NotStr(''' + +''') +icon_chevron_double_up16_filled = NotStr(''' + +''') +icon_battery_checkmark24_regular = NotStr(''' + +''') +icon_comment_error16_filled = NotStr(''' + +''') +icon_voicemail_arrow_forward16_filled = NotStr(''' + +''') +icon_note_add24_filled = NotStr(''' + +''') +icon_contact_card_group24_regular = NotStr(''' + +''') +icon_dual_screen_speaker24_regular = NotStr(''' + + + + + + + + +''') +icon_shield_error20_filled = NotStr(''' + +''') +icon_arrow_between_down20_regular = NotStr(''' + +''') +icon_calendar_person16_filled = NotStr(''' + +''') +icon_text_header324_regular = NotStr(''' + +''') +icon_text_font_info24_filled = NotStr(''' + +''') +icon_scan_camera24_regular = NotStr(''' + +''') +icon_arrow_trending16_filled = NotStr(''' + +''') +icon_hd16_regular = NotStr(''' + +''') +icon_mail_inbox_dismiss28_filled = NotStr(''' + +''') +icon_slide_arrow_right20_regular = NotStr(''' + +''') +icon_calendar_agenda24_filled = NotStr(''' + +''') +icon_tv_usb28_filled = NotStr(''' + +''') +icon_hand_draw28_regular = NotStr(''' + +''') +icon_rating_mature24_regular = NotStr(''' + +''') +icon_lightbulb_circle24_regular = NotStr(''' + +''') +icon_fast_acceleration24_filled = NotStr(''' + +''') +icon_circle_line20_filled = NotStr(''' + +''') +icon_document_ribbon20_filled = NotStr(''' + +''') +icon_document_search16_filled = NotStr(''' + +''') +icon_teddy20_filled = NotStr(''' + +''') +icon_chevron_down16_filled = NotStr(''' + +''') +icon_open_off48_regular = NotStr(''' + +''') +icon_star_off28_regular = NotStr(''' + +''') +icon_person_tag28_regular = NotStr(''' + +''') +icon_desktop_keyboard24_filled = NotStr(''' + +''') +icon_border_outside24_filled = NotStr(''' + +''') +icon_likert16_regular = NotStr(''' + +''') +icon_guitar20_regular = NotStr(''' + +''') +icon_subtract_circle32_filled = NotStr(''' + +''') +icon_home32_regular = NotStr(''' + +''') +icon_panel_left16_filled = NotStr(''' + +''') +icon_gift20_filled = NotStr(''' + +''') +icon_fluent24_filled = NotStr(''' + +''') +icon_text_sort_descending16_filled = NotStr(''' + +''') +icon_document_multiple_prohibited24_regular = NotStr(''' + +''') +icon_cloud_link16_filled = NotStr(''' + +''') +icon_document_table_truck20_regular = NotStr(''' + +''') +icon_arrow_sort28_regular = NotStr(''' + +''') +icon_text_indent_decrease_rtl24_filled = NotStr(''' + +''') +icon_steps20_filled = NotStr(''' + +''') +icon_alert_off28_filled = NotStr(''' + +''') +icon_megaphone16_regular = NotStr(''' + +''') +icon_wifi124_filled = NotStr(''' + +''') +icon_chevron_right28_regular = NotStr(''' + +''') +icon_subtract_circle28_filled = NotStr(''' + +''') +icon_box_multiple_checkmark24_filled = NotStr(''' + +''') +icon_person_available16_filled = NotStr(''' + +''') +icon_insert20_filled = NotStr(''' + +''') +icon_align_right32_regular = NotStr(''' + +''') +icon_vote24_filled = NotStr(''' + +''') +icon_production_checkmark20_filled = NotStr(''' + +''') +icon_chat_arrow_back20_filled = NotStr(''' + +''') +icon_drink_beer24_regular = NotStr(''' + +''') +icon_chevron_down24_regular = NotStr(''' + +''') +icon_select_object24_filled = NotStr(''' + +''') +icon_table32_filled = NotStr(''' + + + + + + + + + + + +''') +icon_person_prohibited20_filled = NotStr(''' + +''') +icon_guest16_regular = NotStr(''' + +''') +icon_delete_arrow_back16_filled = NotStr(''' + +''') +icon_arrow_rotate_clockwise20_filled = NotStr(''' + +''') +icon_scan_thumb_up_off24_filled = NotStr(''' + +''') +icon_flash_checkmark28_regular = NotStr(''' + +''') +icon_prohibited12_filled = NotStr(''' + +''') +icon_data_line20_regular = NotStr(''' + +''') +icon_clipboard16_filled = NotStr(''' + +''') +icon_border_top_bottom_double24_regular = NotStr(''' + +''') +icon_phone_desktop28_filled = NotStr(''' + +''') +icon_save24_filled = NotStr(''' + +''') +icon_subtract24_regular = NotStr(''' + +''') +icon_arrow_sort24_filled = NotStr(''' + +''') +icon_flowchart24_regular = NotStr(''' + +''') +icon_document_toolbox20_regular = NotStr(''' + +''') +icon_resize24_regular = NotStr(''' + +''') +icon_arrow_hook_up_left24_filled = NotStr(''' + +''') +icon_tab_arrow_left24_regular = NotStr(''' + +''') +icon_hand_right20_filled = NotStr(''' + +''') +icon_speaker124_filled = NotStr(''' + +''') +icon_window28_regular = NotStr(''' + +''') +icon_phone_span_out16_regular = NotStr(''' + +''') +icon_calendar_sync16_regular = NotStr(''' + +''') +icon_comment16_filled = NotStr(''' + +''') +icon_reward20_filled = NotStr(''' + +''') +icon_text_bold20_filled = NotStr(''' + +''') +icon_receipt_add20_regular = NotStr(''' + +''') +icon_text_bullet_list_tree16_filled = NotStr(''' + +''') +icon_comment_off16_filled = NotStr(''' + +''') +icon_desktop_keyboard28_filled = NotStr(''' + +''') +icon_emoji_sparkle28_filled = NotStr(''' + +''') +icon_scan_object24_filled = NotStr(''' + +''') +icon_brain_circuit20_filled = NotStr(''' + +''') +icon_box_edit20_filled = NotStr(''' + +''') +icon_add_subtract_circle16_filled = NotStr(''' + +''') +icon_food_apple20_filled = NotStr(''' + +''') +icon_document_ribbon24_regular = NotStr(''' + +''') +icon_checkbox_warning24_filled = NotStr(''' + + + + +''') +icon_share20_filled = NotStr(''' + +''') +icon_image_reflection24_regular = NotStr(''' + +''') +icon_weather_hail_day48_regular = NotStr(''' + +''') +icon_vehicle_car20_regular = NotStr(''' + +''') +icon_mic_prohibited48_regular = NotStr(''' + +''') +icon_globe_location20_regular = NotStr(''' + +''') +icon_vehicle_car16_regular = NotStr(''' + +''') +icon_table_simple24_filled = NotStr(''' + +''') +icon_document_text_clock24_filled = NotStr(''' + +''') +icon_people_audience24_regular = NotStr(''' + +''') +icon_center_vertical24_regular = NotStr(''' + +''') +icon_square_arrow_forward48_regular = NotStr(''' + +''') +icon_document_sync16_regular = NotStr(''' + +''') +icon_more_vertical32_filled = NotStr(''' + +''') +icon_approvals_app32_regular = NotStr(''' + +''') +icon_cloud20_filled = NotStr(''' + +''') +icon_dumbbell16_regular = NotStr(''' + +''') +icon_arrow_counterclockwise32_regular = NotStr(''' + +''') +icon_person_circle12_filled = NotStr(''' + +''') +icon_tag_multiple24_filled = NotStr(''' + +''') +icon_emoji28_regular = NotStr(''' + +''') +icon_color16_filled = NotStr(''' + +''') +icon_cloud_arrow_down24_regular = NotStr(''' + +''') +icon_skip_forward1020_regular = NotStr(''' + +''') +icon_person_support24_regular = NotStr(''' + +''') +icon_rewind16_regular = NotStr(''' + +''') +icon_board_heart20_filled = NotStr(''' + +''') +icon_mail_shield20_filled = NotStr(''' + +''') +icon_text_align_distributed24_regular = NotStr(''' + +''') +icon_table_freeze_column16_regular = NotStr(''' + +''') +icon_organization48_regular = NotStr(''' + +''') +icon_arrow_down24_regular = NotStr(''' + +''') +icon_video_chat24_regular = NotStr(''' + +''') +icon_ratio_one_to_one20_filled = NotStr(''' + +''') +icon_shield_task24_regular = NotStr(''' + +''') +icon_share_screen_person_p24_filled = NotStr(''' + +''') +icon_voicemail28_regular = NotStr(''' + + + + +''') +icon_record_stop24_regular = NotStr(''' + +''') +icon_desktop_mac24_filled = NotStr(''' + +''') +icon_star_half20_filled = NotStr(''' + +''') +icon_bot_add24_filled = NotStr(''' + +''') +icon_task_list_rtl20_regular = NotStr(''' + +''') +icon_search_settings20_regular = NotStr(''' + +''') +icon_star_off12_filled = NotStr(''' + +''') +icon_briefcase_medical24_regular = NotStr(''' + +''') +icon_scan_thumb_up_off20_filled = NotStr(''' + +''') +icon_mail24_regular = NotStr(''' + +''') +icon_star_add16_filled = NotStr(''' + +''') +icon_puzzle_cube48_regular = NotStr(''' + +''') +icon_battery020_regular = NotStr(''' + +''') +icon_table_delete_column16_regular = NotStr(''' + +''') +icon_book_letter24_filled = NotStr(''' + +''') +icon_immersive_reader24_regular = NotStr(''' + +''') +icon_data_usage_toolbox24_regular = NotStr(''' + +''') +icon_tag_search20_regular = NotStr(''' + +''') +icon_archive_multiple16_filled = NotStr(''' + +''') +icon_camera16_regular = NotStr(''' + +''') +icon_document_page_bottom_center24_regular = NotStr(''' + +''') +icon_align_center_horizontal16_filled = NotStr(''' + +''') +icon_data_area20_filled = NotStr(''' + +''') +icon_clipboard_heart20_regular = NotStr(''' + +''') +icon_mic_settings24_regular = NotStr(''' + +''') +icon_navigation_unread24_regular = NotStr(''' + +''') +icon_person_money20_regular = NotStr(''' + +''') +icon_multiplier12_x32_regular = NotStr(''' + +''') +icon_chevron_up_down24_regular = NotStr(''' + +''') +icon_speaker020_regular = NotStr(''' + +''') +icon_multiplier1_x24_regular = NotStr(''' + +''') +icon_resize_image20_filled = NotStr(''' + +''') +icon_arrow_clockwise28_filled = NotStr(''' + +''') +icon_data_usage_toolbox24_filled = NotStr(''' + +''') +icon_desktop16_filled = NotStr(''' + +''') +icon_settings20_regular = NotStr(''' + +''') +icon_arrow_down_left20_regular = NotStr(''' + +''') +icon_tab_in_private24_regular = NotStr(''' + +''') +icon_chevron_double_left20_regular = NotStr(''' + +''') +icon_bluetooth24_filled = NotStr(''' + +''') +icon_slide_eraser20_regular = NotStr(''' + +''') +icon_equal_off24_filled = NotStr(''' + +''') +icon_alert_off24_filled = NotStr(''' + +''') +icon_brightness_high32_filled = NotStr(''' + +''') +icon_shopping_bag_dismiss20_regular = NotStr(''' + +''') +icon_calendar_info16_filled = NotStr(''' + +''') +icon_sim24_regular = NotStr(''' + +''') +icon_tablet24_regular = NotStr(''' + +''') +icon_cloud_checkmark28_regular = NotStr(''' + +''') +icon_table_delete_row20_filled = NotStr(''' + +''') +icon_desktop20_filled = NotStr(''' + +''') +icon_settings28_regular = NotStr(''' + +''') +icon_weather_snowflake48_filled = NotStr(''' + +''') +icon_comment_multiple_link32_filled = NotStr(''' + +''') +icon_edit_off20_regular = NotStr(''' + +''') +icon_square_hint_arrow_back16_filled = NotStr(''' + +''') +icon_open32_filled = NotStr(''' + +''') +icon_arrow_sync24_regular = NotStr(''' + +''') +icon_drink_beer20_filled = NotStr(''' + +''') +icon_arrow_reply_down20_regular = NotStr(''' + +''') +icon_system20_regular = NotStr(''' + +''') +icon_warning16_filled = NotStr(''' + +''') +icon_line48_regular = NotStr(''' + +''') +icon_document_header24_regular = NotStr(''' + +''') +icon_camera16_filled = NotStr(''' + +''') +icon_document_one_page20_regular = NotStr(''' + +''') +icon_globe_video32_filled = NotStr(''' + +''') +icon_calendar_assistant16_regular = NotStr(''' + +''') +icon_weather_hail_night48_filled = NotStr(''' + +''') +icon_window_header_horizontal_off20_regular = NotStr(''' + +''') +icon_document_percent20_regular = NotStr(''' + +''') +icon_plug_disconnected20_filled = NotStr(''' + +''') +icon_location_off48_regular = NotStr(''' + +''') +icon_chevron_up24_filled = NotStr(''' + +''') +icon_trophy32_filled = NotStr(''' + +''') +icon_chevron_up16_regular = NotStr(''' + +''') +icon_subtract16_filled = NotStr(''' + +''') +icon_vehicle_car24_regular = NotStr(''' + +''') +icon_multiplier18_x32_filled = NotStr(''' + +''') +icon_textbox_rotate9020_filled = NotStr(''' + +''') +icon_edit32_filled = NotStr(''' + +''') +icon_inking_tool_accent32_filled = NotStr(''' + +''') +icon_people_queue20_filled = NotStr(''' + +''') +icon_text_align_distributed20_regular = NotStr(''' + +''') +icon_document32_filled = NotStr(''' + +''') +icon_calendar_sync16_filled = NotStr(''' + +''') +icon_weather_squalls24_regular = NotStr(''' + +''') +icon_divider_tall20_filled = NotStr(''' + +''') +icon_text_first_line24_regular = NotStr(''' + +''') +icon_chat_bubbles_question20_regular = NotStr(''' + +''') +icon_cloud_off24_regular = NotStr(''' + +''') +icon_cube_link20_regular = NotStr(''' + +''') +icon_arrow_clockwise20_filled = NotStr(''' + +''') +icon_arrow_step_in28_regular = NotStr(''' + +''') +icon_bookmark_search20_regular = NotStr(''' + +''') +icon_fps3016_regular = NotStr(''' + +''') +icon_road_cone32_filled = NotStr(''' + +''') +icon_star_emphasis32_regular = NotStr(''' + + + + + + + +''') +icon_emoji_add20_regular = NotStr(''' + +''') +icon_arrow_trending_checkmark24_regular = NotStr(''' + +''') +icon_cube_sync20_filled = NotStr(''' + +''') +icon_book_number24_regular = NotStr(''' + +''') +icon_record_stop12_regular = NotStr(''' + +''') +icon_wallet32_filled = NotStr(''' + +''') +icon_connector20_filled = NotStr(''' + +''') +icon_organization12_regular = NotStr(''' + +''') +icon_table_stack_above16_regular = NotStr(''' + +''') +icon_broad_activity_feed20_regular = NotStr(''' + +''') +icon_image_copy20_regular = NotStr(''' + +''') +icon_arrow_forward48_regular = NotStr(''' + +''') +icon_molecule32_regular = NotStr(''' + +''') +icon_balloon12_regular = NotStr(''' + +''') +icon_border_top24_regular = NotStr(''' + +''') +icon_call_park28_regular = NotStr(''' + +''') +icon_text_column_one_wide_lightning24_regular = NotStr(''' + +''') +icon_desktop_pulse48_regular = NotStr(''' + +''') +icon_building_skyscraper24_regular = NotStr(''' + +''') +icon_weather_rain48_regular = NotStr(''' + +''') +icon_document_arrow_left20_filled = NotStr(''' + +''') +icon_emoji_multiple24_filled = NotStr(''' + +''') +icon_keyboard20_regular = NotStr(''' + +''') +icon_checkmark_circle24_filled = NotStr(''' + +''') +icon_box_multiple_search24_filled = NotStr(''' + +''') +icon_arrow_circle_left20_regular = NotStr(''' + +''') +icon_screen_cut20_regular = NotStr(''' + + + + + + + + + + + + +''') +icon_arrow_sync_off16_regular = NotStr(''' + +''') +icon_mail_add16_regular = NotStr(''' + +''') +icon_keyboard_layout_float24_filled = NotStr(''' + +''') +icon_gas_pump24_filled = NotStr(''' + +''') +icon_video_clip_multiple16_regular = NotStr(''' + +''') +icon_clipboard_task_list_rtl20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left28_filled = NotStr(''' + +''') +icon_accessibility28_regular = NotStr(''' + +''') +icon_text_bullet_list_add24_filled = NotStr(''' + +''') +icon_document_catch_up16_regular = NotStr(''' + +''') +icon_video_chat24_filled = NotStr(''' + +''') +icon_document_person16_filled = NotStr(''' + +''') +icon_chat_dismiss20_regular = NotStr(''' + +''') +icon_battery124_regular = NotStr(''' + +''') +icon_chevron_circle_down48_filled = NotStr(''' + +''') +icon_timer28_filled = NotStr(''' + +''') +icon_eyedropper_off20_filled = NotStr(''' + +''') +icon_trophy_off32_regular = NotStr(''' + +''') +icon_weather_rain_showers_day24_regular = NotStr(''' + +''') +icon_apps_list24_regular = NotStr(''' + +''') +icon_share_screen_start24_regular = NotStr(''' + +''') +icon_cloud_arrow_down20_filled = NotStr(''' + +''') +icon_math_symbols20_filled = NotStr(''' + +''') +icon_comment_dismiss24_regular = NotStr(''' + +''') +icon_shield20_regular = NotStr(''' + +''') +icon_protocol_handler24_filled = NotStr(''' + +''') +icon_immersive_reader24_filled = NotStr(''' + +''') +icon_ios_chevron_right20_regular = NotStr(''' + +''') +icon_weather_hail_day24_filled = NotStr(''' + +''') +icon_tab_desktop20_filled = NotStr(''' + +''') +icon_comment_add16_filled = NotStr(''' + +''') +icon_panel_bottom20_filled = NotStr(''' + +''') +icon_text_header120_regular = NotStr(''' + +''') +icon_comment28_regular = NotStr(''' + +''') +icon_slide_microphone24_filled = NotStr(''' + +''') +icon_gif24_filled = NotStr(''' + +''') +icon_text_add_space_before20_filled = NotStr(''' + +''') +icon_gift_card_money20_filled = NotStr(''' + +''') +icon_text_position_behind20_regular = NotStr(''' + +''') +icon_pause_circle24_regular = NotStr(''' + +''') +icon_clock_pause24_regular = NotStr(''' + +''') +icon_color_line20_filled = NotStr(''' + +''') +icon_glance20_filled = NotStr(''' + +''') +icon_organization32_regular = NotStr(''' + +''') +icon_clear_formatting16_regular = NotStr(''' + +''') +icon_arrow_hook_up_left28_filled = NotStr(''' + +''') +icon_text_align_distributed24_filled = NotStr(''' + +''') +icon_clipboard_link24_filled = NotStr(''' + +''') +icon_flag_pride20_filled = NotStr(''' + + + + + + + + + + +''') +icon_briefcase28_filled = NotStr(''' + +''') +icon_arrow_left20_filled = NotStr(''' + +''') +icon_games48_regular = NotStr(''' + +''') +icon_checkmark48_filled = NotStr(''' + +''') +icon_flip_vertical20_filled = NotStr(''' + +''') +icon_arrow_forward_down_person24_filled = NotStr(''' + +''') +icon_payment28_regular = NotStr(''' + +''') +icon_phone_laptop20_regular = NotStr(''' + +''') +icon_gesture24_regular = NotStr(''' + +''') +icon_image_add24_filled = NotStr(''' + +''') +icon_table_link24_regular = NotStr(''' + +''') +icon_rename20_filled = NotStr(''' + +''') +icon_oval24_filled = NotStr(''' + +''') +icon_document_header_dismiss20_filled = NotStr(''' + +''') +icon_lock_closed32_filled = NotStr(''' + +''') +icon_games24_filled = NotStr(''' + +''') +icon_clipboard_bullet_list_ltr16_filled = NotStr(''' + +''') +icon_chat_dismiss16_regular = NotStr(''' + +''') +icon_image_search24_filled = NotStr(''' + +''') +icon_select_object_skew_dismiss20_filled = NotStr(''' + +''') +icon_video_person_sparkle20_filled = NotStr(''' + +''') +icon_closed_caption28_filled = NotStr(''' + +''') +icon_clock_alarm16_regular = NotStr(''' + +''') +icon_globe_prohibited20_filled = NotStr(''' + +''') +icon_clipboard_search24_regular = NotStr(''' + +''') +icon_patch20_filled = NotStr(''' + +''') +icon_line32_filled = NotStr(''' + +''') +icon_chevron_circle_right16_regular = NotStr(''' + +''') +icon_flip_horizontal32_regular = NotStr(''' + +''') +icon_task_list_add20_filled = NotStr(''' + +''') +icon_mail_warning16_filled = NotStr(''' + +''') +icon_arrow_clockwise12_regular = NotStr(''' + +''') +icon_search_visual16_regular = NotStr(''' + +''') +icon_battery324_filled = NotStr(''' + +''') +icon_sport20_regular = NotStr(''' + +''') +icon_table_stack_left24_regular = NotStr(''' + +''') +icon_target_edit20_filled = NotStr(''' + +''') +icon_star_arrow_right_end24_regular = NotStr(''' + +''') +icon_location12_filled = NotStr(''' + +''') +icon_receipt_play20_filled = NotStr(''' + +''') +icon_tv16_regular = NotStr(''' + +''') +icon_tag32_filled = NotStr(''' + +''') +icon_guest24_regular = NotStr(''' + +''') +icon_scan24_regular = NotStr(''' + +''') +icon_match_app_layout24_regular = NotStr(''' + +''') +icon_cloud_archive32_regular = NotStr(''' + +''') +icon_vehicle_truck_profile16_regular = NotStr(''' + +''') +icon_calculator24_regular = NotStr(''' + +''') +icon_person_clock24_regular = NotStr(''' + +''') +icon_arrow_right32_regular = NotStr(''' + +''') +icon_emoji_add16_filled = NotStr(''' + +''') +icon_speaker_bluetooth28_regular = NotStr(''' + +''') +icon_align_space_evenly_vertical20_regular = NotStr(''' + + + + + +''') +icon_person_edit24_regular = NotStr(''' + +''') +icon_flash24_filled = NotStr(''' + +''') +icon_location_off28_regular = NotStr(''' + +''') +icon_document_header20_filled = NotStr(''' + +''') +icon_battery1024_regular = NotStr(''' + +''') +icon_star_dismiss20_regular = NotStr(''' + +''') +icon_align_right24_filled = NotStr(''' + +''') +icon_person_lightbulb20_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise16_filled = NotStr(''' + +''') +icon_textbox_align_bottom_rotate9020_filled = NotStr(''' + +''') +icon_symbols24_filled = NotStr(''' + +''') +icon_table_move_right28_regular = NotStr(''' + +''') +icon_reward24_filled = NotStr(''' + +''') +icon_dual_screen_status_bar24_filled = NotStr(''' + +''') +icon_ticket_diagonal24_filled = NotStr(''' + +''') +icon_edit_off20_filled = NotStr(''' + +''') +icon_channel_add28_filled = NotStr(''' + +''') +icon_compose28_filled = NotStr(''' + +''') +icon_people_add16_regular = NotStr(''' + +''') +icon_triangle48_regular = NotStr(''' + +''') +icon_speaker_off28_filled = NotStr(''' + +''') +icon_organization20_filled = NotStr(''' + +''') +icon_compass_northwest24_filled = NotStr(''' + +''') +icon_cursor24_filled = NotStr(''' + +''') +icon_rhombus24_filled = NotStr(''' + +''') +icon_accessibility24_filled = NotStr(''' + +''') +icon_people_checkmark16_filled = NotStr(''' + +''') +icon_receipt_cube24_filled = NotStr(''' + +''') +icon_timer28_regular = NotStr(''' + +''') +icon_compose20_filled = NotStr(''' + +''') +icon_crop_interim20_regular = NotStr(''' + +''') +icon_share_screen_person_overlay24_filled = NotStr(''' + +''') +icon_alert_on24_filled = NotStr(''' + +''') +icon_eye_off20_regular = NotStr(''' + +''') +icon_arrow_reply24_regular = NotStr(''' + +''') +icon_call_end28_filled = NotStr(''' + +''') +icon_text_case_lowercase24_regular = NotStr(''' + +''') +icon_weather_duststorm48_filled = NotStr(''' + +''') +icon_people_team32_filled = NotStr(''' + +''') +icon_table_stack_right28_regular = NotStr(''' + +''') +icon_calendar_rtl12_regular = NotStr(''' + +''') +icon_mail_read24_filled = NotStr(''' + +''') +icon_color24_filled = NotStr(''' + +''') +icon_code20_regular = NotStr(''' + +''') +icon_text_font_size20_regular = NotStr(''' + +''') +icon_textbox16_regular = NotStr(''' + +''') +icon_people_error24_regular = NotStr(''' + +''') +icon_rectangle_landscape20_regular = NotStr(''' + +''') +icon_arrow_export_ltr20_regular = NotStr(''' + +''') +icon_clipboard_image24_regular = NotStr(''' + +''') +icon_font_decrease24_filled = NotStr(''' + +''') +icon_slide_arrow_right20_filled = NotStr(''' + +''') +icon_mail_edit20_filled = NotStr(''' + +''') +icon_arrow_bidirectional_up_down24_filled = NotStr(''' + +''') +icon_table_lightning28_filled = NotStr(''' + +''') +icon_padding_top24_filled = NotStr(''' + +''') +icon_arrow_circle_up32_filled = NotStr(''' + +''') +icon_tooltip_quote20_filled = NotStr(''' + +''') +icon_document_arrow_left48_filled = NotStr(''' + +''') +icon_text_align_center24_regular = NotStr(''' + +''') +icon_run20_filled = NotStr(''' + +''') +icon_textbox20_filled = NotStr(''' + +''') +icon_mail_inbox_checkmark28_filled = NotStr(''' + +''') +icon_desktop_pulse32_regular = NotStr(''' + +''') +icon_video_switch24_filled = NotStr(''' + +''') +icon_person_delete16_filled = NotStr(''' + +''') +icon_navigation20_filled = NotStr(''' + +''') +icon_caret_left16_regular = NotStr(''' + +''') +icon_person_lock20_regular = NotStr(''' + +''') +icon_diversity24_filled = NotStr(''' + +''') +icon_warning12_filled = NotStr(''' + +''') +icon_keyboard_layout_resize24_filled = NotStr(''' + +''') +icon_view_desktop20_filled = NotStr(''' + +''') +icon_projection_screen_dismiss16_regular = NotStr(''' + +''') +icon_qr_code28_regular = NotStr(''' + +''') +icon_eyedropper24_regular = NotStr(''' + +''') +icon_notepad_edit20_filled = NotStr(''' + +''') +icon_calligraphy_pen_question_mark20_regular = NotStr(''' + + + + +''') +icon_arrow_forward24_filled = NotStr(''' + +''') +icon_font_space_tracking_out16_regular = NotStr(''' + +''') +icon_guest20_regular = NotStr(''' + +''') +icon_contact_card_ribbon48_filled = NotStr(''' + +''') +icon_vehicle_ship16_filled = NotStr(''' + +''') +icon_arrow_minimize24_filled = NotStr(''' + +''') +icon_comment_edit24_filled = NotStr(''' + +''') +icon_multiplier15_x32_filled = NotStr(''' + +''') +icon_mail_shield16_filled = NotStr(''' + +''') +icon_table_cell_edit24_filled = NotStr(''' + + + + + + +''') +icon_thumb_like48_regular = NotStr(''' + +''') +icon_arrow_step_in_left24_regular = NotStr(''' + +''') +icon_currency_dollar_euro24_filled = NotStr(''' + +''') +icon_receipt_add20_filled = NotStr(''' + +''') +icon_drink_beer20_regular = NotStr(''' + +''') +icon_lightbulb_filament16_filled = NotStr(''' + +''') +icon_open28_filled = NotStr(''' + +''') +icon_data_usage24_regular = NotStr(''' + +''') +icon_rectangle_landscape24_regular = NotStr(''' + +''') +icon_table_move_above20_filled = NotStr(''' + +''') +icon_globe_person24_filled = NotStr(''' + +''') +icon_chevron_circle_up12_regular = NotStr(''' + +''') +icon_folder_prohibited24_filled = NotStr(''' + +''') +icon_picture_in_picture_enter16_filled = NotStr(''' + +''') +icon_chart_person28_filled = NotStr(''' + +''') +icon_flag_pride48_filled = NotStr(''' + + + + + + + + + + +''') +icon_number_symbol48_filled = NotStr(''' + +''') +icon_calligraphy_pen_question_mark20_filled = NotStr(''' + + + + + +''') +icon_info_shield20_regular = NotStr(''' + +''') +icon_money20_regular = NotStr(''' + +''') +icon_shape_intersect24_regular = NotStr(''' + +''') +icon_shield_dismiss_shield20_filled = NotStr(''' + +''') +icon_text_color20_filled = NotStr(''' + +''') +icon_mail_error20_filled = NotStr(''' + +''') +icon_text_direction_rotate90_left20_filled = NotStr(''' + +''') +icon_accessibility16_regular = NotStr(''' + +''') +icon_run24_regular = NotStr(''' + +''') +icon_money_settings20_filled = NotStr(''' + +''') +icon_font_space_tracking_out24_filled = NotStr(''' + +''') +icon_document_multiple_prohibited20_filled = NotStr(''' + +''') +icon_building_retail_toolbox24_filled = NotStr(''' + +''') +icon_add_subtract_circle16_regular = NotStr(''' + +''') +icon_book_contacts28_regular = NotStr(''' + + + + + +''') +icon_padding_left24_regular = NotStr(''' + +''') +icon_table_freeze_row16_regular = NotStr(''' + +''') +icon_alert28_regular = NotStr(''' + +''') +icon_power28_regular = NotStr(''' + +''') +icon_document_page_bottom_left20_filled = NotStr(''' + +''') +icon_video16_filled = NotStr(''' + +''') +icon_person_money20_filled = NotStr(''' + +''') +icon_color_fill16_filled = NotStr(''' + +''') +icon_steps24_filled = NotStr(''' + +''') +icon_dismiss28_filled = NotStr(''' + +''') +icon_channel_alert20_filled = NotStr(''' + +''') +icon_speaker_settings24_filled = NotStr(''' + +''') +icon_arrow_clockwise16_filled = NotStr(''' + +''') +icon_communication_person24_filled = NotStr(''' + +''') +icon_table_cell_edit28_filled = NotStr(''' + +''') +icon_filter_sync24_filled = NotStr(''' + +''') +icon_tag_lock32_regular = NotStr(''' + +''') +icon_share24_regular = NotStr(''' + +''') +icon_person_arrow_right20_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise16_regular = NotStr(''' + +''') +icon_arrow_down_left32_filled = NotStr(''' + +''') +icon_fax20_regular = NotStr(''' + +''') +icon_table_resize_column28_filled = NotStr(''' + +''') +icon_color_line_accent24_regular = NotStr(''' + +''') +icon_skip_forward3024_filled = NotStr(''' + +''') +icon_data_area20_regular = NotStr(''' + +''') +icon_globe_location20_filled = NotStr(''' + +''') +icon_navigation24_regular = NotStr(''' + +''') +icon_folder_open20_filled = NotStr(''' + +''') +icon_wallet28_regular = NotStr(''' + +''') +icon_shape_union24_regular = NotStr(''' + +''') +icon_document_error16_regular = NotStr(''' + +''') +icon_arrow_minimize16_filled = NotStr(''' + +''') +icon_comma24_filled = NotStr(''' + +''') +icon_decimal_arrow_left20_filled = NotStr(''' + +''') +icon_smartwatch24_regular = NotStr(''' + +''') +icon_document_question_mark20_regular = NotStr(''' + +''') +icon_beaker16_filled = NotStr(''' + +''') +icon_people_list24_regular = NotStr(''' + +''') +icon_calendar3_day24_filled = NotStr(''' + +''') +icon_ticket_horizontal20_filled = NotStr(''' + +''') +icon_dual_screen_update24_filled = NotStr(''' + +''') +icon_glance_horizontal12_regular = NotStr(''' + +''') +icon_notebook_section20_filled = NotStr(''' + +''') +icon_guardian48_regular = NotStr(''' + +''') +icon_channel_alert28_filled = NotStr(''' + +''') +icon_calendar_ltr16_filled = NotStr(''' + +''') +icon_speaker132_filled = NotStr(''' + +''') +icon_text_direction_rotate90_right24_filled = NotStr(''' + +''') +icon_ribbon_star20_filled = NotStr(''' + +''') +icon_document20_regular = NotStr(''' + +''') +icon_table_delete_column24_regular = NotStr(''' + +''') +icon_table_move_right20_filled = NotStr(''' + +''') +icon_notepad24_regular = NotStr(''' + +''') +icon_arrow_clockwise28_regular = NotStr(''' + +''') +icon_dismiss_circle32_regular = NotStr(''' + +''') +icon_text_color_accent24_filled = NotStr(''' + +''') +icon_person_mail48_filled = NotStr(''' + +''') +icon_sync_off16_filled = NotStr(''' + +''') +icon_arrow_circle_down24_regular = NotStr(''' + +''') +icon_remote16_regular = NotStr(''' + +''') +icon_fluent24_regular = NotStr(''' + +''') +icon_mail_inbox_checkmark24_filled = NotStr(''' + +''') +icon_headphones48_filled = NotStr(''' + +''') +icon_arrow_export_ltr16_regular = NotStr(''' + +''') +icon_notepad_person16_regular = NotStr(''' + +''') +icon_location20_regular = NotStr(''' + +''') +icon_backspace24_regular = NotStr(''' + +''') +icon_database_search24_filled = NotStr(''' + +''') +icon_timer24_regular = NotStr(''' + +''') +icon_mail_inbox_add16_filled = NotStr(''' + +''') +icon_align_space_around_vertical20_regular = NotStr(''' + + + + +''') +icon_mail_link24_filled = NotStr(''' + +''') +icon_arrow_sort_down_lines16_regular = NotStr(''' + +''') +icon_folder_globe16_filled = NotStr(''' + +''') +icon_dumbbell20_filled = NotStr(''' + +''') +icon_border_top_bottom_thick20_filled = NotStr(''' + +''') +icon_people_team24_filled = NotStr(''' + +''') +icon_clipboard_arrow_right20_filled = NotStr(''' + +''') +icon_text_line_spacing24_filled = NotStr(''' + +''') +icon_table_stack_left24_filled = NotStr(''' + +''') +icon_video_recording20_filled = NotStr(''' + +''') +icon_clear_formatting20_filled = NotStr(''' + +''') +icon_javascript24_regular = NotStr(''' + +''') +icon_font_space_tracking_out28_filled = NotStr(''' + +''') +icon_ink_stroke20_regular = NotStr(''' + +''') +icon_arrow_step_back20_regular = NotStr(''' + +''') +icon_checkmark32_regular = NotStr(''' + +''') +icon_text_description24_filled = NotStr(''' + +''') +icon_tv24_regular = NotStr(''' + +''') +icon_bluetooth_connected20_filled = NotStr(''' + +''') +icon_microscope20_filled = NotStr(''' + +''') +icon_text_hanging24_regular = NotStr(''' + +''') +icon_call28_filled = NotStr(''' + +''') +icon_book_search24_regular = NotStr(''' + +''') +icon_person_add28_filled = NotStr(''' + +''') +icon_book_pulse24_filled = NotStr(''' + +''') +icon_cursor_hover32_filled = NotStr(''' + +''') +icon_text_case_uppercase16_regular = NotStr(''' + +''') +icon_shield_dismiss20_regular = NotStr(''' + +''') +icon_text_bullet_list_add20_filled = NotStr(''' + +''') +icon_glasses20_regular = NotStr(''' + +''') +icon_voicemail20_filled = NotStr(''' + +''') +icon_add_circle28_regular = NotStr(''' + +''') +icon_arrow_circle_down_double24_filled = NotStr(''' + +''') +icon_inprivate_account16_filled = NotStr(''' + +''') +icon_call_prohibited16_regular = NotStr(''' + +''') +icon_document_table_truck24_filled = NotStr(''' + +''') +icon_camera_edit20_filled = NotStr(''' + +''') +icon_emoji_surprise24_filled = NotStr(''' + +''') +icon_grid_dots20_filled = NotStr(''' + +''') +icon_rating_mature20_regular = NotStr(''' + +''') +icon_text_direction_rotate270_right20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left24_filled = NotStr(''' + +''') +icon_crop24_regular = NotStr(''' + +''') +icon_note24_filled = NotStr(''' + +''') +icon_person_add16_regular = NotStr(''' + +''') +icon_news28_regular = NotStr(''' + +''') +icon_shield_badge20_filled = NotStr(''' + +''') +icon_text_column_two24_regular = NotStr(''' + +''') +icon_sport_soccer24_regular = NotStr(''' + +''') +icon_textbox_rotate9020_regular = NotStr(''' + +''') +icon_phone_span_in28_filled = NotStr(''' + +''') +icon_arrow_eject20_regular = NotStr(''' + +''') +icon_text_strikethrough24_filled = NotStr(''' + +''') +icon_window_multiple20_filled = NotStr(''' + +''') +icon_chevron_circle_up24_regular = NotStr(''' + +''') +icon_document_table24_filled = NotStr(''' + +''') +icon_star_prohibited20_filled = NotStr(''' + +''') +icon_phone_desktop28_regular = NotStr(''' + +''') +icon_device_meeting_room28_filled = NotStr(''' + +''') +icon_star12_regular = NotStr(''' + +''') +icon_chat_warning24_regular = NotStr(''' + +''') +icon_window_wrench28_regular = NotStr(''' + +''') +icon_broom16_filled = NotStr(''' + +''') +icon_signature20_filled = NotStr(''' + +''') +icon_panel_right_contract20_regular = NotStr(''' + +''') +icon_note_add16_filled = NotStr(''' + +''') +icon_text_number_list_rtl24_regular = NotStr(''' + +''') +icon_animal_turtle24_filled = NotStr(''' + +''') +icon_building_multiple20_regular = NotStr(''' + +''') +icon_poll20_regular = NotStr(''' + +''') +icon_call_outbound48_filled = NotStr(''' + +''') +icon_math_symbols24_regular = NotStr(''' + +''') +icon_timer16_regular = NotStr(''' + +''') +icon_text_direction_rotate90_right20_filled = NotStr(''' + +''') +icon_full_screen_maximize24_regular = NotStr(''' + +''') +icon_arrow_wrap20_filled = NotStr(''' + +''') +icon_slide_eraser24_filled = NotStr(''' + + + + + +''') +icon_brightness_low32_regular = NotStr(''' + +''') +icon_password20_filled = NotStr(''' + +''') +icon_tetris_app24_regular = NotStr(''' + +''') +icon_text_word_count20_filled = NotStr(''' + +''') +icon_closed_caption32_regular = NotStr(''' + +''') +icon_shifts_prohibited24_regular = NotStr(''' + +''') +icon_arrow_download16_filled = NotStr(''' + +''') +icon_square_hint_sparkles24_filled = NotStr(''' + +''') +icon_print20_regular = NotStr(''' + +''') +icon_select_all_on24_filled = NotStr(''' + +''') +icon_circle32_regular = NotStr(''' + +''') +icon_system24_filled = NotStr(''' + +''') +icon_split_vertical32_filled = NotStr(''' + +''') +icon_bed16_regular = NotStr(''' + +''') +icon_dialpad24_regular = NotStr(''' + +''') +icon_table_add16_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_night24_regular = NotStr(''' + +''') +icon_sparkle16_regular = NotStr(''' + +''') +icon_bookmark16_filled = NotStr(''' + +''') +icon_window_apps28_regular = NotStr(''' + +''') +icon_chevron_up48_filled = NotStr(''' + +''') +icon_text_position_behind24_filled = NotStr(''' + +''') +icon_more_horizontal20_regular = NotStr(''' + +''') +icon_arrow_circle_down20_filled = NotStr(''' + +''') +icon_window24_regular = NotStr(''' + +''') +icon_re_order_dots_horizontal24_regular = NotStr(''' + +''') +icon_channel_alert20_regular = NotStr(''' + +''') +icon_shifts24_regular = NotStr(''' + +''') +icon_video_off24_filled = NotStr(''' + +''') +icon_leaf_one16_regular = NotStr(''' + +''') +icon_arrow_export_ltr24_filled = NotStr(''' + +''') +icon_text_bullet_list_tree24_filled = NotStr(''' + +''') +icon_comment_off24_filled = NotStr(''' + +''') +icon_closed_caption48_regular = NotStr(''' + +''') +icon_bowl_chopsticks24_regular = NotStr(''' + +''') +icon_textbox_align_middle24_filled = NotStr(''' + +''') +icon_cloud_swap20_regular = NotStr(''' + +''') +icon_shield_checkmark28_filled = NotStr(''' + +''') +icon_arrow_undo24_filled = NotStr(''' + +''') +icon_globe_add24_filled = NotStr(''' + +''') +icon_data_funnel20_filled = NotStr(''' + +''') +icon_megaphone20_regular = NotStr(''' + +''') +icon_calendar_clock24_filled = NotStr(''' + +''') +icon_panel_left16_regular = NotStr(''' + +''') +icon_picture_in_picture_enter20_filled = NotStr(''' + +''') +icon_copy_arrow_right16_regular = NotStr(''' + +''') +icon_organization16_regular = NotStr(''' + +''') +icon_scales32_filled = NotStr(''' + +''') +icon_folder20_regular = NotStr(''' + +''') +icon_control_button20_regular = NotStr(''' + +''') +icon_headset20_filled = NotStr(''' + +''') +icon_table16_filled = NotStr(''' + +''') +icon_mail_add20_filled = NotStr(''' + +''') +icon_video_prohibited28_filled = NotStr(''' + +''') +icon_arrow_clockwise48_filled = NotStr(''' + +''') +icon_vehicle_car_collision20_regular = NotStr(''' + +''') +icon_tooltip_quote24_regular = NotStr(''' + +''') +icon_flash28_filled = NotStr(''' + +''') +icon_camera_switch24_regular = NotStr(''' + +''') +icon_share_screen_person20_filled = NotStr(''' + +''') +icon_cloud_add20_regular = NotStr(''' + +''') +icon_arrow_circle_up20_regular = NotStr(''' + +''') +icon_code_circle20_filled = NotStr(''' + +''') +icon_cloud_words32_regular = NotStr(''' + +''') +icon_stack_star16_regular = NotStr(''' + +''') +icon_multiplier15_x28_regular = NotStr(''' + +''') +icon_beaker20_filled = NotStr(''' + +''') +icon_tetris_app20_regular = NotStr(''' + +''') +icon_cloud_words48_regular = NotStr(''' + +''') +icon_weather_moon16_regular = NotStr(''' + +''') +icon_production_checkmark24_regular = NotStr(''' + +''') +icon_arrow_previous20_regular = NotStr(''' + +''') +icon_multiplier12_x28_regular = NotStr(''' + +''') +icon_guitar20_filled = NotStr(''' + +''') +icon_square12_filled = NotStr(''' + +''') +icon_square_hint24_regular = NotStr(''' + +''') +icon_calendar_chat24_filled = NotStr(''' + +''') +icon_blur24_regular = NotStr(''' + +''') +icon_subtract_circle20_filled = NotStr(''' + +''') +icon_weather_fog24_filled = NotStr(''' + +''') +icon_arrow_expand20_filled = NotStr(''' + +''') +icon_subtract_square_multiple16_regular = NotStr(''' + +''') +icon_presence_available16_regular = NotStr(''' + +''') +icon_text_grammar_settings20_regular = NotStr(''' + +''') +icon_split_horizontal12_regular = NotStr(''' + +''') +icon_person_board20_filled = NotStr(''' + +''') +icon_tab_desktop24_regular = NotStr(''' + +''') +icon_headset_vr20_filled = NotStr(''' + +''') +icon_align_bottom28_filled = NotStr(''' + +''') +icon_cloud_dismiss28_regular = NotStr(''' + +''') +icon_chevron_circle_up32_filled = NotStr(''' + +''') +icon_align_left32_filled = NotStr(''' + +''') +icon_dock24_filled = NotStr(''' + +''') +icon_emoji_smile_slight24_filled = NotStr(''' + +''') +icon_comment_checkmark20_filled = NotStr(''' + +''') +icon_text_grammar_settings24_filled = NotStr(''' + +''') +icon_person_prohibited24_regular = NotStr(''' + +''') +icon_chevron_left24_regular = NotStr(''' + +''') +icon_broom24_regular = NotStr(''' + +''') +icon_live_off20_regular = NotStr(''' + +''') +icon_tab_inprivate_account24_filled = NotStr(''' + +''') +icon_ticket_diagonal16_filled = NotStr(''' + +''') +icon_split_vertical12_filled = NotStr(''' + +''') +icon_sport_american_football24_filled = NotStr(''' + +''') +icon_credit_card_toolbox24_filled = NotStr(''' + +''') +icon_hd20_regular = NotStr(''' + +''') +icon_rename28_filled = NotStr(''' + +''') +icon_inking_tool24_regular = NotStr(''' + +''') +icon_text_baseline20_regular = NotStr(''' + + + + +''') +icon_calendar3_day20_regular = NotStr(''' + +''') +icon_shield_checkmark48_regular = NotStr(''' + +''') +icon_bookmark16_regular = NotStr(''' + +''') +icon_toggle_left28_filled = NotStr(''' + +''') +icon_alert_snooze24_filled = NotStr(''' + +''') +icon_document_split_hint24_filled = NotStr(''' + +''') +icon_organization28_filled = NotStr(''' + +''') +icon_tag_dismiss16_filled = NotStr(''' + +''') +icon_target32_filled = NotStr(''' + + + + + +''') +icon_chat_help20_filled = NotStr(''' + +''') +icon_sign_out20_filled = NotStr(''' + +''') +icon_align_space_evenly_horizontal20_regular = NotStr(''' + +''') +icon_mail_inbox20_filled = NotStr(''' + +''') +icon_clock_dismiss20_regular = NotStr(''' + +''') +icon_arrow_curve_up_left20_regular = NotStr(''' + +''') +icon_rectangle_landscape48_filled = NotStr(''' + +''') +icon_arrow_fit20_filled = NotStr(''' + +''') +icon_road_cone48_filled = NotStr(''' + +''') +icon_number_symbol28_filled = NotStr(''' + +''') +icon_align_right32_filled = NotStr(''' + +''') +icon_device_meeting_room_remote16_regular = NotStr(''' + +''') +icon_contact_card_group20_filled = NotStr(''' + +''') +icon_shape_exclude20_filled = NotStr(''' + +''') +icon_paint_bucket16_filled = NotStr(''' + +''') +icon_color_background_accent20_regular = NotStr(''' + +''') +icon_vault16_regular = NotStr(''' + +''') +icon_eyedropper24_filled = NotStr(''' + +''') +icon_mail_arrow_double_back16_regular = NotStr(''' + +''') +icon_document_table_arrow_right20_regular = NotStr(''' + +''') +icon_video_prohibited20_filled = NotStr(''' + +''') +icon_arrow_sync_dismiss20_regular = NotStr(''' + +''') +icon_location_dismiss24_regular = NotStr(''' + +''') +icon_contact_card_link16_filled = NotStr(''' + +''') +icon_people_community_add24_filled = NotStr(''' + +''') +icon_table_stack_left28_regular = NotStr(''' + +''') +icon_vehicle_truck_cube24_regular = NotStr(''' + +''') +icon_align_top32_regular = NotStr(''' + +''') +icon_book_database20_filled = NotStr(''' + +''') +icon_speaker148_filled = NotStr(''' + +''') +icon_document_page_top_right20_filled = NotStr(''' + +''') +icon_building_factory20_filled = NotStr(''' + +''') +icon_table_move_below16_filled = NotStr(''' + +''') +icon_calendar_mention20_regular = NotStr(''' + +''') +icon_contract_down_left32_filled = NotStr(''' + +''') +icon_align_center_horizontal48_regular = NotStr(''' + +''') +icon_weather_snow24_filled = NotStr(''' + +''') +icon_pi24_filled = NotStr(''' + +''') +icon_border_bottom24_regular = NotStr(''' + +''') +icon_text_add_t24_filled = NotStr(''' + +''') +icon_arrow_circle_down_split24_filled = NotStr(''' + +''') +icon_box_multiple_arrow_left24_regular = NotStr(''' + +''') +icon_shopping_bag_play24_filled = NotStr(''' + +''') +icon_border_all20_filled = NotStr(''' + +''') +icon_city24_filled = NotStr(''' + +''') +icon_lock_multiple24_filled = NotStr(''' + +''') +icon_document_landscape_split24_regular = NotStr(''' + +''') +icon_double_swipe_down24_regular = NotStr(''' + +''') +icon_arrow_redo24_filled = NotStr(''' + +''') +icon_document_checkmark24_filled = NotStr(''' + + + + + +''') +icon_mail_copy20_regular = NotStr(''' + +''') +icon_design_ideas24_regular = NotStr(''' + +''') +icon_mail_alert20_filled = NotStr(''' + +''') +icon_edit32_regular = NotStr(''' + +''') +icon_multiplier2_x28_filled = NotStr(''' + +''') +icon_select_object_skew_edit24_filled = NotStr(''' + +''') +icon_chat_multiple16_regular = NotStr(''' + +''') +icon_gif20_regular = NotStr(''' + +''') +icon_text_number_list_rtl20_filled = NotStr(''' + +''') +icon_power24_filled = NotStr(''' + +''') +icon_shield_prohibited20_regular = NotStr(''' + +''') +icon_resize_small24_regular = NotStr(''' + +''') +icon_expand_up_left16_filled = NotStr(''' + +''') +icon_collections24_filled = NotStr(''' + +''') +icon_call28_regular = NotStr(''' + +''') +icon_text_clear_formatting16_filled = NotStr(''' + +''') +icon_person_lock20_filled = NotStr(''' + +''') +icon_view_desktop_mobile20_regular = NotStr(''' + +''') +icon_device_meeting_room48_regular = NotStr(''' + +''') +icon_text_font_info16_regular = NotStr(''' + +''') +icon_dumbbell16_filled = NotStr(''' + +''') +icon_position_to_front24_regular = NotStr(''' + +''') +icon_table_cells_merge16_regular = NotStr(''' + +''') +icon_subtract28_regular = NotStr(''' + +''') +icon_mail_all_unread20_regular = NotStr(''' + +''') +icon_book24_filled = NotStr(''' + +''') +icon_home24_filled = NotStr(''' + +''') +icon_document_page_bottom_left20_regular = NotStr(''' + +''') +icon_share_close_tray20_filled = NotStr(''' + +''') +icon_document24_filled = NotStr(''' + +''') +icon_slide_add16_regular = NotStr(''' + +''') +icon_breakout_room28_regular = NotStr(''' + +''') +icon_payment24_regular = NotStr(''' + +''') +icon_alert32_regular = NotStr(''' + +''') +icon_edit_off16_regular = NotStr(''' + +''') +icon_bookmark_add20_regular = NotStr(''' + +''') +icon_molecule48_regular = NotStr(''' + +''') +icon_document_footer_dismiss20_filled = NotStr(''' + +''') +icon_location_arrow_left48_regular = NotStr(''' + +''') +icon_shield_checkmark20_filled = NotStr(''' + +''') +icon_text_column_two20_filled = NotStr(''' + +''') +icon_rotate_right24_regular = NotStr(''' + +''') +icon_brightness_high24_filled = NotStr(''' + +''') +icon_person_clock20_regular = NotStr(''' + +''') +icon_arrow_redo28_regular = NotStr(''' + +''') +icon_fps24020_regular = NotStr(''' + +''') +icon_dismiss_circle48_filled = NotStr(''' + +''') +icon_contact_card_ribbon48_regular = NotStr(''' + +''') +icon_tab_desktop24_filled = NotStr(''' + +''') +icon_globe_person24_regular = NotStr(''' + +''') +icon_open_folder48_regular = NotStr(''' + +''') +icon_cloud_arrow_up20_filled = NotStr(''' + +''') +icon_caret_down16_filled = NotStr(''' + +''') +icon_caret_down_right12_regular = NotStr(''' + +''') +icon_skip_back1032_regular = NotStr(''' + +''') +icon_sim20_filled = NotStr(''' + +''') +icon_ribbon_off32_regular = NotStr(''' + +''') +icon_arrow_step_in24_filled = NotStr(''' + +''') +icon_call48_filled = NotStr(''' + +''') +icon_document_heart_pulse20_regular = NotStr(''' + +''') +icon_subtract_circle_arrow_forward20_regular = NotStr(''' + +''') +icon_document_catch_up24_filled = NotStr(''' + +''') +icon_drop16_filled = NotStr(''' + +''') +icon_mail_multiple16_filled = NotStr(''' + +''') +icon_table_edit24_regular = NotStr(''' + +''') +icon_phone_laptop20_filled = NotStr(''' + +''') +icon_flash_checkmark20_regular = NotStr(''' + +''') +icon_checkmark_lock16_regular = NotStr(''' + +''') +icon_folder_arrow_up28_regular = NotStr(''' + +''') +icon_chevron_right20_regular = NotStr(''' + +''') +icon_pivot20_regular = NotStr(''' + +''') +icon_scan_thumb_up16_filled = NotStr(''' + +''') +icon_cube_multiple24_filled = NotStr(''' + +''') +icon_share_ios20_filled = NotStr(''' + +''') +icon_toggle_right48_regular = NotStr(''' + +''') +icon_code24_regular = NotStr(''' + +''') +icon_tag_off24_filled = NotStr(''' + +''') +icon_mail_inbox_add28_regular = NotStr(''' + +''') +icon_weather_rain_snow24_regular = NotStr(''' + +''') +icon_new16_filled = NotStr(''' + +''') +icon_text_sort_descending16_regular = NotStr(''' + +''') +icon_archive28_regular = NotStr(''' + +''') +icon_record_stop32_regular = NotStr(''' + +''') +icon_table_move_below24_regular = NotStr(''' + +''') +icon_bowl_chopsticks24_filled = NotStr(''' + +''') +icon_arrow_repeat_all_off16_regular = NotStr(''' + +''') +icon_wallet28_filled = NotStr(''' + +''') +icon_drawer_add20_regular = NotStr(''' + +''') +icon_location28_filled = NotStr(''' + +''') +icon_share_screen_stop16_regular = NotStr(''' + +''') +icon_briefcase_off48_regular = NotStr(''' + +''') +icon_text_position_line20_filled = NotStr(''' + +''') +icon_table_link28_filled = NotStr(''' + +''') +icon_people_community28_regular = NotStr(''' + +''') +icon_channel_subtract20_regular = NotStr(''' + +''') +icon_table_resize_column16_filled = NotStr(''' + +''') +icon_previous28_regular = NotStr(''' + +''') +icon_mail_inbox_all24_regular = NotStr(''' + +''') +icon_closed_caption28_regular = NotStr(''' + +''') +icon_reading_mode_mobile24_regular = NotStr(''' + +''') +icon_star24_regular = NotStr(''' + +''') +icon_tabs24_regular = NotStr(''' + +''') +icon_battery724_regular = NotStr(''' + +''') +icon_tablet12_filled = NotStr(''' + +''') +icon_arrow_sort_up20_filled = NotStr(''' + +''') +icon_phone_span_out24_filled = NotStr(''' + +''') +icon_arrow_circle_down_right24_regular = NotStr(''' + +''') +icon_share_ios28_filled = NotStr(''' + +''') +icon_arrow_forward_down_lightning24_filled = NotStr(''' + +''') +icon_phone_update_checkmark24_regular = NotStr(''' + +''') +icon_map_drive20_filled = NotStr(''' + +''') +icon_skip_back1028_regular = NotStr(''' + +''') +icon_arrow_download16_regular = NotStr(''' + +''') +icon_compose16_regular = NotStr(''' + +''') +icon_square12_regular = NotStr(''' + +''') +icon_lock_closed16_regular = NotStr(''' + +''') +icon_arrow_step_out12_regular = NotStr(''' + +''') +icon_premium_person24_filled = NotStr(''' + +''') +icon_group_return24_filled = NotStr(''' + +''') +icon_document_css24_regular = NotStr(''' + +''') +icon_note20_regular = NotStr(''' + +''') +icon_serial_port16_filled = NotStr(''' + +''') +icon_document_search24_filled = NotStr(''' + +''') +icon_arrow_circle_left12_filled = NotStr(''' + +''') +icon_convert_range24_regular = NotStr(''' + +''') +icon_subtract48_regular = NotStr(''' + +''') +icon_point_scan24_filled = NotStr(''' + +''') +icon_data_usage_edit24_filled = NotStr(''' + +''') +icon_chat_bubbles_question24_filled = NotStr(''' + +''') +icon_arrow_step_in_right20_filled = NotStr(''' + +''') +icon_chat12_regular = NotStr(''' + +''') +icon_snooze24_regular = NotStr(''' + +''') +icon_tab_shield_dismiss20_filled = NotStr(''' + +''') +icon_clipboard_heart24_filled = NotStr(''' + +''') +icon_database20_regular = NotStr(''' + +''') +icon_building_shop24_regular = NotStr(''' + +''') +icon_fps12024_regular = NotStr(''' + +''') +icon_highlight20_regular = NotStr(''' + +''') +icon_caret_up16_regular = NotStr(''' + +''') +icon_text_paragraph20_filled = NotStr(''' + +''') +icon_arrow_sort_up24_regular = NotStr(''' + +''') +icon_chevron_down20_regular = NotStr(''' + +''') +icon_call_inbound28_regular = NotStr(''' + +''') +icon_notepad_edit16_regular = NotStr(''' + +''') +icon_app_folder20_filled = NotStr(''' + +''') +icon_pin32_regular = NotStr(''' + +''') +icon_video24_regular = NotStr(''' + +''') +icon_calendar_day24_filled = NotStr(''' + +''') +icon_tetris_app48_regular = NotStr(''' + +''') +icon_calendar_rtl20_filled = NotStr(''' + +''') +icon_bot_add20_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_night20_regular = NotStr(''' + +''') +icon_dismiss32_regular = NotStr(''' + +''') +icon_panel_bottom_contract20_filled = NotStr(''' + +''') +icon_mail_arrow_down16_filled = NotStr(''' + +''') +icon_mail16_regular = NotStr(''' + +''') +icon_divider_short16_regular = NotStr(''' + +''') +icon_pulse_square24_regular = NotStr(''' + +''') +icon_wifi_lock24_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_down20_filled = NotStr(''' + +''') +icon_puzzle_cube24_regular = NotStr(''' + +''') +icon_page_fit24_filled = NotStr(''' + +''') +icon_checkbox_unchecked12_regular = NotStr(''' + +''') +icon_headphones_sound_wave24_filled = NotStr(''' + +''') +icon_print48_filled = NotStr(''' + +''') +icon_briefcase48_regular = NotStr(''' + +''') +icon_caret_down20_regular = NotStr(''' + +''') +icon_text_direction_vertical24_filled = NotStr(''' + +''') +icon_chat20_regular = NotStr(''' + +''') +icon_document_dismiss20_regular = NotStr(''' + +''') +icon_mail_dismiss24_regular = NotStr(''' + +''') +icon_wifi224_filled = NotStr(''' + +''') +icon_text_grammar_wand20_filled = NotStr(''' + +''') +icon_weather_snow_shower_day20_filled = NotStr(''' + +''') +icon_data_trending16_regular = NotStr(''' + +''') +icon_star_half16_filled = NotStr(''' + +''') +icon_person_available24_filled = NotStr(''' + +''') +icon_text_column_two_left20_filled = NotStr(''' + +''') +icon_certificate20_filled = NotStr(''' + +''') +icon_headphones32_regular = NotStr(''' + +''') +icon_arrow_forward_down_lightning24_regular = NotStr(''' + +''') +icon_text_indent_increase_ltr16_filled = NotStr(''' + +''') +icon_arrow_autofit_down20_regular = NotStr(''' + +''') +icon_clipboard_bullet_list_rtl16_regular = NotStr(''' + +''') +icon_globe_video28_regular = NotStr(''' + +''') +icon_book_theta20_regular = NotStr(''' + +''') +icon_split_horizontal28_filled = NotStr(''' + +''') +icon_lightbulb_filament48_regular = NotStr(''' + +''') +icon_video_person_star24_regular = NotStr(''' + +''') +icon_arrow_maximize16_filled = NotStr(''' + +''') +icon_table_delete_row20_regular = NotStr(''' + +''') +icon_credit_card_toolbox24_regular = NotStr(''' + +''') +icon_location_add24_regular = NotStr(''' + +''') +icon_document_error20_regular = NotStr(''' + +''') +icon_calendar_clock20_regular = NotStr(''' + +''') +icon_bluetooth_searching20_regular = NotStr(''' + +''') +icon_plug_disconnected28_regular = NotStr(''' + +''') +icon_center_horizontal24_regular = NotStr(''' + +''') +icon_scratchpad24_filled = NotStr(''' + +''') +icon_javascript16_filled = NotStr(''' + +''') +icon_tablet16_regular = NotStr(''' + +''') +icon_text_position_line24_filled = NotStr(''' + +''') +icon_gift_card_multiple24_filled = NotStr(''' + +''') +icon_camera_off24_filled = NotStr(''' + +''') +icon_document_ribbon16_regular = NotStr(''' + +''') +icon_device_meeting_room_remote32_regular = NotStr(''' + +''') +icon_dual_screen_speaker24_filled = NotStr(''' + + + + + + + +''') +icon_globe_video24_filled = NotStr(''' + +''') +icon_picture_in_picture_exit24_regular = NotStr(''' + +''') +icon_window_console20_regular = NotStr(''' + +''') +icon_shield_keyhole16_regular = NotStr(''' + +''') +icon_table_delete_column28_regular = NotStr(''' + +''') +icon_copy20_filled = NotStr(''' + +''') +icon_channel_share28_regular = NotStr(''' + +''') +icon_video_clip20_regular = NotStr(''' + +''') +icon_chevron_up_down20_filled = NotStr(''' + +''') +icon_multiplier12_x20_regular = NotStr(''' + +''') +icon_emoji_sad16_filled = NotStr(''' + +''') +icon_calendar_today20_filled = NotStr(''' + +''') +icon_text_edit_style20_filled = NotStr(''' + +''') +icon_multiplier15_x48_regular = NotStr(''' + +''') +icon_book_open28_filled = NotStr(''' + +''') +icon_cloud_sync20_filled = NotStr(''' + +''') +icon_walkie_talkie28_regular = NotStr(''' + +''') +icon_weather_snow_shower_night20_regular = NotStr(''' + +''') +icon_info24_regular = NotStr(''' + +''') +icon_table_edit24_filled = NotStr(''' + +''') +icon_window_arrow_up16_regular = NotStr(''' + +''') +icon_people_community28_filled = NotStr(''' + +''') +icon_weather_blowing_snow24_regular = NotStr(''' + +''') +icon_data_bar_vertical_add24_filled = NotStr(''' + +''') +icon_calligraphy_pen20_regular = NotStr(''' + +''') +icon_text_font_size20_filled = NotStr(''' + +''') +icon_subtract24_filled = NotStr(''' + +''') +icon_mail_template16_regular = NotStr(''' + +''') +icon_text_column_one_narrow20_filled = NotStr(''' + +''') +icon_cloud_archive32_filled = NotStr(''' + +''') +icon_link_edit20_filled = NotStr(''' + +''') +icon_arrow_clockwise24_regular = NotStr(''' + +''') +icon_arrow_export_up24_regular = NotStr(''' + +''') +icon_search_visual20_regular = NotStr(''' + +''') +icon_prohibited28_filled = NotStr(''' + +''') +icon_arrow_step_in_left28_regular = NotStr(''' + +''') +icon_weather_haze48_filled = NotStr(''' + +''') +icon_question28_regular = NotStr(''' + +''') +icon_clipboard_data_bar32_filled = NotStr(''' + +''') +icon_cast28_filled = NotStr(''' + +''') +icon_border_bottom24_filled = NotStr(''' + +''') +icon_options16_filled = NotStr(''' + +''') +icon_circle_edit20_regular = NotStr(''' + +''') +icon_image_edit16_filled = NotStr(''' + +''') +icon_arrow_circle_down32_regular = NotStr(''' + +''') +icon_tag_lock16_filled = NotStr(''' + +''') +icon_eye_off20_filled = NotStr(''' + +''') +icon_book_question_mark20_filled = NotStr(''' + +''') +icon_dumbbell24_regular = NotStr(''' + +''') +icon_grid16_regular = NotStr(''' + +''') +icon_closed_caption16_regular = NotStr(''' + +''') +icon_briefcase48_filled = NotStr(''' + +''') +icon_scale_fill20_regular = NotStr(''' + +''') +icon_document_link24_regular = NotStr(''' + +''') +icon_arrow_bounce20_regular = NotStr(''' + +''') +icon_shield_checkmark24_regular = NotStr(''' + +''') +icon_checkmark_circle12_filled = NotStr(''' + +''') +icon_expand_up_left20_regular = NotStr(''' + +''') +icon_tab_in_private24_filled = NotStr(''' + +''') +icon_person_arrow_left16_regular = NotStr(''' + +''') +icon_apps_list20_filled = NotStr(''' + +''') +icon_arrow_sort20_regular = NotStr(''' + +''') +icon_lock_open28_filled = NotStr(''' + +''') +icon_calendar_search20_filled = NotStr(''' + +''') +icon_document_link20_filled = NotStr(''' + +''') +icon_vehicle_truck_profile20_filled = NotStr(''' + +''') +icon_shield_lock20_regular = NotStr(''' + +''') +icon_people_list16_filled = NotStr(''' + +''') +icon_video48_filled = NotStr(''' + +''') +icon_square_multiple20_regular = NotStr(''' + +''') +icon_tetris_app28_regular = NotStr(''' + +''') +icon_multiselect_ltr16_filled = NotStr(''' + +''') +icon_note48_regular = NotStr(''' + +''') +icon_rewind20_regular = NotStr(''' + +''') +icon_food16_regular = NotStr(''' + +''') +icon_folder28_filled = NotStr(''' + +''') +icon_mail_warning16_regular = NotStr(''' + +''') +icon_conference_room48_filled = NotStr(''' + +''') +icon_person_voice20_filled = NotStr(''' + +''') +icon_video_person_star20_regular = NotStr(''' + +''') +icon_headset_vr24_regular = NotStr(''' + +''') +icon_text_bullet_list_square_edit24_filled = NotStr(''' + +''') +icon_gavel24_regular = NotStr(''' + +''') +icon_resize_table24_regular = NotStr(''' + +''') +icon_align_space_between_horizontal20_filled = NotStr(''' + + + + +''') +icon_animal_turtle28_filled = NotStr(''' + +''') +icon_text_effects24_regular = NotStr(''' + +''') +icon_whiteboard20_regular = NotStr(''' + +''') +icon_accessibility_checkmark20_regular = NotStr(''' + +''') +icon_weather_cloudy20_filled = NotStr(''' + +''') +icon_prohibited_multiple16_filled = NotStr(''' + +''') +icon_guest20_filled = NotStr(''' + +''') +icon_doctor12_regular = NotStr(''' + +''') +icon_compass_northwest16_filled = NotStr(''' + +''') +icon_link_dismiss16_filled = NotStr(''' + +''') +icon_send28_regular = NotStr(''' + +''') +icon_comment_multiple_link28_filled = NotStr(''' + +''') +icon_checkmark32_filled = NotStr(''' + +''') +icon_pin_off24_regular = NotStr(''' + +''') +icon_mail_link20_regular = NotStr(''' + +''') +icon_error_circle12_regular = NotStr(''' + +''') +icon_home_checkmark24_filled = NotStr(''' + +''') +icon_money_settings20_regular = NotStr(''' + +''') +icon_approvals_app24_filled = NotStr(''' + +''') +icon_text_wrap24_regular = NotStr(''' + +''') +icon_tablet12_regular = NotStr(''' + +''') +icon_people_team24_regular = NotStr(''' + +''') +icon_music_note216_filled = NotStr(''' + +''') +icon_arrow_up12_filled = NotStr(''' + +''') +icon_comment_lightning20_filled = NotStr(''' + +''') +icon_person_chat16_regular = NotStr(''' + +''') +icon_save24_regular = NotStr(''' + +''') +icon_sleep24_regular = NotStr(''' + +''') +icon_vehicle_car_profile_ltr16_regular = NotStr(''' + +''') +icon_border_none24_filled = NotStr(''' + +''') +icon_document_lock16_filled = NotStr(''' + +''') +icon_road_cone16_filled = NotStr(''' + +''') +icon_fps6016_regular = NotStr(''' + +''') +icon_cellular_data524_filled = NotStr(''' + +''') +icon_location_off28_filled = NotStr(''' + +''') +icon_table_stack_below20_regular = NotStr(''' + +''') +icon_text_font_info20_regular = NotStr(''' + +''') +icon_earth24_filled = NotStr(''' + +''') +icon_tag_question_mark16_regular = NotStr(''' + +''') +icon_eyedropper_off24_filled = NotStr(''' + +''') +icon_shape_subtract20_regular = NotStr(''' + +''') +icon_notepad20_regular = NotStr(''' + +''') +icon_arrow_step_in16_regular = NotStr(''' + +''') +icon_compose24_regular = NotStr(''' + +''') +icon_quiz_new24_filled = NotStr(''' + +''') +icon_contact_card_group28_regular = NotStr(''' + +''') +icon_headphones_sound_wave48_filled = NotStr(''' + +''') +icon_reading_list_add20_regular = NotStr(''' + +''') +icon_dual_screen_clock24_regular = NotStr(''' + +''') +icon_building_retail_money24_filled = NotStr(''' + +''') +icon_tray_item_add24_regular = NotStr(''' + +''') +icon_battery624_regular = NotStr(''' + +''') +icon_contact_card16_regular = NotStr(''' + +''') +icon_hand_right28_regular = NotStr(''' + +''') +icon_database_person24_filled = NotStr(''' + +''') +icon_home28_regular = NotStr(''' + +''') +icon_call_missed16_filled = NotStr(''' + +''') +icon_food_egg16_regular = NotStr(''' + +''') +icon_dark_theme20_filled = NotStr(''' + +''') +icon_comment_arrow_right20_filled = NotStr(''' + +''') +icon_video_clip16_regular = NotStr(''' + +''') +icon_person_circle24_regular = NotStr(''' + +''') +icon_reading_mode_mobile24_filled = NotStr(''' + +''') +icon_text_line_spacing20_filled = NotStr(''' + +''') +icon_shield24_filled = NotStr(''' + +''') +icon_speaker224_filled = NotStr(''' + +''') +icon_arrow_step_in20_filled = NotStr(''' + +''') +icon_weather_sunny48_regular = NotStr(''' + +''') +icon_text_header120_filled = NotStr(''' + +''') +icon_document_dismiss16_regular = NotStr(''' + +''') +icon_phone_laptop16_regular = NotStr(''' + +''') +icon_mail_unread20_filled = NotStr(''' + +''') +icon_branch_fork24_regular = NotStr(''' + +''') +icon_maximize48_regular = NotStr(''' + +''') +icon_tag_dismiss20_regular = NotStr(''' + +''') +icon_read_aloud20_regular = NotStr(''' + +''') +icon_sub_grid24_filled = NotStr(''' + +''') +icon_speaker_mute48_regular = NotStr(''' + +''') +icon_headphones20_regular = NotStr(''' + +''') +icon_window_edit16_filled = NotStr(''' + +''') +icon_calendar_cancel24_filled = NotStr(''' + +''') +icon_people_add24_regular = NotStr(''' + +''') +icon_sport24_filled = NotStr(''' + +''') +icon_task_list_square_add24_regular = NotStr(''' + +''') +icon_projection_screen16_regular = NotStr(''' + +''') +icon_line_dashes32_regular = NotStr(''' + +''') +icon_call_pause24_filled = NotStr(''' + +''') +icon_food_cake16_filled = NotStr(''' + +''') +icon_scan_text24_filled = NotStr(''' + +''') +icon_presence_offline12_regular = NotStr(''' + +''') +icon_diamond16_filled = NotStr(''' + +''') +icon_arrow_forward_down_lightning20_regular = NotStr(''' + +''') +icon_square_arrow_forward48_filled = NotStr(''' + +''') +icon_record32_regular = NotStr(''' + +''') +icon_chart_multiple20_filled = NotStr(''' + +''') +icon_contact_card_ribbon32_regular = NotStr(''' + +''') +icon_clipboard_arrow_right24_regular = NotStr(''' + +''') +icon_arrow_up_right48_filled = NotStr(''' + +''') +icon_ink_stroke24_regular = NotStr(''' + +''') +icon_text_bullet_list_square_edit24_regular = NotStr(''' + +''') +icon_dismiss_square_multiple20_regular = NotStr(''' + +''') +icon_chat_help24_filled = NotStr(''' + +''') +icon_glasses_off16_regular = NotStr(''' + +''') +icon_tent48_regular = NotStr(''' + +''') +icon_circle_small20_filled = NotStr(''' + +''') +icon_person_board24_filled = NotStr(''' + +''') +icon_cloud_flow24_filled = NotStr(''' + +''') +icon_animal_turtle24_regular = NotStr(''' + +''') +icon_document48_regular = NotStr(''' + +''') +icon_dismiss_circle24_filled = NotStr(''' + +''') +icon_emoji_sad16_regular = NotStr(''' + +''') +icon_document_multiple_prohibited24_filled = NotStr(''' + +''') +icon_table_freeze_row24_filled = NotStr(''' + +''') +icon_person16_filled = NotStr(''' + +''') +icon_clipboard_more20_regular = NotStr(''' + +''') +icon_table_insert_column28_filled = NotStr(''' + +''') +icon_square_arrow_forward32_filled = NotStr(''' + +''') +icon_doctor48_regular = NotStr(''' + +''') +icon_arrow_curve_down_left24_regular = NotStr(''' + +''') +icon_circle20_filled = NotStr(''' + +''') +icon_connector16_regular = NotStr(''' + +''') +icon_broad_activity_feed16_filled = NotStr(''' + +''') +icon_flash_checkmark16_regular = NotStr(''' + +''') +icon_subtract_circle24_filled = NotStr(''' + +''') +icon_border_none20_filled = NotStr(''' + +''') +icon_previous24_regular = NotStr(''' + +''') +icon_text_underline24_regular = NotStr(''' + +''') +icon_line_horizontal320_regular = NotStr(''' + +''') +icon_weather_haze20_regular = NotStr(''' + +''') +icon_cookies20_regular = NotStr(''' + +''') +icon_phone_tablet20_filled = NotStr(''' + +''') +icon_people_error20_regular = NotStr(''' + +''') +icon_column_edit24_regular = NotStr(''' + +''') +icon_document_text_toolbox24_regular = NotStr(''' + +''') +icon_document_dismiss20_filled = NotStr(''' + +''') +icon_trophy16_filled = NotStr(''' + +''') +icon_book_star20_regular = NotStr(''' + +''') +icon_previous20_filled = NotStr(''' + +''') +icon_calendar_chat20_regular = NotStr(''' + +''') +icon_font_decrease20_regular = NotStr(''' + +''') +icon_heart_broken16_filled = NotStr(''' + +''') +icon_weather_moon_off20_regular = NotStr(''' + +''') +icon_scale_fit16_regular = NotStr(''' + +''') +icon_bookmark_multiple16_filled = NotStr(''' + +''') +icon_grid_dots24_filled = NotStr(''' + +''') +icon_flashlight24_filled = NotStr(''' + +''') +icon_data_pie24_filled = NotStr(''' + +''') +icon_contract_down_left16_filled = NotStr(''' + +''') +icon_bowl_chopsticks28_regular = NotStr(''' + +''') +icon_skip_forward3048_regular = NotStr(''' + +''') +icon_arrow_enter_left20_filled = NotStr(''' + +''') +icon_form_new24_filled = NotStr(''' + +''') +icon_border_top_bottom20_filled = NotStr(''' + +''') +icon_desktop_cursor24_filled = NotStr(''' + +''') +icon_arrow_maximize_vertical24_regular = NotStr(''' + +''') +icon_icons20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left24_regular = NotStr(''' + +''') +icon_phone12_regular = NotStr(''' + +''') +icon_circle_half_fill20_regular = NotStr(''' + +''') +icon_headset_add24_filled = NotStr(''' + +''') +icon_person_board24_regular = NotStr(''' + +''') +icon_thinking24_regular = NotStr(''' + +''') +icon_chat_settings20_regular = NotStr(''' + +''') +icon_food_toast20_regular = NotStr(''' + +''') +icon_phone_desktop24_regular = NotStr(''' + +''') +icon_arrow_up24_regular = NotStr(''' + +''') +icon_tent16_regular = NotStr(''' + +''') +icon_document_edit16_filled = NotStr(''' + +''') +icon_document_text24_regular = NotStr(''' + +''') +icon_organization24_filled = NotStr(''' + +''') +icon_text_case_lowercase20_filled = NotStr(''' + +''') +icon_branch_compare16_regular = NotStr(''' + +''') +icon_calendar_arrow_right20_regular = NotStr(''' + +''') +icon_database_link24_regular = NotStr(''' + +''') +icon_image_arrow_back24_filled = NotStr(''' + +''') +icon_flag_off48_filled = NotStr(''' + +''') +icon_person_mail28_filled = NotStr(''' + +''') +icon_clock_alarm24_filled = NotStr(''' + +''') +icon_flip_horizontal24_regular = NotStr(''' + +''') +icon_text_bold24_filled = NotStr(''' + +''') +icon_tab_desktop_multiple20_filled = NotStr(''' + +''') +icon_question_circle28_regular = NotStr(''' + +''') +icon_design_ideas24_filled = NotStr(''' + +''') +icon_people_swap28_filled = NotStr(''' + +''') +icon_arrow_circle_left28_regular = NotStr(''' + +''') +icon_save_arrow_right20_regular = NotStr(''' + +''') +icon_arrow_autofit_height24_filled = NotStr(''' + +''') +icon_chat_arrow_double_back20_regular = NotStr(''' + +''') +icon_arrow_turn_right20_filled = NotStr(''' + +''') +icon_video_person12_regular = NotStr(''' + +''') +icon_cloud_archive28_filled = NotStr(''' + +''') +icon_door_arrow_left24_regular = NotStr(''' + +''') +icon_database_link20_filled = NotStr(''' + +''') +icon_toolbox12_regular = NotStr(''' + +''') +icon_data_trending24_filled = NotStr(''' + +''') +icon_list28_regular = NotStr(''' + +''') +icon_channel_dismiss48_regular = NotStr(''' + +''') +icon_mail_inbox_all24_filled = NotStr(''' + +''') +icon_screenshot20_filled = NotStr(''' + +''') +icon_leaf_one24_regular = NotStr(''' + +''') +icon_bookmark_off24_regular = NotStr(''' + +''') +icon_store_microsoft16_regular = NotStr(''' + +''') +icon_shopping_bag_arrow_left24_filled = NotStr(''' + +''') +icon_arrow_redo48_regular = NotStr(''' + +''') +icon_video_person48_filled = NotStr(''' + +''') +icon_document_lock20_filled = NotStr(''' + +''') +icon_vote24_regular = NotStr(''' + +''') +icon_lasso20_regular = NotStr(''' + +''') +icon_arrow_circle_right48_regular = NotStr(''' + +''') +icon_slide_eraser16_regular = NotStr(''' + +''') +icon_broom20_filled = NotStr(''' + +''') +icon_money_hand24_filled = NotStr(''' + +''') +icon_cellular_data420_regular = NotStr(''' + +''') +icon_food_pizza20_regular = NotStr(''' + +''') +icon_text_continuous20_regular = NotStr(''' + +''') +icon_mail_unread24_filled = NotStr(''' + +''') +icon_color_fill28_regular = NotStr(''' + +''') +icon_developer_board24_regular = NotStr(''' + +''') +icon_vehicle_subway16_regular = NotStr(''' + +''') +icon_add_circle24_regular = NotStr(''' + +''') +icon_play_circle28_filled = NotStr(''' + +''') +icon_arrow_sort_down_lines16_filled = NotStr(''' + +''') +icon_person_arrow_left24_filled = NotStr(''' + +''') +icon_call_park24_filled = NotStr(''' + +''') +icon_people_checkmark20_regular = NotStr(''' + +''') +icon_open_off24_filled = NotStr(''' + +''') +icon_building_bank48_regular = NotStr(''' + +''') +icon_split_vertical32_regular = NotStr(''' + +''') +icon_square_hint48_regular = NotStr(''' + +''') +icon_align_bottom48_filled = NotStr(''' + +''') +icon_design_ideas20_regular = NotStr(''' + +''') +icon_open16_filled = NotStr(''' + +''') +icon_contact_card_link20_regular = NotStr(''' + +''') +icon_arrow_reply_all16_filled = NotStr(''' + +''') +icon_tent28_regular = NotStr(''' + +''') +icon_picture_in_picture_enter24_filled = NotStr(''' + +''') +icon_call_transfer20_filled = NotStr(''' + +''') +icon_alert_off20_regular = NotStr(''' + +''') +icon_error_circle_settings16_regular = NotStr(''' + +''') +icon_speaker_usb24_filled = NotStr(''' + +''') +icon_battery424_regular = NotStr(''' + +''') +icon_text_column_one_wide24_filled = NotStr(''' + +''') +icon_video36024_filled = NotStr(''' + +''') +icon_shape_exclude24_regular = NotStr(''' + +''') +icon_panel_right48_regular = NotStr(''' + +''') +icon_align_right28_filled = NotStr(''' + +''') +icon_people_list20_regular = NotStr(''' + +''') +icon_text_position_behind20_filled = NotStr(''' + +''') +icon_person24_regular = NotStr(''' + +''') +icon_window_ad_person20_regular = NotStr(''' + +''') +icon_window_apps48_filled = NotStr(''' + +''') +icon_comment_arrow_right20_regular = NotStr(''' + +''') +icon_people_swap24_regular = NotStr(''' + +''') +icon_food_toast16_regular = NotStr(''' + +''') +icon_caret_left12_filled = NotStr(''' + +''') +icon_window_arrow_up24_regular = NotStr(''' + +''') +icon_search_visual16_filled = NotStr(''' + +''') +icon_reading_list20_filled = NotStr(''' + +''') +icon_text_case_lowercase16_filled = NotStr(''' + +''') +icon_share_screen_person_overlay_inside28_filled = NotStr(''' + +''') +icon_person_arrow_right24_filled = NotStr(''' + +''') +icon_eraser24_filled = NotStr(''' + +''') +icon_gift24_filled = NotStr(''' + +''') +icon_padding_left20_filled = NotStr(''' + +''') +icon_clipboard_checkmark20_regular = NotStr(''' + +''') +icon_compose20_regular = NotStr(''' + +''') +icon_cellular_data120_regular = NotStr(''' + +''') +icon_gift24_regular = NotStr(''' + +''') +icon_align_space_fit_vertical20_regular = NotStr(''' + + + + +''') +icon_arrow_up28_regular = NotStr(''' + +''') +icon_communication20_filled = NotStr(''' + +''') +icon_data_histogram20_regular = NotStr(''' + +''') +icon_organization24_regular = NotStr(''' + +''') +icon_tv_usb28_regular = NotStr(''' + +''') +icon_important20_regular = NotStr(''' + +''') +icon_comment_multiple32_regular = NotStr(''' + +''') +icon_food_egg20_regular = NotStr(''' + +''') +icon_preview_link24_filled = NotStr(''' + +''') +icon_bin_full24_regular = NotStr(''' + +''') +icon_share_screen_stop24_filled = NotStr(''' + +''') +icon_delete28_regular = NotStr(''' + +''') +icon_document_bullet_list_clock24_regular = NotStr(''' + +''') +icon_checkmark_starburst16_regular = NotStr(''' + +''') +icon_person_lock24_regular = NotStr(''' + +''') +icon_molecule24_filled = NotStr(''' + +''') +icon_star48_regular = NotStr(''' + +''') +icon_heart24_regular = NotStr(''' + +''') +icon_filter20_filled = NotStr(''' + +''') +icon_share_ios48_filled = NotStr(''' + +''') +icon_barcode_scanner24_regular = NotStr(''' + +''') +icon_arrow_forward_down_person24_regular = NotStr(''' + +''') +icon_document_bullet_list_multiple20_regular = NotStr(''' + +''') +icon_text_number_list_rtl20_regular = NotStr(''' + +''') +icon_arrow_repeat_all_off24_regular = NotStr(''' + +''') +icon_chevron_down48_regular = NotStr(''' + +''') +icon_emoji32_regular = NotStr(''' + +''') +icon_drink_wine24_filled = NotStr(''' + +''') +icon_leaf_three24_regular = NotStr(''' + +''') +icon_barcode_scanner20_filled = NotStr(''' + +''') +icon_box_edit24_filled = NotStr(''' + +''') +icon_drawer_play24_regular = NotStr(''' + +''') +icon_arrows_bidirectional20_regular = NotStr(''' + +''') +icon_arrow_circle_down12_filled = NotStr(''' + +''') +icon_call_pause20_filled = NotStr(''' + +''') +icon_dock20_regular = NotStr(''' + +''') +icon_shield_keyhole16_filled = NotStr(''' + +''') +icon_thumb_like20_filled = NotStr(''' + +''') +icon_subtract_circle_arrow_back20_filled = NotStr(''' + +''') +icon_arrow_redo32_regular = NotStr(''' + +''') +icon_line_dashes20_filled = NotStr(''' + +''') +icon_symbols20_regular = NotStr(''' + +''') +icon_gavel24_filled = NotStr(''' + +''') +icon_table_dismiss24_filled = NotStr(''' + +''') +icon_chevron_up_down24_filled = NotStr(''' + +''') +icon_chevron_right24_regular = NotStr(''' + +''') +icon_chat_arrow_back16_regular = NotStr(''' + +''') +icon_document_width20_filled = NotStr(''' + +''') +icon_add24_regular = NotStr(''' + +''') +icon_attach12_regular = NotStr(''' + +''') +icon_error_circle12_filled = NotStr(''' + +''') +icon_fluent32_filled = NotStr(''' + +''') +icon_arrow_eject20_filled = NotStr(''' + +''') +icon_checkbox_person24_regular = NotStr(''' + +''') +icon_document_queue_multiple24_filled = NotStr(''' + +''') +icon_document_table24_regular = NotStr(''' + +''') +icon_star_emphasis24_regular = NotStr(''' + +''') +icon_animal_cat24_filled = NotStr(''' + +''') +icon_checkmark_starburst20_regular = NotStr(''' + +''') +icon_text_sort_descending20_regular = NotStr(''' + +''') +icon_window_wrench32_regular = NotStr(''' + +''') +icon_delete20_regular = NotStr(''' + +''') +icon_book_open_microphone24_filled = NotStr(''' + +''') +icon_multiplier2_x20_regular = NotStr(''' + +''') +icon_video36020_filled = NotStr(''' + +''') +icon_text_grammar_checkmark24_regular = NotStr(''' + +''') +icon_wallpaper24_filled = NotStr(''' + +''') +icon_table_dismiss16_filled = NotStr(''' + +''') +icon_window_ad20_regular = NotStr(''' + +''') +icon_document_arrow_down16_regular = NotStr(''' + +''') +icon_trophy48_regular = NotStr(''' + +''') +icon_autocorrect24_regular = NotStr(''' + +''') +icon_arrow_down_left24_regular = NotStr(''' + +''') +icon_breakout_room28_filled = NotStr(''' + +''') +icon_panel_left24_filled = NotStr(''' + +''') +icon_comment_arrow_right16_regular = NotStr(''' + +''') +icon_folder_zip24_regular = NotStr(''' + +''') +icon_autocorrect20_filled = NotStr(''' + +''') +icon_share_screen_person16_filled = NotStr(''' + +''') +icon_document_settings20_filled = NotStr(''' + +''') +icon_reward24_regular = NotStr(''' + +''') +icon_person_delete24_regular = NotStr(''' + +''') +icon_city16_regular = NotStr(''' + +''') +icon_desktop_arrow_right20_filled = NotStr(''' + +''') +icon_people_team_add20_regular = NotStr(''' + +''') +icon_document_text_clock24_regular = NotStr(''' + +''') +icon_tablet_speaker20_regular = NotStr(''' + +''') +icon_comment28_filled = NotStr(''' + +''') +icon_shield_error24_regular = NotStr(''' + +''') +icon_key_command16_regular = NotStr(''' + +''') +icon_headphones_sound_wave28_regular = NotStr(''' + +''') +icon_arrow_bidirectional_up_down20_regular = NotStr(''' + +''') +icon_shield_error20_regular = NotStr(''' + +''') +icon_content_view32_filled = NotStr(''' + +''') +icon_person_pill24_regular = NotStr(''' + +''') +icon_people_settings28_filled = NotStr(''' + +''') +icon_xray20_regular = NotStr(''' + +''') +icon_arrow_circle_up_left24_filled = NotStr(''' + +''') +icon_select_object_skew20_filled = NotStr(''' + +''') +icon_book_open_microphone48_filled = NotStr(''' + +''') +icon_video_add20_filled = NotStr(''' + +''') +icon_shopping_bag_play24_regular = NotStr(''' + +''') +icon_people_audience20_regular = NotStr(''' + +''') +icon_crop_interim_off24_regular = NotStr(''' + +''') +icon_folder_person20_filled = NotStr(''' + +''') +icon_emoji16_regular = NotStr(''' + +''') +icon_note_add20_filled = NotStr(''' + +''') +icon_database_search24_regular = NotStr(''' + +''') +icon_tag_question_mark32_regular = NotStr(''' + +''') +icon_text_font24_regular = NotStr(''' + +''') +icon_document_text_toolbox20_filled = NotStr(''' + +''') +icon_chart_person48_regular = NotStr(''' + +''') +icon_text_position_through20_regular = NotStr(''' + +''') +icon_translate20_filled = NotStr(''' + +''') +icon_center_vertical24_filled = NotStr(''' + +''') +icon_comment_off20_filled = NotStr(''' + +''') +icon_filter_dismiss24_filled = NotStr(''' + + + + + + +''') +icon_guardian24_filled = NotStr(''' + +''') +icon_note_add24_regular = NotStr(''' + +''') +icon_video32_regular = NotStr(''' + +''') +icon_call_forward24_regular = NotStr(''' + +''') +icon_payment28_filled = NotStr(''' + +''') +icon_preview_link16_filled = NotStr(''' + +''') +icon_window_shield16_filled = NotStr(''' + +''') +icon_tag_search24_filled = NotStr(''' + +''') +icon_food_apple24_regular = NotStr(''' + +''') +icon_video_person_off24_filled = NotStr(''' + +''') +icon_cloud_arrow_down16_regular = NotStr(''' + +''') +icon_caret_up12_regular = NotStr(''' + +''') +icon_clipboard_text_rtl24_filled = NotStr(''' + +''') +icon_star_edit24_regular = NotStr(''' + +''') +icon_text_column_one_narrow24_filled = NotStr(''' + +''') +icon_cast24_filled = NotStr(''' + +''') +icon_arrow_clockwise12_filled = NotStr(''' + +''') +icon_target_arrow20_regular = NotStr(''' + +''') +icon_diversity20_filled = NotStr(''' + +''') +icon_vehicle_car_collision20_filled = NotStr(''' + +''') +icon_arrow_circle_up32_regular = NotStr(''' + +''') +icon_sport_hockey24_regular = NotStr(''' + +''') +icon_shifts30_minutes24_regular = NotStr(''' + +''') +icon_people_prohibited16_regular = NotStr(''' + +''') +icon_share_screen_person_overlay_inside24_regular = NotStr(''' + +''') +icon_rectangle_landscape28_regular = NotStr(''' + +''') +icon_shape_subtract16_regular = NotStr(''' + +''') +icon_chat_dismiss24_regular = NotStr(''' + +''') +icon_headset_add20_filled = NotStr(''' + +''') +icon_quiz_new24_regular = NotStr(''' + +''') +icon_thumb_like16_filled = NotStr(''' + +''') +icon_target16_regular = NotStr(''' + +''') +icon_flashlight16_filled = NotStr(''' + +''') +icon_chevron_down16_regular = NotStr(''' + +''') +icon_lock_open28_regular = NotStr(''' + +''') +icon_text_footnote20_regular = NotStr(''' + +''') +icon_rectangle_landscape24_filled = NotStr(''' + +''') +icon_form_new28_filled = NotStr(''' + +''') +icon_data_histogram24_regular = NotStr(''' + +''') +icon_clock_alarm32_filled = NotStr(''' + +''') +icon_multiplier5_x24_filled = NotStr(''' + +''') +icon_chevron_circle_up24_filled = NotStr(''' + +''') +icon_cloud28_regular = NotStr(''' + +''') +icon_arrow_hook_up_left28_regular = NotStr(''' + +''') +icon_info16_regular = NotStr(''' + +''') +icon_text_continuous20_filled = NotStr(''' + +''') +icon_keyboard12324_regular = NotStr(''' + +''') +icon_location_live24_regular = NotStr(''' + +''') +icon_table_freeze_column24_regular = NotStr(''' + +''') +icon_resize20_regular = NotStr(''' + +''') +icon_people_swap24_filled = NotStr(''' + +''') +icon_accessibility20_filled = NotStr(''' + +''') +icon_split_vertical28_regular = NotStr(''' + +''') +icon_text_direction_rotate90_left20_regular = NotStr(''' + +''') +icon_movies_and_tv20_regular = NotStr(''' + +''') +icon_tasks_app24_filled = NotStr(''' + +''') +icon_color16_regular = NotStr(''' + +''') +icon_arrow_sync_dismiss24_filled = NotStr(''' + +''') +icon_shifts_checkmark20_regular = NotStr(''' + +''') +icon_table_link28_regular = NotStr(''' + +''') +icon_collections20_regular = NotStr(''' + +''') +icon_weather_cloudy24_regular = NotStr(''' + +''') +icon_arrow_download48_filled = NotStr(''' + +''') +icon_orientation20_filled = NotStr(''' + + + + + + + + +''') +icon_app_title20_regular = NotStr(''' + +''') +icon_slide_add24_regular = NotStr(''' + +''') +icon_text_align_left24_regular = NotStr(''' + +''') +icon_camera_dome24_filled = NotStr(''' + +''') +icon_comment_multiple28_filled = NotStr(''' + +''') +icon_book_globe20_filled = NotStr(''' + +''') +icon_flash20_regular = NotStr(''' + +''') +icon_closed_caption_off28_filled = NotStr(''' + +''') +icon_library24_regular = NotStr(''' + +''') +icon_record12_regular = NotStr(''' + +''') +icon_mail_alert28_regular = NotStr(''' + +''') +icon_headset28_regular = NotStr(''' + +''') +icon_bookmark_multiple28_regular = NotStr(''' + +''') +icon_table32_regular = NotStr(''' + +''') +icon_smartwatch_dot20_regular = NotStr(''' + +''') +icon_collections_add20_regular = NotStr(''' + +''') +icon_decimal_arrow_right24_regular = NotStr(''' + +''') +icon_caret_right16_regular = NotStr(''' + +''') +icon_doctor24_regular = NotStr(''' + +''') +icon_split_horizontal20_filled = NotStr(''' + +''') +icon_document24_regular = NotStr(''' + +''') +icon_panel_right16_filled = NotStr(''' + +''') +icon_people_prohibited20_filled = NotStr(''' + +''') +icon_document_bullet_list20_filled = NotStr(''' + +''') +icon_leaf_three16_filled = NotStr(''' + +''') +icon_laptop16_regular = NotStr(''' + +''') +icon_form_new48_filled = NotStr(''' + +''') +icon_access_time24_regular = NotStr(''' + +''') +icon_comment_off28_regular = NotStr(''' + +''') +icon_brightness_low16_regular = NotStr(''' + +''') +icon_document_lock24_filled = NotStr(''' + +''') +icon_calendar_question_mark24_regular = NotStr(''' + +''') +icon_weather_sunny_high24_filled = NotStr(''' + +''') +icon_highlight24_filled = NotStr(''' + +''') +icon_keyboard12324_filled = NotStr(''' + +''') +icon_person_call24_regular = NotStr(''' + +''') +icon_arrow_up48_filled = NotStr(''' + +''') +icon_arrow_import20_filled = NotStr(''' + +''') +icon_gesture24_filled = NotStr(''' + +''') +icon_tap_single24_filled = NotStr(''' + +''') +icon_clipboard_letter24_filled = NotStr(''' + +''') +icon_skip_forward3048_filled = NotStr(''' + +''') +icon_cloud_sync32_regular = NotStr(''' + +''') +icon_call_checkmark24_filled = NotStr(''' + +''') +icon_text_number_list_rtl16_regular = NotStr(''' + +''') +icon_mail_inbox_checkmark24_regular = NotStr(''' + +''') +icon_weather_drizzle48_regular = NotStr(''' + +''') +icon_panel_right24_regular = NotStr(''' + +''') +icon_stream20_regular = NotStr(''' + +''') +icon_people_community_add20_filled = NotStr(''' + +''') +icon_flip_vertical28_regular = NotStr(''' + +''') +icon_border_left24_regular = NotStr(''' + +''') +icon_dialpad24_filled = NotStr(''' + +''') +icon_cloud_dismiss24_filled = NotStr(''' + +''') +icon_text_box_settings24_regular = NotStr(''' + +''') +icon_drink_wine24_regular = NotStr(''' + +''') +icon_slide_add32_regular = NotStr(''' + +''') +icon_image48_filled = NotStr(''' + +''') +icon_ribbon32_regular = NotStr(''' + +''') +icon_fluent48_filled = NotStr(''' + +''') +icon_add_subtract_circle48_regular = NotStr(''' + +''') +icon_color_line24_regular = NotStr(''' + +''') +icon_meet_now24_filled = NotStr(''' + +''') +icon_text_bullet_list_ltr16_regular = NotStr(''' + +''') +icon_folder_arrow_right48_regular = NotStr(''' + +''') +icon_divider_tall16_filled = NotStr(''' + +''') +icon_weather_sunny48_filled = NotStr(''' + +''') +icon_phone_dismiss24_filled = NotStr(''' + +''') +icon_next16_filled = NotStr(''' + +''') +icon_panel_right24_filled = NotStr(''' + +''') +icon_arrow_circle_down_right16_regular = NotStr(''' + +''') +icon_notebook_lightning24_regular = NotStr(''' + +''') +icon_attach16_filled = NotStr(''' + +''') +icon_more_horizontal32_regular = NotStr(''' + +''') +icon_ribbon_add20_regular = NotStr(''' + +''') +icon_video_switch20_filled = NotStr(''' + +''') +icon_puzzle_cube48_filled = NotStr(''' + +''') +icon_poll20_filled = NotStr(''' + +''') +icon_chevron_left28_filled = NotStr(''' + +''') +icon_document_endnote24_regular = NotStr(''' + +''') +icon_table_lightning20_filled = NotStr(''' + +''') +icon_clipboard_task_list_ltr20_filled = NotStr(''' + +''') +icon_highlight16_filled = NotStr(''' + +''') +icon_text_indent_increase_rtl16_regular = NotStr(''' + +''') +icon_shopping_bag_percent24_regular = NotStr(''' + +''') +icon_more_vertical48_regular = NotStr(''' + +''') +icon_weather_snow_shower_day48_regular = NotStr(''' + +''') +icon_ribbon_add24_regular = NotStr(''' + +''') +icon_expand_up_right24_regular = NotStr(''' + +''') +icon_desktop_speaker_off24_regular = NotStr(''' + +''') +icon_book_number16_filled = NotStr(''' + +''') +icon_text_font24_filled = NotStr(''' + +''') +icon_phone_link_setup24_filled = NotStr(''' + +''') +icon_eye12_regular = NotStr(''' + +''') +icon_gauge20_filled = NotStr(''' + +''') +icon_share_android20_regular = NotStr(''' + +''') +icon_cloud_words28_filled = NotStr(''' + +''') +icon_star_emphasis20_filled = NotStr(''' + +''') +icon_snooze24_filled = NotStr(''' + +''') +icon_handshake20_filled = NotStr(''' + +''') +icon_arrow_down_left24_filled = NotStr(''' + +''') +icon_table_stack_above16_filled = NotStr(''' + +''') +icon_border_all16_regular = NotStr(''' + +''') +icon_star_add28_regular = NotStr(''' + +''') +icon_document_page_top_center20_regular = NotStr(''' + +''') +icon_live_off24_regular = NotStr(''' + +''') +icon_preview_link16_regular = NotStr(''' + +''') +icon_text_color16_regular = NotStr(''' + +''') +icon_pin12_filled = NotStr(''' + +''') +icon_notepad28_filled = NotStr(''' + +''') +icon_emoji16_filled = NotStr(''' + +''') +icon_skip_forward3032_regular = NotStr(''' + +''') +icon_cellular_data124_filled = NotStr(''' + +''') +icon_checkbox124_filled = NotStr(''' + + + + +''') +icon_arrow_routing20_filled = NotStr(''' + +''') +icon_cloud_archive48_filled = NotStr(''' + +''') +icon_calendar_week_numbers20_filled = NotStr(''' + +''') +icon_megaphone20_filled = NotStr(''' + +''') +icon_keyboard_layout_one_handed_left24_filled = NotStr(''' + +''') +icon_table_switch20_regular = NotStr(''' + +''') +icon_slide_add16_filled = NotStr(''' + +''') +icon_text_superscript24_filled = NotStr(''' + +''') +icon_tv28_regular = NotStr(''' + +''') +icon_target_edit24_filled = NotStr(''' + +''') +icon_slide_add48_filled = NotStr(''' + +''') +icon_temperature20_regular = NotStr(''' + +''') +icon_games32_regular = NotStr(''' + +''') +icon_mail_alert16_regular = NotStr(''' + +''') +icon_battery524_regular = NotStr(''' + +''') +icon_document_footer16_regular = NotStr(''' + +''') +icon_calendar_info20_filled = NotStr(''' + +''') +icon_calendar_today24_filled = NotStr(''' + +''') +icon_scan_type20_regular = NotStr(''' + +''') +icon_color20_filled = NotStr(''' + +''') +icon_arrow_turn_bidirectional_down_right24_regular = NotStr(''' + +''') +icon_clipboard_letter16_regular = NotStr(''' + +''') +icon_arrow_previous24_regular = NotStr(''' + +''') +icon_book_globe24_filled = NotStr(''' + +''') +icon_question_circle28_filled = NotStr(''' + +''') +icon_cube20_regular = NotStr(''' + +''') +icon_document_multiple_percent20_regular = NotStr(''' + +''') +icon_text_case_uppercase20_filled = NotStr(''' + +''') +icon_speaker_off48_regular = NotStr(''' + +''') +icon_couch24_regular = NotStr(''' + +''') +icon_brightness_low48_filled = NotStr(''' + +''') +icon_approvals_app16_filled = NotStr(''' + +''') +icon_window_dev_tools16_filled = NotStr(''' + +''') +icon_battery724_filled = NotStr(''' + +''') +icon_weather_hail_day20_regular = NotStr(''' + +''') +icon_key_multiple20_regular = NotStr(''' + +''') +icon_share20_regular = NotStr(''' + +''') +icon_orientation24_regular = NotStr(''' + +''') +icon_lightbulb24_regular = NotStr(''' + +''') +icon_auto_fit_height24_regular = NotStr(''' + +''') +icon_calendar_checkmark20_regular = NotStr(''' + +''') +icon_emoji24_filled = NotStr(''' + +''') +icon_flip_horizontal16_regular = NotStr(''' + +''') +icon_bezier_curve_square12_filled = NotStr(''' + +''') +icon_dismiss48_regular = NotStr(''' + +''') +icon_scan_type24_regular = NotStr(''' + +''') +icon_person24_filled = NotStr(''' + +''') +icon_cloud_add16_filled = NotStr(''' + +''') +icon_document_header_dismiss20_regular = NotStr(''' + +''') +icon_text_proofing_tools20_filled = NotStr(''' + + + + + + +''') +icon_checkbox_arrow_right24_regular = NotStr(''' + + + + + +''') +icon_arrow_counterclockwise24_regular = NotStr(''' + +''') +icon_circle_off20_regular = NotStr(''' + +''') +icon_mic_off28_regular = NotStr(''' + +''') +icon_arrow_move24_regular = NotStr(''' + +''') +icon_desktop_mac16_regular = NotStr(''' + +''') +icon_call24_regular = NotStr(''' + +''') +icon_gift_card_arrow_right24_regular = NotStr(''' + +''') +icon_text_position_tight20_regular = NotStr(''' + +''') +icon_building_bank_link24_regular = NotStr(''' + +''') +icon_line_dashes48_regular = NotStr(''' + +''') +icon_f_stop24_filled = NotStr(''' + +''') +icon_chevron_double_down16_filled = NotStr(''' + +''') +icon_cursor_hover_off48_regular = NotStr(''' + +''') +icon_calligraphy_pen_error20_regular = NotStr(''' + +''') +icon_beaker16_regular = NotStr(''' + +''') +icon_select_object20_regular = NotStr(''' + +''') +icon_folder_arrow_right20_filled = NotStr(''' + +''') +icon_stack_star20_regular = NotStr(''' + +''') +icon_folder32_filled = NotStr(''' + + + + +''') +icon_color_background20_regular = NotStr(''' + +''') +icon_battery520_regular = NotStr(''' + +''') +icon_calendar_agenda20_filled = NotStr(''' + +''') +icon_copy_add20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left16_regular = NotStr(''' + +''') +icon_arrow_sort16_regular = NotStr(''' + +''') +icon_re_order24_filled = NotStr(''' + +''') +icon_document28_regular = NotStr(''' + +''') +icon_copy16_filled = NotStr(''' + +''') +icon_collections_add24_filled = NotStr(''' + +''') +icon_text_align_distributed_evenly24_filled = NotStr(''' + +''') +icon_arrow_hook_up_left16_regular = NotStr(''' + +''') +icon_building_factory48_regular = NotStr(''' + +''') +icon_door_arrow_left16_filled = NotStr(''' + +''') +icon_text_indent_increase_rtl24_regular = NotStr(''' + +''') +icon_sport24_regular = NotStr(''' + +''') +icon_calendar_arrow_down20_regular = NotStr(''' + +''') +icon_building_factory32_regular = NotStr(''' + +''') +icon_group24_filled = NotStr(''' + +''') +icon_comment_multiple28_regular = NotStr(''' + +''') +icon_weather_rain24_regular = NotStr(''' + +''') +icon_app_recent20_filled = NotStr(''' + +''') +icon_video_person12_filled = NotStr(''' + +''') +icon_wifi324_regular = NotStr(''' + +''') +icon_megaphone24_regular = NotStr(''' + +''') +icon_bed16_filled = NotStr(''' + +''') +icon_table_insert_row24_filled = NotStr(''' + +''') +icon_resize_small20_filled = NotStr(''' + +''') +icon_shopping_bag24_filled = NotStr(''' + +''') +icon_arrow_repeat_all24_filled = NotStr(''' + +''') +icon_oval24_regular = NotStr(''' + +''') +icon_square_hint32_filled = NotStr(''' + +''') +icon_arrow_rotate_clockwise24_filled = NotStr(''' + +''') +icon_weather_rain_showers_night48_filled = NotStr(''' + +''') +icon_chevron_up_down16_regular = NotStr(''' + +''') +icon_star_emphasis32_filled = NotStr(''' + + + + + + + +''') +icon_copy_arrow_right20_filled = NotStr(''' + +''') +icon_table20_regular = NotStr(''' + +''') +icon_key_multiple20_filled = NotStr(''' + +''') +icon_text_bullet_list_square_edit20_filled = NotStr(''' + +''') +icon_star16_regular = NotStr(''' + +''') +icon_folder_arrow_right48_filled = NotStr(''' + +''') +icon_arrow_outline_up_right32_regular = NotStr(''' + +''') +icon_mail_multiple16_regular = NotStr(''' + +''') +icon_projection_screen28_filled = NotStr(''' + +''') +icon_phone16_filled = NotStr(''' + +''') +icon_savings20_regular = NotStr(''' + +''') +icon_group20_regular = NotStr(''' + +''') +icon_comment_arrow_left48_regular = NotStr(''' + +''') +icon_lock_shield48_regular = NotStr(''' + +''') +icon_brightness_low24_filled = NotStr(''' + +''') +icon_battery1020_filled = NotStr(''' + +''') +icon_location28_regular = NotStr(''' + +''') +icon_arrow_circle_up24_filled = NotStr(''' + +''') +icon_desktop_sync20_regular = NotStr(''' + +''') +icon_phone_lock24_regular = NotStr(''' + +''') +icon_weather_sunny28_regular = NotStr(''' + +''') +icon_road_cone48_regular = NotStr(''' + +''') +icon_fps3048_regular = NotStr(''' + +''') +icon_weather_hail_night20_filled = NotStr(''' + +''') +icon_people_team20_regular = NotStr(''' + +''') +icon_money_off24_regular = NotStr(''' + +''') +icon_desktop_pulse20_regular = NotStr(''' + +''') +icon_port_usb_c24_regular = NotStr(''' + +''') +icon_flash_checkmark16_filled = NotStr(''' + +''') +icon_classification24_regular = NotStr(''' + +''') +icon_resize_video24_filled = NotStr(''' + +''') +icon_video28_filled = NotStr(''' + +''') +icon_animal_turtle20_filled = NotStr(''' + +''') +icon_multiselect_rtl20_filled = NotStr(''' + +''') +icon_tooltip_quote24_filled = NotStr(''' + +''') +icon_battery920_regular = NotStr(''' + +''') +icon_channel_subtract48_filled = NotStr(''' + +''') +icon_guitar28_regular = NotStr(''' + +''') +icon_person_add24_filled = NotStr(''' + +''') +icon_dock20_filled = NotStr(''' + +''') +icon_layer24_regular = NotStr(''' + +''') +icon_square_hint_sparkles16_regular = NotStr(''' + +''') +icon_beach16_filled = NotStr(''' + +''') +icon_pause_settings20_regular = NotStr(''' + +''') +icon_box_arrow_left20_regular = NotStr(''' + +''') +icon_channel_share24_regular = NotStr(''' + +''') +icon_document_add16_filled = NotStr(''' + +''') +icon_alert_urgent16_regular = NotStr(''' + +''') +icon_list16_regular = NotStr(''' + +''') +icon_wifi420_regular = NotStr(''' + +''') +icon_arrow_upload24_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_left20_regular = NotStr(''' + +''') +icon_weather_rain_snow48_filled = NotStr(''' + +''') +icon_shifts32_regular = NotStr(''' + +''') +icon_rhombus20_filled = NotStr(''' + +''') +icon_link_dismiss20_regular = NotStr(''' + +''') +icon_tag_question_mark16_filled = NotStr(''' + +''') +icon_battery420_regular = NotStr(''' + +''') +icon_caret_right20_regular = NotStr(''' + +''') +icon_chevron_circle_up12_filled = NotStr(''' + +''') +icon_weather_snow_shower_day24_regular = NotStr(''' + +''') +icon_copy_arrow_right20_regular = NotStr(''' + +''') +icon_scales24_regular = NotStr(''' + +''') +icon_teddy24_filled = NotStr(''' + +''') +icon_line_horizontal5_error20_filled = NotStr(''' + +''') +icon_cookies24_regular = NotStr(''' + +''') +icon_caret_down12_regular = NotStr(''' + +''') +icon_keyboard_shift_uppercase24_filled = NotStr(''' + +''') +icon_heart16_filled = NotStr(''' + +''') +icon_door_arrow_right28_filled = NotStr(''' + +''') +icon_search24_filled = NotStr(''' + +''') +icon_cloud_dismiss48_regular = NotStr(''' + +''') +icon_person_voice24_filled = NotStr(''' + +''') +icon_food_pizza24_filled = NotStr(''' + +''') +icon_document_queue24_regular = NotStr(''' + +''') +icon_star_prohibited16_regular = NotStr(''' + +''') +icon_alert_on20_filled = NotStr(''' + +''') +icon_arrow_step_out20_regular = NotStr(''' + +''') +icon_arrow_counterclockwise24_filled = NotStr(''' + +''') +icon_reading_list16_regular = NotStr(''' + +''') +icon_mic28_filled = NotStr(''' + +''') +icon_document_header_dismiss24_filled = NotStr(''' + +''') +icon_people_sync16_regular = NotStr(''' + +''') +icon_arrow_circle_down_right20_regular = NotStr(''' + +''') +icon_image28_regular = NotStr(''' + +''') +icon_building_factory16_filled = NotStr(''' + +''') +icon_arrow_down_left32_regular = NotStr(''' + +''') +icon_shifts_day24_filled = NotStr(''' + +''') +icon_briefcase_medical32_filled = NotStr(''' + +''') +icon_share48_regular = NotStr(''' + +''') +icon_battery_checkmark24_filled = NotStr(''' + +''') +icon_group24_regular = NotStr(''' + +''') +icon_panel_left_expand20_filled = NotStr(''' + +''') +icon_comment_arrow_left16_filled = NotStr(''' + +''') +icon_people_checkmark24_regular = NotStr(''' + +''') +icon_text_strikethrough20_regular = NotStr(''' + +''') +icon_arrow_trending_checkmark20_filled = NotStr(''' + +''') +icon_text_clear_formatting16_regular = NotStr(''' + +''') +icon_text_change_case20_filled = NotStr(''' + +''') +icon_person_add20_regular = NotStr(''' + +''') +icon_comment_multiple_checkmark20_regular = NotStr(''' + +''') +icon_sport_soccer20_regular = NotStr(''' + +''') +icon_cube24_regular = NotStr(''' + +''') +icon_clipboard_image20_filled = NotStr(''' + +''') +icon_video_off24_regular = NotStr(''' + +''') +icon_stop16_regular = NotStr(''' + +''') +icon_caret_right20_filled = NotStr(''' + +''') +icon_arrow_reply_down16_filled = NotStr(''' + +''') +icon_walkie_talkie28_filled = NotStr(''' + +''') +icon_immersive_reader20_regular = NotStr(''' + +''') +icon_document_bullet_list_clock20_regular = NotStr(''' + +''') +icon_cloud_swap24_regular = NotStr(''' + +''') +icon_channel16_filled = NotStr(''' + +''') +icon_clipboard_clock20_regular = NotStr(''' + +''') +icon_auto_fit_width20_regular = NotStr(''' + +''') +icon_arrow_between_down24_filled = NotStr(''' + +''') +icon_molecule32_filled = NotStr(''' + +''') +icon_save_multiple20_filled = NotStr(''' + +''') +icon_shifts24_filled = NotStr(''' + +''') +icon_person_pill20_regular = NotStr(''' + +''') +icon_call_inbound20_filled = NotStr(''' + +''') +icon_document_copy48_filled = NotStr(''' + +''') +icon_multiselect_rtl20_regular = NotStr(''' + +''') +icon_food_egg24_filled = NotStr(''' + +''') +icon_phone_status_bar24_filled = NotStr(''' + +''') +icon_document_ribbon24_filled = NotStr(''' + +''') +icon_dual_screen_pagination24_filled = NotStr(''' + +''') +icon_mail_multiple24_regular = NotStr(''' + +''') +icon_ribbon16_regular = NotStr(''' + +''') +icon_checkmark_lock20_regular = NotStr(''' + +''') +icon_cart20_regular = NotStr(''' + +''') +icon_video_clip24_filled = NotStr(''' + +''') +icon_cloud_sync20_regular = NotStr(''' + +''') +icon_flash_checkmark24_regular = NotStr(''' + +''') +icon_text_add_space_after24_regular = NotStr(''' + +''') +icon_trophy20_regular = NotStr(''' + +''') +icon_flag28_regular = NotStr(''' + +''') +icon_eyedropper_off24_regular = NotStr(''' + +''') +icon_cellular4_g24_regular = NotStr(''' + + + + + + + + + +''') +icon_scan_thumb_up48_regular = NotStr(''' + +''') +icon_calendar_day16_regular = NotStr(''' + +''') +icon_status20_filled = NotStr(''' + +''') +icon_diagram24_regular = NotStr(''' + +''') +icon_device_meeting_room_remote16_filled = NotStr(''' + +''') +icon_search_info24_regular = NotStr(''' + +''') +icon_cellular5_g24_regular = NotStr(''' + + + + + + + + + +''') +icon_arrow_maximize24_regular = NotStr(''' + +''') +icon_eraser_small24_filled = NotStr(''' + +''') +icon_arrow_step_out24_regular = NotStr(''' + +''') +icon_document_flowchart20_regular = NotStr(''' + +''') +icon_person_question_mark24_regular = NotStr(''' + +''') +icon_table_delete_row28_filled = NotStr(''' + +''') +icon_multiselect_rtl16_filled = NotStr(''' + +''') +icon_task_list_square_rtl20_filled = NotStr(''' + +''') +icon_book_open_microphone48_regular = NotStr(''' + +''') +icon_align_center_vertical20_filled = NotStr(''' + +''') +icon_lasso20_filled = NotStr(''' + +''') +icon_shifts_open24_regular = NotStr(''' + +''') +icon_options24_filled = NotStr(''' + +''') +icon_video_prohibited24_filled = NotStr(''' + +''') +icon_person_tag32_filled = NotStr(''' + +''') +icon_flag24_filled = NotStr(''' + +''') +icon_group_list24_filled = NotStr(''' + +''') +icon_record_stop48_regular = NotStr(''' + +''') +icon_share_screen_stop28_filled = NotStr(''' + +''') +icon_pill20_filled = NotStr(''' + +''') +icon_chat_arrow_back20_regular = NotStr(''' + +''') +icon_calendar_sync24_filled = NotStr(''' + +''') +icon_layer20_regular = NotStr(''' + +''') +icon_document_briefcase24_filled = NotStr(''' + +''') +icon_tag_dismiss24_regular = NotStr(''' + +''') +icon_table_lightning16_filled = NotStr(''' + +''') +icon_zoom_out16_regular = NotStr(''' + +''') +icon_shifts_day20_regular = NotStr(''' + +''') +icon_leaf_three20_regular = NotStr(''' + +''') +icon_document_arrow_up16_filled = NotStr(''' + +''') +icon_folder32_regular = NotStr(''' + +''') +icon_video_person_star_off24_filled = NotStr(''' + +''') +icon_table_move_above16_regular = NotStr(''' + +''') +icon_tag_error20_filled = NotStr(''' + +''') +icon_phone12_filled = NotStr(''' + +''') +icon_person_note24_filled = NotStr(''' + +''') +icon_checkmark20_filled = NotStr(''' + +''') +icon_people_team28_regular = NotStr(''' + +''') +icon_window_new16_filled = NotStr(''' + +''') +icon_box_search20_filled = NotStr(''' + +''') +icon_column_triple_edit24_regular = NotStr(''' + +''') +icon_box_dismiss20_filled = NotStr(''' + +''') +icon_mail_read20_filled = NotStr(''' + +''') +icon_document_table_cube24_filled = NotStr(''' + +''') +icon_breakout_room24_regular = NotStr(''' + +''') +icon_double_tap_swipe_down20_regular = NotStr(''' + +''') +icon_cloud_arrow_down32_regular = NotStr(''' + +''') +icon_call_inbound24_regular = NotStr(''' + +''') +icon_calendar_search20_regular = NotStr(''' + +''') +icon_orientation20_regular = NotStr(''' + + + + + + + + + +''') +icon_timer48_filled = NotStr(''' + +''') +icon_question16_regular = NotStr(''' + +''') +icon_shifts_checkmark20_filled = NotStr(''' + +''') +icon_arrow_trending_text24_filled = NotStr(''' + +''') +icon_ruler24_filled = NotStr(''' + +''') +icon_channel48_filled = NotStr(''' + +''') +icon_checkmark_starburst24_regular = NotStr(''' + +''') +icon_play32_filled = NotStr(''' + +''') +icon_globe_location24_filled = NotStr(''' + +''') +icon_projection_screen20_regular = NotStr(''' + +''') +icon_wallet32_regular = NotStr(''' + +''') +icon_text_bullet_list_rtl16_filled = NotStr(''' + +''') +icon_animal_dog16_filled = NotStr(''' + +''') +icon_text_direction_horizontal_right20_filled = NotStr(''' + +''') +icon_arrow_hook_down_right24_regular = NotStr(''' + +''') +icon_dual_screen24_filled = NotStr(''' + +''') +icon_port_usb_c24_filled = NotStr(''' + +''') +icon_circle_edit24_regular = NotStr(''' + + + + +''') +icon_align_top20_filled = NotStr(''' + +''') +icon_data_bar_horizontal20_filled = NotStr(''' + +''') +icon_trophy_off16_filled = NotStr(''' + +''') +icon_building_multiple24_regular = NotStr(''' + +''') +icon_conference_room24_filled = NotStr(''' + +''') +icon_arrow_reset48_regular = NotStr(''' + +''') +icon_phone_tablet24_filled = NotStr(''' + +''') +icon_checkmark_circle48_filled = NotStr(''' + +''') +icon_channel24_filled = NotStr(''' + +''') +icon_edit_arrow_back20_regular = NotStr(''' + +''') +icon_align_center_vertical24_regular = NotStr(''' + +''') +icon_text_bold24_regular = NotStr(''' + +''') +icon_document_footer_dismiss20_regular = NotStr(''' + +''') +icon_save_sync20_filled = NotStr(''' + +''') +icon_cloud32_filled = NotStr(''' + +''') +icon_book_question_mark_rtl24_regular = NotStr(''' + +''') +icon_calendar_today16_regular = NotStr(''' + +''') +icon_battery820_filled = NotStr(''' + +''') +icon_record24_regular = NotStr(''' + +''') +icon_location_arrow_right48_filled = NotStr(''' + +''') +icon_search12_filled = NotStr(''' + +''') +icon_scan_object24_regular = NotStr(''' + +''') +icon_align_right20_regular = NotStr(''' + +''') +icon_text_add_space_before24_regular = NotStr(''' + +''') +icon_arrow_counterclockwise28_regular = NotStr(''' + +''') +icon_panel_right20_filled = NotStr(''' + +''') +icon_mail_unread16_filled = NotStr(''' + +''') +icon_comment_arrow_right16_filled = NotStr(''' + +''') +icon_shield_task28_filled = NotStr(''' + +''') +icon_cursor_hover_off28_filled = NotStr(''' + +''') +icon_call_missed24_regular = NotStr(''' + +''') +icon_wand24_regular = NotStr(''' + +''') +icon_desktop16_regular = NotStr(''' + +''') +icon_checkmark_starburst16_filled = NotStr(''' + +''') +icon_cloud32_regular = NotStr(''' + +''') +icon_people_prohibited16_filled = NotStr(''' + +''') +icon_alert20_regular = NotStr(''' + +''') +icon_ribbon20_regular = NotStr(''' + +''') +icon_screenshot24_filled = NotStr(''' + +''') +icon_send_clock20_filled = NotStr(''' + +''') +icon_emoji_add20_filled = NotStr(''' + +''') +icon_slide_text28_filled = NotStr(''' + +''') +icon_send_copy24_regular = NotStr(''' + +''') +icon_bluetooth20_regular = NotStr(''' + +''') +icon_tag_multiple20_filled = NotStr(''' + +''') +icon_emoji_sparkle20_regular = NotStr(''' + +''') +icon_new16_regular = NotStr(''' + +''') +icon_data_treemap20_regular = NotStr(''' + +''') +icon_arrow_rotate_clockwise16_filled = NotStr(''' + +''') +icon_cloud_checkmark32_filled = NotStr(''' + +''') +icon_document_dismiss16_filled = NotStr(''' + +''') +icon_rhombus28_regular = NotStr(''' + +''') +icon_dialpad_off24_filled = NotStr(''' + +''') +icon_slide_text24_filled = NotStr(''' + +''') +icon_home_person24_regular = NotStr(''' + +''') +icon_lock_shield20_regular = NotStr(''' + +''') +icon_star_one_quarter16_filled = NotStr(''' + +''') +icon_cut20_filled = NotStr(''' + +''') +icon_device_meeting_room_remote20_regular = NotStr(''' + +''') +icon_comment_add48_regular = NotStr(''' + +''') +icon_window_ad_off20_filled = NotStr(''' + +''') +icon_align_space_between_horizontal20_regular = NotStr(''' + + + + +''') +icon_briefcase_medical24_filled = NotStr(''' + +''') +icon_person_available20_filled = NotStr(''' + +''') +icon_conference_room24_regular = NotStr(''' + +''') +icon_document_arrow_left24_filled = NotStr(''' + +''') +icon_people_add28_regular = NotStr(''' + +''') +icon_notepad20_filled = NotStr(''' + +''') +icon_mail_dismiss16_regular = NotStr(''' + +''') +icon_calendar_ltr16_regular = NotStr(''' + +''') +icon_weather_haze48_regular = NotStr(''' + +''') +icon_table_stack_left20_regular = NotStr(''' + +''') +icon_balloon16_filled = NotStr(''' + +''') +icon_multiplier5_x20_regular = NotStr(''' + +''') +icon_search_visual24_regular = NotStr(''' + +''') +icon_arrow_sync24_filled = NotStr(''' + +''') +icon_cube12_filled = NotStr(''' + +''') +icon_document32_regular = NotStr(''' + +''') +icon_weather_rain_showers_day48_filled = NotStr(''' + +''') +icon_bluetooth_searching24_regular = NotStr(''' + +''') +icon_building_shop16_regular = NotStr(''' + +''') +icon_shape_exclude24_filled = NotStr(''' + +''') +icon_picture_in_picture_exit24_filled = NotStr(''' + +''') +icon_music_note224_filled = NotStr(''' + +''') +icon_puzzle_cube24_filled = NotStr(''' + +''') +icon_prohibited48_filled = NotStr(''' + +''') +icon_link_edit24_regular = NotStr(''' + +''') +icon_column_arrow_right20_regular = NotStr(''' + +''') +icon_comment_mention24_regular = NotStr(''' + +''') +icon_calendar_empty32_filled = NotStr(''' + +''') +icon_javascript16_regular = NotStr(''' + +''') +icon_currency_dollar_rupee24_regular = NotStr(''' + +''') +icon_crop_interim_off20_filled = NotStr(''' + +''') +icon_phone_span_in16_regular = NotStr(''' + +''') +icon_shifts_team24_filled = NotStr(''' + +''') +icon_speaker_bluetooth24_regular = NotStr(''' + +''') +icon_person_question_mark20_regular = NotStr(''' + +''') +icon_phone_span_in24_filled = NotStr(''' + +''') +icon_home_person20_regular = NotStr(''' + +''') +icon_expand_up_right48_regular = NotStr(''' + +''') +icon_phone_screen_time24_regular = NotStr(''' + +''') +icon_calendar3_day16_regular = NotStr(''' + +''') +icon_tag_question_mark20_filled = NotStr(''' + +''') +icon_building_retail_shield24_regular = NotStr(''' + +''') +icon_puzzle_piece_shield20_regular = NotStr(''' + +''') +icon_document_catch_up20_filled = NotStr(''' + +''') +icon_building_bank_link48_filled = NotStr(''' + +''') +icon_f_stop20_regular = NotStr(''' + +''') +icon_heart_circle24_filled = NotStr(''' + +''') +icon_tap_double32_filled = NotStr(''' + +''') +icon_line20_filled = NotStr(''' + +''') +icon_presenter20_regular = NotStr(''' + +''') +icon_animal_dog24_filled = NotStr(''' + +''') +icon_calendar_arrow_down24_filled = NotStr(''' + +''') +icon_arrow_export_rtl20_regular = NotStr(''' + +''') +icon_comment_multiple16_regular = NotStr(''' + +''') +icon_brightness_high16_regular = NotStr(''' + +''') +icon_highlight24_regular = NotStr(''' + +''') +icon_align_right48_filled = NotStr(''' + +''') +icon_book_compass20_filled = NotStr(''' + +''') +icon_tablet32_regular = NotStr(''' + +''') +icon_checkbox_unchecked16_filled = NotStr(''' + +''') +icon_location16_regular = NotStr(''' + +''') +icon_chat_bubbles_question24_regular = NotStr(''' + +''') +icon_align_end_horizontal20_regular = NotStr(''' + + + + +''') +icon_emoji_laugh20_regular = NotStr(''' + +''') +icon_phone_span_in28_regular = NotStr(''' + +''') +icon_call_missed20_regular = NotStr(''' + +''') +icon_speaker128_regular = NotStr(''' + +''') +icon_chevron_circle_right24_filled = NotStr(''' + +''') +icon_person_call20_regular = NotStr(''' + +''') +icon_channel_dismiss28_filled = NotStr(''' + +''') +icon_shield48_regular = NotStr(''' + +''') +icon_board20_regular = NotStr(''' + +''') +icon_notepad12_filled = NotStr(''' + +''') +icon_phone_eraser16_filled = NotStr(''' + +''') +icon_check20_filled = NotStr(''' + +''') +icon_previous48_regular = NotStr(''' + +''') +icon_calendar_multiple20_filled = NotStr(''' + +''') +icon_chat_video24_regular = NotStr(''' + +''') +icon_document_header_footer20_regular = NotStr(''' + +''') +icon_scan_dash24_regular = NotStr(''' + +''') +icon_tap_double20_filled = NotStr(''' + +''') +icon_document_landscape_split_hint20_regular = NotStr(''' + +''') +icon_options48_regular = NotStr(''' + +''') +icon_presence_blocked12_regular = NotStr(''' + +''') +icon_mail_copy24_filled = NotStr(''' + +''') +icon_system24_regular = NotStr(''' + +''') +icon_globe_star16_regular = NotStr(''' + +''') +icon_panel_left48_filled = NotStr(''' + +''') +icon_tab_inprivate_account24_regular = NotStr(''' + +''') +icon_chevron_circle_left20_regular = NotStr(''' + +''') +icon_eye_tracking20_regular = NotStr(''' + +''') +icon_task_list_rtl24_filled = NotStr(''' + +''') +icon_info24_filled = NotStr(''' + +''') +icon_slide_eraser24_regular = NotStr(''' + + + + + +''') +icon_question48_filled = NotStr(''' + +''') +icon_pulse24_regular = NotStr(''' + +''') +icon_person_settings16_filled = NotStr(''' + +''') +icon_box_multiple_search20_filled = NotStr(''' + +''') +icon_emoji_hand20_regular = NotStr(''' + +''') +icon_box24_regular = NotStr(''' + +''') +icon_code_circle20_regular = NotStr(''' + +''') +icon_sidebar_search_rtl20_regular = NotStr(''' + +''') +icon_battery_warning20_filled = NotStr(''' + +''') +icon_flip_vertical28_filled = NotStr(''' + +''') +icon_video_off48_regular = NotStr(''' + +''') +icon_mail_inbox_checkmark20_regular = NotStr(''' + +''') +icon_arrow_sync20_filled = NotStr(''' + +''') +icon_cloud_arrow_down48_regular = NotStr(''' + +''') +icon_document_table_search20_regular = NotStr(''' + +''') +icon_timer324_regular = NotStr(''' + + + + + + + +''') +icon_text_align_justify_low24_filled = NotStr(''' + +''') +icon_weather_fog20_regular = NotStr(''' + +''') +icon_arrow_circle_down48_filled = NotStr(''' + +''') +icon_border_outside20_regular = NotStr(''' + +''') +icon_rectangle_landscape20_filled = NotStr(''' + +''') +icon_square32_filled = NotStr(''' + +''') +icon_align_stretch_vertical20_filled = NotStr(''' + + + + + + +''') +icon_window_header_horizontal_off20_filled = NotStr(''' + +''') +icon_checkmark16_regular = NotStr(''' + +''') +icon_device_eq24_filled = NotStr(''' + +''') +icon_more_vertical28_filled = NotStr(''' + +''') +icon_hd16_filled = NotStr(''' + +''') +icon_save20_regular = NotStr(''' + +''') +icon_arrow_up24_filled = NotStr(''' + +''') +icon_server20_filled = NotStr(''' + +''') +icon_shield_task48_filled = NotStr(''' + +''') +icon_align_bottom16_regular = NotStr(''' + +''') +icon_wand24_filled = NotStr(''' + +''') +icon_mail_alert20_regular = NotStr(''' + +''') +icon_folder_prohibited16_regular = NotStr(''' + +''') +icon_scan_dash24_filled = NotStr(''' + +''') +icon_scan_thumb_up_off16_regular = NotStr(''' + +''') +icon_broom20_regular = NotStr(''' + +''') +icon_food_cake16_regular = NotStr(''' + +''') +icon_multiplier15_x32_regular = NotStr(''' + +''') +icon_serial_port24_filled = NotStr(''' + +''') +icon_call_transfer20_regular = NotStr(''' + +''') +icon_comment_arrow_right28_regular = NotStr(''' + +''') +icon_arrow_circle_right24_filled = NotStr(''' + +''') +icon_highlight_link20_regular = NotStr(''' + +''') +icon_flag_off24_regular = NotStr(''' + +''') +icon_arrow_step_out20_filled = NotStr(''' + +''') +icon_auto_fit_height20_filled = NotStr(''' + +''') +icon_arrow_circle_right16_regular = NotStr(''' + +''') +icon_mention16_regular = NotStr(''' + +''') +icon_chevron_circle_up32_regular = NotStr(''' + +''') +icon_globe_video48_regular = NotStr(''' + +''') +icon_building_government32_regular = NotStr(''' + +''') +icon_likert24_regular = NotStr(''' + +''') +icon_scan_camera48_regular = NotStr(''' + +''') +icon_star20_regular = NotStr(''' + +''') +icon_search_info20_regular = NotStr(''' + +''') +icon_comment_multiple32_filled = NotStr(''' + +''') +icon_tap_single20_regular = NotStr(''' + +''') +icon_cloud_flow20_filled = NotStr(''' + +''') +icon_trophy_off32_filled = NotStr(''' + +''') +icon_stethoscope20_filled = NotStr(''' + +''') +icon_square24_filled = NotStr(''' + +''') +icon_text_quote20_filled = NotStr(''' + +''') +icon_save_edit20_regular = NotStr(''' + +''') +icon_folder_prohibited48_filled = NotStr(''' + +''') +icon_table_stack_right28_filled = NotStr(''' + +''') +icon_rating_mature20_filled = NotStr(''' + +''') +icon_people_add20_filled = NotStr(''' + +''') +icon_chat_help24_regular = NotStr(''' + +''') +icon_person_info20_filled = NotStr(''' + +''') +icon_mail_error16_filled = NotStr(''' + +''') +icon_equal_off20_regular = NotStr(''' + +''') +icon_vehicle_ship16_regular = NotStr(''' + +''') +icon_caret_left12_regular = NotStr(''' + +''') +icon_building_retail24_regular = NotStr(''' + +''') +icon_cloud_checkmark16_regular = NotStr(''' + +''') +icon_fast_forward28_filled = NotStr(''' + +''') +icon_album20_filled = NotStr(''' + +''') +icon_reading_list_add24_regular = NotStr(''' + +''') +icon_reading_list_add16_filled = NotStr(''' + +''') +icon_highlight_accent20_filled = NotStr(''' + +''') +icon_more_horizontal28_filled = NotStr(''' + +''') +icon_calendar_add24_filled = NotStr(''' + +''') +icon_slide_size24_regular = NotStr(''' + +''') +icon_calendar_edit20_filled = NotStr(''' + +''') +icon_contract_down_left20_filled = NotStr(''' + +''') +icon_document_chevron_double24_filled = NotStr(''' + +''') +icon_arrow_left32_regular = NotStr(''' + +''') +icon_calendar_cancel20_regular = NotStr(''' + +''') +icon_re_order_dots_vertical24_filled = NotStr(''' + +''') +icon_games16_filled = NotStr(''' + +''') +icon_fixed_width24_regular = NotStr(''' + +''') +icon_add_square_multiple20_regular = NotStr(''' + +''') +icon_arrow_circle_left16_regular = NotStr(''' + +''') +icon_data_funnel24_regular = NotStr(''' + +''') +icon_data_area24_regular = NotStr(''' + +''') +icon_contract_down_left48_regular = NotStr(''' + +''') +icon_arrow_minimize28_filled = NotStr(''' + +''') +icon_multiplier1_x32_regular = NotStr(''' + +''') +icon_copy_arrow_right16_filled = NotStr(''' + +''') +icon_doctor16_regular = NotStr(''' + +''') +icon_textbox_more24_regular = NotStr(''' + +''') +icon_edit20_filled = NotStr(''' + +''') +icon_umbrella24_regular = NotStr(''' + +''') +icon_calendar_star20_filled = NotStr(''' + +''') +icon_chevron_left12_filled = NotStr(''' + +''') +icon_document_arrow_left28_filled = NotStr(''' + +''') +icon_weather_drizzle20_regular = NotStr(''' + +''') +icon_crop_interim_off20_regular = NotStr(''' + +''') +icon_text_superscript16_filled = NotStr(''' + +''') +icon_text_asterisk20_filled = NotStr(''' + +''') +icon_approvals_app24_regular = NotStr(''' + +''') +icon_tablet20_regular = NotStr(''' + +''') +icon_weather_snow20_filled = NotStr(''' + +''') +icon_cloud_sync24_regular = NotStr(''' + +''') +icon_fast_forward24_filled = NotStr(''' + +''') +icon_road_cone16_regular = NotStr(''' + +''') +icon_closed_caption24_regular = NotStr(''' + +''') +icon_cloud_add16_regular = NotStr(''' + +''') +icon_tooltip_quote20_regular = NotStr(''' + +''') +icon_arrow_reply24_filled = NotStr(''' + +''') +icon_tap_double20_regular = NotStr(''' + +''') +icon_arrow_autofit_up24_filled = NotStr(''' + +''') +icon_square_add20_filled = NotStr(''' + +''') +icon_text_align_justify_low24_regular = NotStr(''' + +''') +icon_decimal_arrow_left24_filled = NotStr(''' + +''') +icon_alert_urgent24_regular = NotStr(''' + +''') +icon_text_case_title24_regular = NotStr(''' + +''') +icon_calendar_week_start20_filled = NotStr(''' + +''') +icon_people16_regular = NotStr(''' + +''') +icon_document_dismiss24_regular = NotStr(''' + +''') +icon_lightbulb24_filled = NotStr(''' + +''') +icon_border_outside_thick20_filled = NotStr(''' + +''') +icon_dismiss12_regular = NotStr(''' + +''') +icon_cast28_regular = NotStr(''' + +''') +icon_edit16_regular = NotStr(''' + +''') +icon_sound_source24_regular = NotStr(''' + +''') +icon_keyboard_shift24_filled = NotStr(''' + +''') +icon_tab_desktop_image24_filled = NotStr(''' + +''') +icon_book_pulse20_regular = NotStr(''' + +''') +icon_dentist48_filled = NotStr(''' + +''') +icon_textbox24_filled = NotStr(''' + +''') +icon_compose16_filled = NotStr(''' + +''') +icon_comment20_filled = NotStr(''' + +''') +icon_stack24_filled = NotStr(''' + +''') +icon_fps96024_filled = NotStr(''' + +''') +icon_person_swap24_regular = NotStr(''' + +''') +icon_call_end24_regular = NotStr(''' + +''') +icon_connector16_filled = NotStr(''' + +''') +icon_panel_right16_regular = NotStr(''' + +''') +icon_pin_off16_regular = NotStr(''' + +''') +icon_accessibility32_filled = NotStr(''' + +''') +icon_flash_checkmark24_filled = NotStr(''' + +''') +icon_animal_dog20_filled = NotStr(''' + +''') +icon_person_pill24_filled = NotStr(''' + +''') +icon_number_symbol_square20_filled = NotStr(''' + +''') +icon_multiplier2_x48_filled = NotStr(''' + +''') +icon_puzzle_piece16_filled = NotStr(''' + +''') +icon_glasses20_filled = NotStr(''' + +''') +icon_arrow_reset48_filled = NotStr(''' + +''') +icon_board_heart24_filled = NotStr(''' + +''') +icon_wand48_filled = NotStr(''' + +''') +icon_call_outbound16_filled = NotStr(''' + +''') +icon_road_cone28_filled = NotStr(''' + +''') +icon_arrow_down_left16_filled = NotStr(''' + +''') +icon_braces20_filled = NotStr(''' + +''') +icon_chevron_double_down20_filled = NotStr(''' + +''') +icon_align_center_horizontal24_filled = NotStr(''' + +''') +icon_arrow_sync12_filled = NotStr(''' + +''') +icon_more_circle32_filled = NotStr(''' + +''') +icon_calendar_cancel16_filled = NotStr(''' + +''') +icon_person_call24_filled = NotStr(''' + +''') +icon_share_screen_stop20_filled = NotStr(''' + +''') +icon_arrow_circle_left48_regular = NotStr(''' + +''') +icon_table_cells_merge28_regular = NotStr(''' + +''') +icon_share24_filled = NotStr(''' + +''') +icon_channel_dismiss48_filled = NotStr(''' + +''') +icon_note28_regular = NotStr(''' + +''') +icon_document_save24_filled = NotStr(''' + +''') +icon_send20_filled = NotStr(''' + +''') +icon_dismiss_circle12_regular = NotStr(''' + +''') +icon_table_stack_right20_filled = NotStr(''' + +''') +icon_text_strikethrough16_regular = NotStr(''' + +''') +icon_panel_left48_regular = NotStr(''' + +''') +icon_mail_error24_regular = NotStr(''' + +''') +icon_arrow_sort28_filled = NotStr(''' + +''') +icon_arrow_next20_regular = NotStr(''' + +''') +icon_balloon16_regular = NotStr(''' + +''') +icon_notebook_question_mark24_filled = NotStr(''' + +''') +icon_text_header320_filled = NotStr(''' + +''') +icon_heart_circle16_regular = NotStr(''' + +''') +icon_calendar_day20_filled = NotStr(''' + +''') +icon_color_line16_regular = NotStr(''' + +''') +icon_arrow_autofit_width_dotted20_regular = NotStr(''' + +''') +icon_food_cake24_regular = NotStr(''' + +''') +icon_book_open_microphone32_regular = NotStr(''' + +''') +icon_arrow_maximize32_filled = NotStr(''' + +''') +icon_vehicle_truck_bag24_filled = NotStr(''' + +''') +icon_more_circle20_regular = NotStr(''' + +''') +icon_desktop_mac20_filled = NotStr(''' + +''') +icon_chevron_circle_down16_regular = NotStr(''' + +''') +icon_speaker_edit16_regular = NotStr(''' + +''') +icon_gas24_regular = NotStr(''' + +''') +icon_clipboard_task_add20_regular = NotStr(''' + +''') +icon_apps20_regular = NotStr(''' + +''') +icon_read_aloud16_regular = NotStr(''' + +''') +icon_drafts24_regular = NotStr(''' + +''') +icon_phone_desktop16_regular = NotStr(''' + +''') +icon_folder_person20_regular = NotStr(''' + +''') +icon_building_multiple20_filled = NotStr(''' + +''') +icon_store_microsoft20_filled = NotStr(''' + +''') +icon_leaf_one24_filled = NotStr(''' + +''') +icon_speaker120_regular = NotStr(''' + +''') +icon_animal_rabbit28_filled = NotStr(''' + +''') +icon_content_settings32_regular = NotStr(''' + +''') +icon_fps6048_filled = NotStr(''' + +''') +icon_arrow_circle_left32_filled = NotStr(''' + +''') +icon_target16_filled = NotStr(''' + +''') +icon_play_circle20_regular = NotStr(''' + +''') +icon_double_tap_swipe_up24_filled = NotStr(''' + +''') +icon_flag_pride16_filled = NotStr(''' + + + + + + + + + + +''') +icon_line_horizontal520_regular = NotStr(''' + +''') +icon_briefcase32_filled = NotStr(''' + +''') +icon_delete_lines20_filled = NotStr(''' + +''') +icon_rhombus16_filled = NotStr(''' + +''') +icon_panel_right_expand20_regular = NotStr(''' + +''') +icon_text_number_list_ltr24_regular = NotStr(''' + +''') +icon_smartwatch20_regular = NotStr(''' + +''') +icon_luggage32_regular = NotStr(''' + +''') +icon_speaker_off16_filled = NotStr(''' + +''') +icon_trophy_off48_filled = NotStr(''' + +''') +icon_mail_inbox_dismiss24_regular = NotStr(''' + +''') +icon_text_effects20_filled = NotStr(''' + +''') +icon_cube_tree20_regular = NotStr(''' + +''') +icon_arrow_up_left16_filled = NotStr(''' + +''') +icon_text_align_left16_regular = NotStr(''' + +''') +icon_text_case_uppercase24_filled = NotStr(''' + +''') +icon_comment_multiple_checkmark28_regular = NotStr(''' + +''') +icon_multiplier1_x28_regular = NotStr(''' + +''') +icon_calendar_work_week16_filled = NotStr(''' + +''') +icon_emoji_sad_slight24_regular = NotStr(''' + +''') +icon_skip_forward1024_regular = NotStr(''' + +''') +icon_folder_arrow_up48_regular = NotStr(''' + +''') +icon_border_top20_regular = NotStr(''' + +''') +icon_document_multiple24_filled = NotStr(''' + + + + + +''') +icon_diagram20_filled = NotStr(''' + +''') +icon_phone_desktop20_regular = NotStr(''' + +''') +icon_microscope24_filled = NotStr(''' + +''') +icon_backpack_add20_filled = NotStr(''' + +''') +icon_arrow_down16_regular = NotStr(''' + +''') +icon_mail_copy24_regular = NotStr(''' + +''') +icon_vehicle_bicycle16_regular = NotStr(''' + +''') +icon_checkmark_lock24_filled = NotStr(''' + +''') +icon_shifts_team24_regular = NotStr(''' + +''') +icon_video_prohibited24_regular = NotStr(''' + +''') +icon_cellular_data520_filled = NotStr(''' + +''') +icon_arrow_clockwise48_regular = NotStr(''' + +''') +icon_timer_off24_filled = NotStr(''' + +''') +icon_subtract12_filled = NotStr(''' + +''') +icon_vehicle_truck_cube24_filled = NotStr(''' + +''') +icon_chevron_left16_filled = NotStr(''' + +''') +icon_star_edit20_filled = NotStr(''' + +''') +icon_data_usage_toolbox20_filled = NotStr(''' + +''') +icon_arrow_sort_down20_regular = NotStr(''' + +''') +icon_sport20_filled = NotStr(''' + +''') +icon_presence_busy16_filled = NotStr(''' + +''') +icon_table_resize_column24_regular = NotStr(''' + +''') +icon_clipboard_task_add24_regular = NotStr(''' + +''') +icon_timer12_regular = NotStr(''' + +''') +icon_arrow_circle_down_double20_filled = NotStr(''' + +''') +icon_share_android24_regular = NotStr(''' + +''') +icon_key_reset20_regular = NotStr(''' + +''') +icon_bookmark28_regular = NotStr(''' + +''') +icon_weather_drizzle48_filled = NotStr(''' + +''') +icon_star_arrow_right_start24_filled = NotStr(''' + +''') +icon_window16_filled = NotStr(''' + +''') +icon_presenter20_filled = NotStr(''' + +''') +icon_arrow_down48_filled = NotStr(''' + +''') +icon_text_column_one_wide20_filled = NotStr(''' + +''') +icon_arrow_forward20_regular = NotStr(''' + +''') +icon_comment_add24_filled = NotStr(''' + +''') +icon_table_stack_left20_filled = NotStr(''' + +''') +icon_comment_arrow_left12_regular = NotStr(''' + +''') +icon_mail_prohibited24_filled = NotStr(''' + +''') +icon_dialpad32_filled = NotStr(''' + +''') +icon_cloud_archive24_filled = NotStr(''' + +''') +icon_clipboard_more20_filled = NotStr(''' + +''') +icon_calendar3_day16_filled = NotStr(''' + +''') +icon_archive_settings16_filled = NotStr(''' + +''') +icon_textbox20_regular = NotStr(''' + +''') +icon_table_freeze_column_and_row28_regular = NotStr(''' + +''') +icon_clock28_regular = NotStr(''' + +''') +icon_flashlight24_regular = NotStr(''' + +''') +icon_document_page_top_center20_filled = NotStr(''' + +''') +icon_walkie_talkie20_regular = NotStr(''' + + + + + +''') +icon_clipboard_error20_filled = NotStr(''' + +''') +icon_archive_settings20_filled = NotStr(''' + +''') +icon_desktop_arrow_right16_filled = NotStr(''' + +''') +icon_arrow_autofit_width24_filled = NotStr(''' + +''') +icon_subtract20_regular = NotStr(''' + +''') +icon_image_multiple32_regular = NotStr(''' + +''') +icon_share_ios20_regular = NotStr(''' + +''') +icon_person_board16_filled = NotStr(''' + +''') +icon_person_swap20_regular = NotStr(''' + +''') +icon_mail_attach16_regular = NotStr(''' + +''') +icon_person12_filled = NotStr(''' + +''') +icon_folder_add28_filled = NotStr(''' + +''') +icon_battery624_filled = NotStr(''' + +''') +icon_weather_snow_shower_day24_filled = NotStr(''' + +''') +icon_comment_arrow_left48_filled = NotStr(''' + +''') +icon_luggage32_filled = NotStr(''' + +''') +icon_arrow_sync_dismiss24_regular = NotStr(''' + +''') +icon_xbox_console20_regular = NotStr(''' + +''') +icon_weather_moon48_filled = NotStr(''' + +''') +icon_text_column_two_right24_regular = NotStr(''' + +''') +icon_arrow_repeat_all_off24_filled = NotStr(''' + +''') +icon_history24_filled = NotStr(''' + +''') +icon_projection_screen24_filled = NotStr(''' + +''') +icon_print24_filled = NotStr(''' + +''') +icon_emoji_sparkle16_regular = NotStr(''' + +''') +icon_presenter_off20_regular = NotStr(''' + +''') +icon_briefcase_medical16_filled = NotStr(''' + +''') +icon_clock12_filled = NotStr(''' + +''') +icon_video_prohibited28_regular = NotStr(''' + +''') +icon_clipboard_heart24_regular = NotStr(''' + +''') +icon_keyboard_tab24_filled = NotStr(''' + +''') +icon_clear_formatting20_regular = NotStr(''' + +''') +icon_text_color24_filled = NotStr(''' + +''') +icon_warning_shield20_filled = NotStr(''' + + + + +''') +icon_brain_circuit24_regular = NotStr(''' + +''') +icon_news16_filled = NotStr(''' + +''') +icon_add_subtract_circle24_regular = NotStr(''' + +''') +icon_sport_soccer16_regular = NotStr(''' + +''') +icon_check24_filled = NotStr(''' + +''') +icon_video_add24_regular = NotStr(''' + +''') +icon_toggle_left16_filled = NotStr(''' + +''') +icon_component2_double_tap_swipe_up24_regular = NotStr(''' + +''') +icon_games20_regular = NotStr(''' + +''') +icon_bluetooth_disabled20_filled = NotStr(''' + +''') +icon_fps6016_filled = NotStr(''' + +''') +icon_braces_variable20_regular = NotStr(''' + +''') +icon_braces_variable24_filled = NotStr(''' + +''') +icon_stack_arrow_forward24_regular = NotStr(''' + +''') +icon_image_prohibited24_filled = NotStr(''' + +''') +icon_shopping_bag_tag24_filled = NotStr(''' + +''') +icon_channel_subtract24_regular = NotStr(''' + +''') +icon_video_person48_regular = NotStr(''' + +''') +icon_app_generic24_filled = NotStr(''' + +''') +icon_wifi_off20_regular = NotStr(''' + +''') +icon_document_toolbox20_filled = NotStr(''' + +''') +icon_arrow_hook_down_left20_filled = NotStr(''' + +''') +icon_document_page_bottom_right20_regular = NotStr(''' + +''') +icon_arrow_reply16_filled = NotStr(''' + +''') +icon_food_egg24_regular = NotStr(''' + +''') +icon_drafts20_filled = NotStr(''' + +''') +icon_dismiss16_filled = NotStr(''' + +''') +icon_chevron_circle_down24_regular = NotStr(''' + +''') +icon_beaker_edit24_filled = NotStr(''' + +''') +icon_cloud_dismiss16_regular = NotStr(''' + +''') +icon_ribbon_off16_regular = NotStr(''' + +''') +icon_arrow_circle_up16_filled = NotStr(''' + +''') +icon_emoji_smile_slight24_regular = NotStr(''' + +''') +icon_bezier_curve_square20_filled = NotStr(''' + +''') +icon_video_prohibited16_filled = NotStr(''' + +''') +icon_ratio_one_to_one24_regular = NotStr(''' + +''') +icon_timer24_filled = NotStr(''' + +''') +icon_rectangle_landscape28_filled = NotStr(''' + +''') +icon_pulse28_regular = NotStr(''' + +''') +icon_shifts_checkmark24_filled = NotStr(''' + +''') +icon_align_center_horizontal32_filled = NotStr(''' + +''') +icon_calendar_cancel20_filled = NotStr(''' + +''') +icon_flash_checkmark20_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_day48_regular = NotStr(''' + +''') +icon_arrow_undo48_regular = NotStr(''' + +''') +icon_maximize24_regular = NotStr(''' + +''') +icon_comment12_filled = NotStr(''' + +''') +icon_cloud24_regular = NotStr(''' + +''') +icon_column_triple24_filled = NotStr(''' + +''') +icon_book_pulse20_filled = NotStr(''' + +''') +icon_tab16_regular = NotStr(''' + +''') +icon_color_fill_accent16_regular = NotStr(''' + +''') +icon_flowchart_circle20_regular = NotStr(''' + +''') +icon_heart24_filled = NotStr(''' + +''') +icon_ratio_one_to_one20_regular = NotStr(''' + +''') +icon_ribbon20_filled = NotStr(''' + +''') +icon_cube_tree24_regular = NotStr(''' + +''') +icon_speaker124_regular = NotStr(''' + +''') +icon_cloud_off20_filled = NotStr(''' + +''') +icon_text_quote16_regular = NotStr(''' + +''') +icon_gift_card_money24_filled = NotStr(''' + +''') +icon_folder_arrow_right28_regular = NotStr(''' + +''') +icon_alert_off28_regular = NotStr(''' + +''') +icon_vehicle_truck_bag20_filled = NotStr(''' + +''') +icon_full_screen_maximize16_filled = NotStr(''' + +''') +icon_book_compass24_filled = NotStr(''' + +''') +icon_slide_grid24_regular = NotStr(''' + +''') +icon_document_footer_dismiss24_filled = NotStr(''' + +''') +icon_temperature24_filled = NotStr(''' + +''') +icon_skip_forward1048_filled = NotStr(''' + +''') +icon_flag16_filled = NotStr(''' + +''') +icon_edit_settings24_filled = NotStr(''' + +''') +icon_phone_update_checkmark20_filled = NotStr(''' + +''') +icon_board_games20_filled = NotStr(''' + +''') +icon_receipt_money20_filled = NotStr(''' + +''') +icon_apps_add_in20_regular = NotStr(''' + +''') +icon_lock_open24_regular = NotStr(''' + +''') +icon_padding_down20_filled = NotStr(''' + +''') +icon_access_time20_regular = NotStr(''' + +''') +icon_mail_multiple24_filled = NotStr(''' + +''') +icon_top_speed24_filled = NotStr(''' + +''') +icon_text_case_uppercase24_regular = NotStr(''' + +''') +icon_table_insert_row20_filled = NotStr(''' + +''') +icon_comment_multiple_checkmark24_filled = NotStr(''' + +''') +icon_chevron_right24_filled = NotStr(''' + +''') +icon_text_direction_horizontal_right24_regular = NotStr(''' + +''') +icon_toggle_right24_filled = NotStr(''' + +''') +icon_panel_right_contract24_filled = NotStr(''' + +''') +icon_person_arrow_right16_regular = NotStr(''' + +''') +icon_text_bullet_list_ltr20_regular = NotStr(''' + +''') +icon_mail_arrow_double_back20_filled = NotStr(''' + +''') +icon_speaker028_regular = NotStr(''' + +''') +icon_slide_text48_regular = NotStr(''' + +''') +icon_chevron_double_right20_regular = NotStr(''' + +''') +icon_group_dismiss24_filled = NotStr(''' + +''') +icon_vehicle_cab16_regular = NotStr(''' + +''') +icon_speaker_mute24_regular = NotStr(''' + +''') +icon_table_cell_edit28_regular = NotStr(''' + +''') +icon_video_person20_regular = NotStr(''' + +''') +icon_voicemail16_filled = NotStr(''' + +''') +icon_chevron_circle_left20_filled = NotStr(''' + +''') +icon_star_off24_filled = NotStr(''' + +''') +icon_desktop_speaker_off20_regular = NotStr(''' + +''') +icon_weather_rain20_filled = NotStr(''' + +''') +icon_mail_clock20_regular = NotStr(''' + +''') +icon_pentagon48_regular = NotStr(''' + +''') +icon_ribbon_off24_regular = NotStr(''' + +''') +icon_spacebar24_filled = NotStr(''' + +''') +icon_book_information20_filled = NotStr(''' + +''') +icon_split_horizontal16_filled = NotStr(''' + +''') +icon_settings48_filled = NotStr(''' + +''') +icon_window_arrow_up20_regular = NotStr(''' + +''') +icon_tag32_regular = NotStr(''' + +''') +icon_dialpad20_regular = NotStr(''' + +''') +icon_cloud_arrow_up32_regular = NotStr(''' + +''') +icon_key20_regular = NotStr(''' + +''') +icon_arrow_previous20_filled = NotStr(''' + +''') +icon_cloud_arrow_up24_filled = NotStr(''' + +''') +icon_puzzle_piece_shield20_filled = NotStr(''' + +''') +icon_folder_open_vertical20_regular = NotStr(''' + +''') +icon_chevron_up16_filled = NotStr(''' + +''') +icon_link28_regular = NotStr(''' + +''') +icon_tent16_filled = NotStr(''' + +''') +icon_dialpad48_filled = NotStr(''' + +''') +icon_text_hanging20_regular = NotStr(''' + +''') +icon_double_swipe_up24_regular = NotStr(''' + +''') +icon_question_circle32_filled = NotStr(''' + +''') +icon_maximize16_regular = NotStr(''' + +''') +icon_arrow_step_in12_regular = NotStr(''' + +''') +icon_chevron_circle_right32_filled = NotStr(''' + +''') +icon_arrow_right16_filled = NotStr(''' + +''') +icon_weather_blowing_snow20_regular = NotStr(''' + +''') +icon_merge24_regular = NotStr(''' + +''') +icon_call_dismiss24_regular = NotStr(''' + +''') +icon_calendar_work_week20_regular = NotStr(''' + +''') +icon_fluid24_regular = NotStr(''' + +''') +icon_mail_add20_regular = NotStr(''' + +''') +icon_add_circle20_regular = NotStr(''' + +''') +icon_cloud_off32_regular = NotStr(''' + +''') +icon_data_waterfall24_regular = NotStr(''' + +''') +icon_emoji20_filled = NotStr(''' + +''') +icon_molecule20_regular = NotStr(''' + +''') +icon_door_arrow_left20_filled = NotStr(''' + +''') +icon_circle_line24_regular = NotStr(''' + +''') +icon_table_resize_row16_regular = NotStr(''' + +''') +icon_mail20_regular = NotStr(''' + +''') +icon_text_effects24_filled = NotStr(''' + +''') +icon_comment_checkmark12_regular = NotStr(''' + +''') +icon_braces24_regular = NotStr(''' + +''') +icon_book_open_microphone32_filled = NotStr(''' + +''') +icon_mic_sync20_filled = NotStr(''' + +''') +icon_draw_shape20_regular = NotStr(''' + +''') +icon_arrow_move24_filled = NotStr(''' + +''') +icon_table_simple16_regular = NotStr(''' + +''') +icon_split_vertical20_filled = NotStr(''' + +''') +icon_gift_card_money24_regular = NotStr(''' + +''') +icon_alert_off16_filled = NotStr(''' + +''') +icon_collections20_filled = NotStr(''' + +''') +icon_vehicle_car_collision16_filled = NotStr(''' + +''') +icon_blur20_filled = NotStr(''' + +''') +icon_gantt_chart20_regular = NotStr(''' + +''') +icon_document_arrow_left16_regular = NotStr(''' + +''') +icon_chat_bubbles_question16_filled = NotStr(''' + +''') +icon_mail_unread48_filled = NotStr(''' + +''') +icon_more_vertical16_filled = NotStr(''' + +''') +icon_book_star20_filled = NotStr(''' + +''') +icon_chat_arrow_double_back20_filled = NotStr(''' + +''') +icon_mail_inbox_add16_regular = NotStr(''' + +''') +icon_align_bottom24_regular = NotStr(''' + +''') +icon_document_split_hint_off24_filled = NotStr(''' + +''') +icon_mail_arrow_up16_regular = NotStr(''' + +''') +icon_dentist16_regular = NotStr(''' + +''') +icon_thumb_dislike20_filled = NotStr(''' + +''') +icon_panel_left_expand16_filled = NotStr(''' + + + + +''') +icon_folder_person16_regular = NotStr(''' + +''') +icon_channel_subtract20_filled = NotStr(''' + +''') +icon_arrow_repeat_all_off20_filled = NotStr(''' + +''') +icon_shape_exclude20_regular = NotStr(''' + +''') +icon_text_grammar_settings20_filled = NotStr(''' + +''') +icon_comment_arrow_left28_regular = NotStr(''' + +''') +icon_money24_filled = NotStr(''' + +''') +icon_shield_badge24_regular = NotStr(''' + +''') +icon_person_mail16_regular = NotStr(''' + +''') +icon_split_vertical12_regular = NotStr(''' + +''') +icon_voicemail_arrow_back16_regular = NotStr(''' + +''') +icon_share_close_tray24_filled = NotStr(''' + +''') +icon_dumbbell28_regular = NotStr(''' + +''') +icon_checkbox_person16_regular = NotStr(''' + +''') +icon_glasses_off28_regular = NotStr(''' + +''') +icon_people_toolbox16_regular = NotStr(''' + +''') +icon_dual_screen_add24_regular = NotStr(''' + +''') +icon_split_vertical48_regular = NotStr(''' + +''') +icon_box_dismiss24_regular = NotStr(''' + +''') +icon_vehicle_car_profile_ltr16_filled = NotStr(''' + +''') +icon_subtract_circle_arrow_back20_regular = NotStr(''' + +''') +icon_folder_arrow_up48_filled = NotStr(''' + +''') +icon_f_stop16_regular = NotStr(''' + +''') +icon_arrow_up20_regular = NotStr(''' + +''') +icon_battery_saver20_filled = NotStr(''' + +''') +icon_diversity28_filled = NotStr(''' + +''') +icon_speaker_off48_filled = NotStr(''' + +''') +icon_calendar_settings20_filled = NotStr(''' + +''') +icon_arrow_swap24_regular = NotStr(''' + +''') +icon_mail_arrow_up16_filled = NotStr(''' + +''') +icon_circle_line12_filled = NotStr(''' + +''') +icon_calendar_sync24_regular = NotStr(''' + +''') +icon_textbox_align_bottom24_filled = NotStr(''' + +''') +icon_speaker228_regular = NotStr(''' + +''') +icon_building_bank_toolbox24_regular = NotStr(''' + +''') +icon_balloon24_filled = NotStr(''' + +''') +icon_text_header124_regular = NotStr(''' + +''') +icon_border_top_bottom24_regular = NotStr(''' + +''') +icon_warning16_regular = NotStr(''' + +''') +icon_airplane_take_off24_filled = NotStr(''' + +''') +icon_speaker_bluetooth28_filled = NotStr(''' + +''') +icon_building_bank_link28_regular = NotStr(''' + +''') +icon_cut24_regular = NotStr(''' + +''') +icon_quiz_new28_filled = NotStr(''' + +''') +icon_clipboard_paste24_filled = NotStr(''' + +''') +icon_chat_multiple24_filled = NotStr(''' + +''') +icon_error_circle24_regular = NotStr(''' + +''') +icon_person_call20_filled = NotStr(''' + +''') +icon_vehicle_car16_filled = NotStr(''' + +''') +icon_drafts24_filled = NotStr(''' + +''') +icon_scale_fit24_regular = NotStr(''' + +''') +icon_credit_card_toolbox20_filled = NotStr(''' + +''') +icon_tag_dismiss20_filled = NotStr(''' + +''') +icon_checkbox_indeterminate24_filled = NotStr(''' + +''') +icon_grid_dots28_filled = NotStr(''' + +''') +icon_person_pill20_filled = NotStr(''' + +''') +icon_phone_lock24_filled = NotStr(''' + +''') +icon_highlight20_filled = NotStr(''' + +''') +icon_calendar_question_mark24_filled = NotStr(''' + +''') +icon_keyboard_shift16_filled = NotStr(''' + +''') +icon_news16_regular = NotStr(''' + +''') +icon_shifts_open20_filled = NotStr(''' + +''') +icon_grid_dots28_regular = NotStr(''' + +''') +icon_scan_thumb_up_off48_regular = NotStr(''' + +''') +icon_arrow_move_inward20_regular = NotStr(''' + +''') +icon_person_support24_filled = NotStr(''' + +''') +icon_mail_arrow_up20_filled = NotStr(''' + +''') +icon_text_case_title16_regular = NotStr(''' + +''') +icon_divider_tall24_filled = NotStr(''' + +''') +icon_call_checkmark20_filled = NotStr(''' + +''') +icon_search32_filled = NotStr(''' + +''') +icon_question_circle20_regular = NotStr(''' + +''') +icon_alert24_regular = NotStr(''' + +''') +icon_fps6028_regular = NotStr(''' + +''') +icon_keyboard_tab24_regular = NotStr(''' + +''') +icon_call20_regular = NotStr(''' + +''') +icon_desktop_keyboard20_regular = NotStr(''' + +''') +icon_table_freeze_column_and_row24_regular = NotStr(''' + +''') +icon_document_text_extract24_filled = NotStr(''' + +''') +icon_timer16_filled = NotStr(''' + +''') +icon_map_drive24_regular = NotStr(''' + +''') +icon_prohibited_multiple24_regular = NotStr(''' + +''') +icon_slide_hide24_regular = NotStr(''' + +''') +icon_building_bank_toolbox24_filled = NotStr(''' + +''') +icon_arrow_hook_up_left20_regular = NotStr(''' + +''') +icon_arrow_hook_up_right24_filled = NotStr(''' + +''') +icon_color_background_accent24_regular = NotStr(''' + +''') +icon_rename24_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_day16_regular = NotStr(''' + +''') +icon_call_prohibited48_regular = NotStr(''' + +''') +icon_toggle_left28_regular = NotStr(''' + +''') +icon_add_circle32_regular = NotStr(''' + +''') +icon_people_lock20_filled = NotStr(''' + +''') +icon_beach24_regular = NotStr(''' + +''') +icon_lock_open24_filled = NotStr(''' + +''') +icon_mail_inbox24_filled = NotStr(''' + +''') +icon_road_cone24_regular = NotStr(''' + +''') +icon_mail_inbox_add24_regular = NotStr(''' + +''') +icon_text_direction_rotate90_right20_regular = NotStr(''' + +''') +icon_midi24_regular = NotStr(''' + +''') +icon_select_all_off24_filled = NotStr(''' + +''') +icon_text_italic20_filled = NotStr(''' + +''') +icon_bookmark_add20_filled = NotStr(''' + +''') +icon_diamond28_filled = NotStr(''' + +''') +icon_lasso28_filled = NotStr(''' + +''') +icon_table_freeze_column_and_row20_regular = NotStr(''' + +''') +icon_contact_card28_regular = NotStr(''' + +''') +icon_arrow_export_ltr24_regular = NotStr(''' + +''') +icon_chat16_regular = NotStr(''' + +''') +icon_table_lightning20_regular = NotStr(''' + +''') +icon_people_community_add28_regular = NotStr(''' + +''') +icon_settings24_filled = NotStr(''' + +''') +icon_pin_off48_regular = NotStr(''' + +''') +icon_premium20_filled = NotStr(''' + +''') +icon_tetris_app24_filled = NotStr(''' + +''') +icon_arrow_sort_down_lines24_filled = NotStr(''' + +''') +icon_bluetooth28_filled = NotStr(''' + +''') +icon_subtract_square_multiple20_regular = NotStr(''' + +''') +icon_picture_in_picture20_regular = NotStr(''' + +''') +icon_checkmark_circle32_filled = NotStr(''' + +''') +icon_gift_card_multiple20_regular = NotStr(''' + +''') +icon_vehicle_car_collision16_regular = NotStr(''' + +''') +icon_arrow_autofit_down24_filled = NotStr(''' + +''') +icon_pin16_filled = NotStr(''' + +''') +icon_number_symbol16_regular = NotStr(''' + +''') +icon_target20_filled = NotStr(''' + +''') +icon_search48_filled = NotStr(''' + +''') +icon_settings48_regular = NotStr(''' + +''') +icon_mic48_filled = NotStr(''' + +''') +icon_rating_mature16_filled = NotStr(''' + +''') +icon_meet_now28_regular = NotStr(''' + +''') +icon_comment_multiple20_filled = NotStr(''' + +''') +icon_mention24_filled = NotStr(''' + +''') +icon_leaf_one20_regular = NotStr(''' + +''') +icon_text_indent_increase_rtl16_filled = NotStr(''' + +''') +icon_arrow_autofit_content24_regular = NotStr(''' + +''') +icon_table_add28_filled = NotStr(''' + +''') +icon_arrow_reply48_regular = NotStr(''' + +''') +icon_money_dismiss20_regular = NotStr(''' + +''') +icon_calendar_person24_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_up24_filled = NotStr(''' + +''') +icon_cloud_words28_regular = NotStr(''' + +''') +icon_mail_open_person20_regular = NotStr(''' + +''') +icon_save_copy24_regular = NotStr(''' + +''') +icon_doctor20_regular = NotStr(''' + +''') +icon_share_screen_person24_regular = NotStr(''' + +''') +icon_equal_circle20_regular = NotStr(''' + +''') +icon_cursor_hover_off20_filled = NotStr(''' + +''') +icon_text_indent_decrease_rtl16_regular = NotStr(''' + +''') +icon_gavel32_regular = NotStr(''' + +''') +icon_shopping_bag16_filled = NotStr(''' + +''') +icon_cloud_dismiss20_filled = NotStr(''' + +''') +icon_rhombus48_regular = NotStr(''' + +''') +icon_font_decrease20_filled = NotStr(''' + +''') +icon_arrow_sort_up16_filled = NotStr(''' + +''') +icon_folder_add20_regular = NotStr(''' + +''') +icon_drink_margarita24_regular = NotStr(''' + +''') +icon_target_arrow16_filled = NotStr(''' + +''') +icon_weather_cloudy20_regular = NotStr(''' + +''') +icon_clipboard_search20_regular = NotStr(''' + +''') +icon_arrow_autofit_height_dotted24_regular = NotStr(''' + +''') +icon_cellular_data524_regular = NotStr(''' + +''') +icon_question_circle32_regular = NotStr(''' + +''') +icon_vehicle_car28_regular = NotStr(''' + +''') +icon_panel_right_expand20_filled = NotStr(''' + +''') +icon_bot20_regular = NotStr(''' + +''') +icon_align_left20_filled = NotStr(''' + +''') +icon_color_fill28_filled = NotStr(''' + +''') +icon_slide_multiple_arrow_right24_regular = NotStr(''' + +''') +icon_tag_error20_regular = NotStr(''' + +''') +icon_drawer_subtract24_regular = NotStr(''' + +''') +icon_glasses_off20_filled = NotStr(''' + +''') +icon_panel_top_expand20_regular = NotStr(''' + +''') +icon_prohibited_multiple20_regular = NotStr(''' + +''') +icon_text_grammar_wand24_filled = NotStr(''' + +''') +icon_add_square20_filled = NotStr(''' + +''') +icon_column_triple_edit20_regular = NotStr(''' + +''') +icon_comment_off48_regular = NotStr(''' + +''') +icon_presence_dnd16_filled = NotStr(''' + +''') +icon_delete48_regular = NotStr(''' + +''') +icon_math_symbols28_regular = NotStr(''' + +''') +icon_desktop_edit24_regular = NotStr(''' + +''') +icon_clipboard_link24_regular = NotStr(''' + +''') +icon_chevron_circle_left12_filled = NotStr(''' + +''') +icon_fps6020_regular = NotStr(''' + +''') +icon_chevron_circle_up20_filled = NotStr(''' + +''') +icon_weather_fog48_filled = NotStr(''' + +''') +icon_link_square12_regular = NotStr(''' + +''') +icon_align_center_vertical16_regular = NotStr(''' + +''') +icon_save_copy24_filled = NotStr(''' + +''') +icon_vehicle_truck_bag24_regular = NotStr(''' + +''') +icon_weather_thunderstorm24_filled = NotStr(''' + +''') +icon_usb_stick20_filled = NotStr(''' + +''') +icon_document_add28_regular = NotStr(''' + +''') +icon_headset_vr24_filled = NotStr(''' + +''') +icon_calendar_toolbox24_regular = NotStr(''' + +''') +icon_text_align_right20_regular = NotStr(''' + +''') +icon_speaker_mute16_regular = NotStr(''' + +''') +icon_eye_tracking16_regular = NotStr(''' + +''') +icon_bookmark24_regular = NotStr(''' + +''') +icon_inking_tool32_regular = NotStr(''' + +''') +icon_chevron_double_right16_filled = NotStr(''' + +''') +icon_building_bank_link48_regular = NotStr(''' + +''') +icon_channel20_regular = NotStr(''' + +''') +icon_panel_top_contract20_filled = NotStr(''' + +''') +icon_box_multiple20_regular = NotStr(''' + +''') +icon_engine24_regular = NotStr(''' + +''') +icon_pulse20_regular = NotStr(''' + +''') +icon_text_bullet_list_square20_regular = NotStr(''' + +''') +icon_box_arrow_left24_filled = NotStr(''' + +''') +icon_cellular_data320_filled = NotStr(''' + +''') +icon_dentist24_filled = NotStr(''' + +''') +icon_star_off20_regular = NotStr(''' + +''') +icon_document_chevron_double20_regular = NotStr(''' + +''') +icon_dismiss_circle20_regular = NotStr(''' + +''') +icon_flow20_regular = NotStr(''' + +''') +icon_video_background_effect20_filled = NotStr(''' + +''') +icon_archive48_filled = NotStr(''' + +''') +icon_text_add_space_after20_filled = NotStr(''' + +''') +icon_record_stop32_filled = NotStr(''' + +''') +icon_table_switch20_filled = NotStr(''' + +''') +icon_document_text_extract20_regular = NotStr(''' + +''') +icon_content_view_gallery20_filled = NotStr(''' + +''') +icon_mail_read48_filled = NotStr(''' + +''') +icon_dismiss_square20_filled = NotStr(''' + +''') +icon_globe_desktop24_regular = NotStr(''' + +''') +icon_ribbon12_regular = NotStr(''' + +''') +icon_vehicle_bicycle20_regular = NotStr(''' + +''') +icon_table_freeze_row20_filled = NotStr(''' + +''') +icon_video32_filled = NotStr(''' + +''') +icon_speaker024_regular = NotStr(''' + +''') +icon_road_cone28_regular = NotStr(''' + +''') +icon_data_pie20_regular = NotStr(''' + +''') +icon_arrow_counterclockwise20_filled = NotStr(''' + +''') +icon_arrow_sort_down_lines20_regular = NotStr(''' + +''') +icon_quiz_new48_regular = NotStr(''' + +''') +icon_draw_text24_regular = NotStr(''' + +''') +icon_camera_dome48_regular = NotStr(''' + +''') +icon_battery620_regular = NotStr(''' + +''') +icon_math_symbols16_filled = NotStr(''' + +''') +icon_headphones_sound_wave20_filled = NotStr(''' + +''') +icon_cart24_filled = NotStr(''' + +''') +icon_payment16_regular = NotStr(''' + +''') +icon_bug20_filled = NotStr(''' + +''') +icon_guardian48_filled = NotStr(''' + +''') +icon_puzzle_cube20_regular = NotStr(''' + +''') +icon_link_square24_filled = NotStr(''' + +''') +icon_calendar3_day20_filled = NotStr(''' + +''') +icon_calendar_question_mark20_regular = NotStr(''' + +''') +icon_document_footer16_filled = NotStr(''' + +''') +icon_folder_arrow_up20_filled = NotStr(''' + +''') +icon_desktop_speaker24_filled = NotStr(''' + +''') +icon_arrow_circle_up48_filled = NotStr(''' + +''') +icon_apps_add_in24_regular = NotStr(''' + +''') +icon_text_sort_ascending24_filled = NotStr(''' + +''') +icon_star_line_horizontal324_filled = NotStr(''' + +''') +icon_error_circle_settings20_filled = NotStr(''' + +''') +icon_dismiss_circle20_filled = NotStr(''' + +''') +icon_arrow_up_right16_filled = NotStr(''' + +''') +icon_teddy24_regular = NotStr(''' + +''') +icon_calculator_multiple24_filled = NotStr(''' + +''') +icon_developer_board_search24_filled = NotStr(''' + +''') +icon_document_table_arrow_right24_regular = NotStr(''' + +''') +icon_align_top16_regular = NotStr(''' + +''') +icon_document_lock28_regular = NotStr(''' + +''') +icon_arrow_right20_regular = NotStr(''' + +''') +icon_iot20_regular = NotStr(''' + +''') +icon_pivot24_filled = NotStr(''' + +''') +icon_image_search20_filled = NotStr(''' + +''') +icon_cursor20_filled = NotStr(''' + +''') +icon_person_add16_filled = NotStr(''' + +''') +icon_home48_regular = NotStr(''' + +''') +icon_video_person_star_off20_regular = NotStr(''' + +''') +icon_dentist12_filled = NotStr(''' + +''') +icon_clipboard20_filled = NotStr(''' + +''') +icon_arrow_curve_down_left20_filled = NotStr(''' + +''') +icon_folder_open24_filled = NotStr(''' + +''') +icon_read_aloud24_regular = NotStr(''' + +''') +icon_mic_prohibited48_filled = NotStr(''' + +''') +icon_games20_filled = NotStr(''' + +''') +icon_speaker_mute24_filled = NotStr(''' + +''') +icon_text_indent_increase_rtl24_filled = NotStr(''' + +''') +icon_video_person_sparkle48_filled = NotStr(''' + +''') +icon_record28_filled = NotStr(''' + +''') +icon_inking_tool16_filled = NotStr(''' + +''') +icon_link_square16_regular = NotStr(''' + +''') +icon_people_call20_filled = NotStr(''' + +''') +icon_table_move_left20_filled = NotStr(''' + +''') +icon_arrow_maximize24_filled = NotStr(''' + +''') +icon_video_person_call24_filled = NotStr(''' + +''') +icon_person20_filled = NotStr(''' + +''') +icon_arrow_step_in_right16_filled = NotStr(''' + +''') +icon_heart20_regular = NotStr(''' + +''') +icon_table_stack_left28_filled = NotStr(''' + +''') +icon_document_page_bottom_right24_filled = NotStr(''' + +''') +icon_mail_template24_filled = NotStr(''' + +''') +icon_text_line_spacing20_regular = NotStr(''' + +''') +icon_translate24_regular = NotStr(''' + +''') +icon_brightness_low28_regular = NotStr(''' + +''') +icon_arrow_export_rtl16_filled = NotStr(''' + +''') +icon_fax20_filled = NotStr(''' + +''') +icon_arrow_expand24_filled = NotStr(''' + +''') +icon_calendar_work_week16_regular = NotStr(''' + +''') +icon_align_stretch_horizontal20_filled = NotStr(''' + + + + + + +''') +icon_arrow_hook_up_right28_filled = NotStr(''' + +''') +icon_eraser_segment24_filled = NotStr(''' + +''') +icon_apps_add_in28_regular = NotStr(''' + +''') +icon_hd20_filled = NotStr(''' + +''') +icon_table_freeze_column16_filled = NotStr(''' + +''') +icon_inprivate_account20_regular = NotStr(''' + +''') +icon_bookmark_multiple48_regular = NotStr(''' + +''') +icon_chevron_circle_left16_regular = NotStr(''' + +''') +icon_receipt_cube20_regular = NotStr(''' + +''') +icon_battery824_filled = NotStr(''' + +''') +icon_timer20_filled = NotStr(''' + +''') +icon_star_dismiss28_regular = NotStr(''' + +''') +icon_comment_add12_regular = NotStr(''' + +''') +icon_book_add24_filled = NotStr(''' + +''') +icon_border_top20_filled = NotStr(''' + +''') +icon_paint_brush16_filled = NotStr(''' + +''') +icon_share28_filled = NotStr(''' + +''') +icon_cart16_regular = NotStr(''' + +''') +icon_text_align_justify20_filled = NotStr(''' + +''') +icon_building_government24_filled = NotStr(''' + +''') +icon_cloud16_regular = NotStr(''' + +''') +icon_power20_regular = NotStr(''' + +''') +icon_multiplier15_x20_regular = NotStr(''' + +''') +icon_calendar_star16_filled = NotStr(''' + +''') +icon_drink_margarita20_regular = NotStr(''' + +''') +icon_text_align_justify_low20_filled = NotStr(''' + +''') +icon_send16_regular = NotStr(''' + +''') +icon_text_clear_formatting24_regular = NotStr(''' + +''') +icon_document_endnote24_filled = NotStr(''' + +''') +icon_panel_right_contract16_regular = NotStr(''' + +''') +icon_speaker120_filled = NotStr(''' + +''') +icon_broad_activity_feed16_regular = NotStr(''' + +''') +icon_arrow_down20_regular = NotStr(''' + +''') +icon_text_indent_decrease_ltr16_filled = NotStr(''' + +''') +icon_align_center_vertical48_filled = NotStr(''' + +''') +icon_arrow_export_rtl24_regular = NotStr(''' + +''') +icon_tap_double48_regular = NotStr(''' + +''') +icon_icons24_regular = NotStr(''' + +''') +icon_mail_template24_regular = NotStr(''' + +''') +icon_animal_rabbit16_filled = NotStr(''' + +''') +icon_document_toolbox24_filled = NotStr(''' + +''') +icon_padding_down24_regular = NotStr(''' + +''') +icon_save_multiple20_regular = NotStr(''' + +''') +icon_mail_pause20_regular = NotStr(''' + +''') +icon_oval28_regular = NotStr(''' + +''') +icon_sync_off16_regular = NotStr(''' + +''') +icon_chevron_right48_filled = NotStr(''' + +''') +icon_mic28_regular = NotStr(''' + +''') +icon_tab_desktop_bottom24_filled = NotStr(''' + +''') +icon_building_retail_money24_regular = NotStr(''' + +''') +icon_arrow_reply_down24_regular = NotStr(''' + +''') +icon_folder_link20_filled = NotStr(''' + +''') +icon_panel_left_contract16_regular = NotStr(''' + +''') +icon_backpack_add48_regular = NotStr(''' + +''') +icon_drawer_add24_filled = NotStr(''' + +''') +icon_cloud_arrow_up16_filled = NotStr(''' + +''') +icon_square48_regular = NotStr(''' + +''') +icon_device_meeting_room_remote32_filled = NotStr(''' + +''') +icon_save_arrow_right24_regular = NotStr(''' + +''') +icon_document_percent24_regular = NotStr(''' + +''') +icon_caret_right12_regular = NotStr(''' + +''') +icon_draw_text20_regular = NotStr(''' + +''') +icon_border_outside_thick20_regular = NotStr(''' + +''') +icon_clipboard20_regular = NotStr(''' + +''') +icon_tap_double48_filled = NotStr(''' + +''') +icon_arrow_swap24_filled = NotStr(''' + +''') +icon_arrow_sync_off16_filled = NotStr(''' + +''') +icon_box_multiple20_filled = NotStr(''' + +''') +icon_share_screen_person_overlay_inside20_filled = NotStr(''' + +''') +icon_text_box_settings20_filled = NotStr(''' + +''') +icon_currency_dollar_euro16_filled = NotStr(''' + +''') +icon_ticket_horizontal20_regular = NotStr(''' + +''') +icon_vehicle_cab24_filled = NotStr(''' + +''') +icon_people_search24_regular = NotStr(''' + +''') +icon_receipt_money20_regular = NotStr(''' + +''') +icon_slide_microphone24_regular = NotStr(''' + +''') +icon_lightbulb_filament20_regular = NotStr(''' + +''') +icon_weather_duststorm24_regular = NotStr(''' + +''') +icon_alert_off16_regular = NotStr(''' + +''') +icon_headset24_filled = NotStr(''' + +''') +icon_cellular_data420_filled = NotStr(''' + +''') +icon_skip_forward3024_regular = NotStr(''' + +''') +icon_arrow_repeat_all20_regular = NotStr(''' + +''') +icon_re_order_dots_vertical16_regular = NotStr(''' + +''') +icon_chevron_circle_down28_filled = NotStr(''' + +''') +icon_cursor_hover_off16_regular = NotStr(''' + +''') +icon_screenshot24_regular = NotStr(''' + +''') +icon_food_grains24_filled = NotStr(''' + +''') +icon_call_outbound48_regular = NotStr(''' + +''') +icon_chevron_circle_down12_regular = NotStr(''' + +''') +icon_text_bold16_filled = NotStr(''' + +''') +icon_column_edit20_regular = NotStr(''' + +''') +icon_document_multiple16_filled = NotStr(''' + +''') +icon_beach48_regular = NotStr(''' + +''') +icon_mail_error16_regular = NotStr(''' + +''') +icon_accessibility48_filled = NotStr(''' + +''') +icon_attach_text20_regular = NotStr(''' + +''') +icon_video_background_effect24_filled = NotStr(''' + +''') +icon_router24_filled = NotStr(''' + +''') +icon_headphones28_regular = NotStr(''' + +''') +icon_desktop_pulse32_filled = NotStr(''' + +''') +icon_database_link20_regular = NotStr(''' + +''') +icon_skip_forward_tab24_regular = NotStr(''' + +''') +icon_document_heart24_regular = NotStr(''' + +''') +icon_arrow_step_over20_regular = NotStr(''' + +''') +icon_check20_regular = NotStr(''' + +''') +icon_glasses28_regular = NotStr(''' + +''') +icon_calendar_star20_regular = NotStr(''' + +''') +icon_patient24_regular = NotStr(''' + +''') +icon_chevron_left16_regular = NotStr(''' + +''') +icon_mail12_regular = NotStr(''' + +''') +icon_leaf_three20_filled = NotStr(''' + +''') +icon_thumb_like24_filled = NotStr(''' + +''') +icon_window_ad20_filled = NotStr(''' + +''') +icon_arrow_sync_circle24_filled = NotStr(''' + +''') +icon_arrow_next20_filled = NotStr(''' + +''') +icon_arrow_right24_regular = NotStr(''' + +''') +icon_select_object_skew24_regular = NotStr(''' + +''') +icon_vehicle_bicycle16_filled = NotStr(''' + +''') +icon_video_person_sparkle16_regular = NotStr(''' + +''') +icon_chat_multiple20_filled = NotStr(''' + +''') +icon_emoji_angry24_regular = NotStr(''' + +''') +icon_mail_inbox16_filled = NotStr(''' + +''') +icon_airplane_take_off16_regular = NotStr(''' + +''') +icon_save_search20_filled = NotStr(''' + +''') +icon_important12_filled = NotStr(''' + +''') +icon_table_stack_below28_regular = NotStr(''' + +''') +icon_trophy_off28_regular = NotStr(''' + +''') +icon_phone_arrow_right20_regular = NotStr(''' + +''') +icon_view_desktop_mobile24_regular = NotStr(''' + +''') +icon_stop24_regular = NotStr(''' + +''') +icon_drink_coffee20_filled = NotStr(''' + +''') +icon_signature16_regular = NotStr(''' + +''') +icon_emoji_sad24_filled = NotStr(''' + +''') +icon_home_checkmark20_regular = NotStr(''' + +''') +icon_people_checkmark20_filled = NotStr(''' + +''') +icon_document_sync20_filled = NotStr(''' + +''') +icon_arrow_reply_all48_filled = NotStr(''' + +''') +icon_arrow_up20_filled = NotStr(''' + +''') +icon_weather_hail_night24_regular = NotStr(''' + +''') +icon_group_list24_regular = NotStr(''' + +''') +icon_text_indent_increase_ltr24_filled = NotStr(''' + +''') +icon_number_symbol28_regular = NotStr(''' + +''') +icon_alert16_regular = NotStr(''' + +''') +icon_call_forward48_filled = NotStr(''' + +''') +icon_table_cells_split16_filled = NotStr(''' + +''') +icon_conference_room28_regular = NotStr(''' + +''') +icon_arrow_forward_down_lightning20_filled = NotStr(''' + +''') +icon_people28_filled = NotStr(''' + +''') +icon_comment_multiple_link16_filled = NotStr(''' + +''') +icon_data_whisker20_filled = NotStr(''' + +''') +icon_more_vertical20_regular = NotStr(''' + +''') +icon_comment_error16_regular = NotStr(''' + +''') +icon_scale_fit20_regular = NotStr(''' + +''') +icon_reading_list24_filled = NotStr(''' + +''') +icon_decimal_arrow_right24_filled = NotStr(''' + +''') +icon_chat_bubbles_question20_filled = NotStr(''' + +''') +icon_star_off16_filled = NotStr(''' + +''') +icon_contract_down_left20_regular = NotStr(''' + +''') +icon_backpack_add48_filled = NotStr(''' + +''') +icon_my_location24_filled = NotStr(''' + +''') +icon_cloud_off16_filled = NotStr(''' + +''') +icon_arrow_step_over20_filled = NotStr(''' + +''') +icon_link_edit16_filled = NotStr(''' + +''') +icon_pause16_regular = NotStr(''' + +''') +icon_organization48_filled = NotStr(''' + +''') +icon_door_arrow_right20_filled = NotStr(''' + +''') +icon_square_hint_apps24_filled = NotStr(''' + +''') +icon_call_forward20_filled = NotStr(''' + +''') +icon_mention20_regular = NotStr(''' + +''') +icon_note_edit20_regular = NotStr(''' + +''') +icon_flip_vertical24_filled = NotStr(''' + +''') +icon_approvals_app20_regular = NotStr(''' + +''') +icon_arrow_sort_down16_regular = NotStr(''' + +''') +icon_video_security24_filled = NotStr(''' + +''') +icon_building_government20_filled = NotStr(''' + +''') +icon_arrow_reset24_regular = NotStr(''' + +''') +icon_person_arrow_left20_filled = NotStr(''' + +''') +icon_dismiss_circle28_filled = NotStr(''' + +''') +icon_arrow_rotate_clockwise16_regular = NotStr(''' + +''') +icon_bookmark_off20_filled = NotStr(''' + +''') +icon_data_whisker20_regular = NotStr(''' + +''') +icon_line_horizontal120_filled = NotStr(''' + +''') +icon_calendar_multiple16_filled = NotStr(''' + +''') +icon_store_microsoft20_regular = NotStr(''' + +''') +icon_tag_circle20_filled = NotStr(''' + +''') +icon_book_clock20_filled = NotStr(''' + +''') +icon_certificate24_regular = NotStr(''' + +''') +icon_resize_video24_regular = NotStr(''' + +''') +icon_receipt_money24_filled = NotStr(''' + +''') +icon_shapes16_filled = NotStr(''' + +''') +icon_cloud_off48_filled = NotStr(''' + +''') +icon_cloud20_regular = NotStr(''' + +''') +icon_chevron_right16_filled = NotStr(''' + +''') +icon_chat32_regular = NotStr(''' + +''') +icon_record16_regular = NotStr(''' + +''') +icon_phone_arrow_right24_regular = NotStr(''' + +''') +icon_arrow_sort_up20_regular = NotStr(''' + +''') +icon_hat_graduation24_filled = NotStr(''' + +''') +icon_share_screen_person16_regular = NotStr(''' + +''') +icon_document_page_bottom_center20_regular = NotStr(''' + +''') +icon_folder_sync20_filled = NotStr(''' + +''') +icon_mic32_filled = NotStr(''' + +''') +icon_mail_arrow_forward16_regular = NotStr(''' + +''') +icon_edit24_filled = NotStr(''' + +''') +icon_text_grammar_error20_filled = NotStr(''' + +''') +icon_arrow_hook_down_right24_filled = NotStr(''' + +''') +icon_desktop_edit16_filled = NotStr(''' + +''') +icon_document_header_arrow_down16_regular = NotStr(''' + +''') +icon_meet_now24_regular = NotStr(''' + +''') +icon_temperature20_filled = NotStr(''' + +''') +icon_arrow_circle_up28_regular = NotStr(''' + +''') +icon_text_field20_regular = NotStr(''' + +''') +icon_folder_mail20_filled = NotStr(''' + +''') +icon_equal_circle24_regular = NotStr(''' + +''') +icon_globe_clock16_regular = NotStr(''' + +''') +icon_calendar_arrow_right24_regular = NotStr(''' + +''') +icon_skip_forward1024_filled = NotStr(''' + +''') +icon_flashlight_off24_filled = NotStr(''' + +''') +icon_cube_sync24_regular = NotStr(''' + +''') +icon_desktop_speaker_off24_filled = NotStr(''' + +''') +icon_globe_location24_regular = NotStr(''' + +''') +icon_my_location16_filled = NotStr(''' + +''') +icon_document28_filled = NotStr(''' + + + + +''') +icon_person_tag20_regular = NotStr(''' + +''') +icon_map20_filled = NotStr(''' + +''') +icon_call48_regular = NotStr(''' + +''') +icon_brain_circuit24_filled = NotStr(''' + +''') +icon_desktop_pulse48_filled = NotStr(''' + +''') +icon_document_text24_filled = NotStr(''' + +''') +icon_chevron_circle_right48_filled = NotStr(''' + +''') +icon_key16_regular = NotStr(''' + + + + +''') +icon_text_add_t24_regular = NotStr(''' + +''') +icon_cloud_checkmark16_filled = NotStr(''' + +''') +icon_calendar_error20_filled = NotStr(''' + +''') +icon_vehicle_truck_profile16_filled = NotStr(''' + +''') +icon_star_dismiss28_filled = NotStr(''' + +''') +icon_vehicle_truck24_regular = NotStr(''' + +''') +icon_beaker24_filled = NotStr(''' + +''') +icon_hand_right24_filled = NotStr(''' + +''') +icon_board16_filled = NotStr(''' + +''') +icon_scan_dash20_regular = NotStr(''' + +''') +icon_text_font_info24_regular = NotStr(''' + +''') +icon_arrow_minimize20_regular = NotStr(''' + +''') +icon_calendar_month24_regular = NotStr(''' + +''') +icon_building_bank28_filled = NotStr(''' + +''') +icon_lock_closed20_filled = NotStr(''' + +''') +icon_person532_filled = NotStr(''' + +''') +icon_chevron_up28_filled = NotStr(''' + +''') +icon_number_symbol_dismiss24_regular = NotStr(''' + +''') +icon_phone_shake24_filled = NotStr(''' + +''') +icon_cloud_arrow_up48_filled = NotStr(''' + +''') +icon_dual_screen_desktop24_filled = NotStr(''' + +''') +icon_drive_train24_filled = NotStr(''' + +''') +icon_toggle_right16_filled = NotStr(''' + +''') +icon_view_desktop24_filled = NotStr(''' + +''') +icon_folder_zip20_regular = NotStr(''' + +''') +icon_calendar_arrow_right20_filled = NotStr(''' + +''') +icon_class24_regular = NotStr(''' + +''') +icon_router24_regular = NotStr(''' + +''') +icon_chevron_left48_filled = NotStr(''' + +''') +icon_weather_hail_night48_regular = NotStr(''' + +''') +icon_apps_add_in24_filled = NotStr(''' + +''') +icon_usb_stick24_filled = NotStr(''' + +''') +icon_add12_filled = NotStr(''' + +''') +icon_mail_error24_filled = NotStr(''' + +''') +icon_lightbulb16_regular = NotStr(''' + +''') +icon_my_location12_filled = NotStr(''' + +''') +icon_border_outside_thick24_filled = NotStr(''' + +''') +icon_ticket_diagonal28_regular = NotStr(''' + +''') +icon_album20_regular = NotStr(''' + +''') +icon_font_decrease24_regular = NotStr(''' + +''') +icon_vehicle_car28_filled = NotStr(''' + +''') +icon_copy_select20_filled = NotStr(''' + +''') +icon_syringe24_regular = NotStr(''' + +''') +icon_eye_tracking24_filled = NotStr(''' + +''') +icon_comment_checkmark28_filled = NotStr(''' + +''') +icon_cloud_checkmark28_filled = NotStr(''' + +''') +icon_chat_help20_regular = NotStr(''' + +''') +icon_person_mail16_filled = NotStr(''' + +''') +icon_circle_line20_regular = NotStr(''' + +''') +icon_notebook_sync24_regular = NotStr(''' + +''') +icon_weather_duststorm20_regular = NotStr(''' + +''') +icon_book20_filled = NotStr(''' + +''') +icon_picture_in_picture_exit16_filled = NotStr(''' + +''') +icon_chevron_double_left16_filled = NotStr(''' + +''') +icon_document_arrow_left24_regular = NotStr(''' + +''') +icon_lock_shield24_regular = NotStr(''' + +''') +icon_laptop_dismiss20_filled = NotStr(''' + +''') +icon_people_community20_regular = NotStr(''' + +''') +icon_align_center_horizontal20_regular = NotStr(''' + +''') +icon_gift_card20_regular = NotStr(''' + +''') +icon_stack_arrow_forward20_regular = NotStr(''' + +''') +icon_clipboard_data_bar20_regular = NotStr(''' + +''') +icon_arrow_counterclockwise28_filled = NotStr(''' + +''') +icon_subtract_square24_filled = NotStr(''' + +''') +icon_prohibited16_regular = NotStr(''' + +''') +icon_document_pill24_filled = NotStr(''' + +''') +icon_emoji_meh24_regular = NotStr(''' + +''') +icon_ribbon_off24_filled = NotStr(''' + +''') +icon_emoji_multiple20_regular = NotStr(''' + +''') +icon_battery424_filled = NotStr(''' + +''') +icon_whiteboard24_regular = NotStr(''' + +''') +icon_collections24_regular = NotStr(''' + +''') +icon_ticket_diagonal20_regular = NotStr(''' + +''') +icon_call_forward48_regular = NotStr(''' + +''') +icon_presence_available12_filled = NotStr(''' + +''') +icon_print_add20_regular = NotStr(''' + +''') +icon_picture_in_picture24_filled = NotStr(''' + +''') +icon_text_sort_ascending16_filled = NotStr(''' + +''') +icon_cellular_off24_regular = NotStr(''' + +''') +icon_text_font20_regular = NotStr(''' + +''') +icon_folder_zip16_filled = NotStr(''' + +''') +icon_checkmark_circle20_regular = NotStr(''' + +''') +icon_shield16_regular = NotStr(''' + +''') +icon_people16_filled = NotStr(''' + +''') +icon_document_error24_filled = NotStr(''' + +''') +icon_voicemail_arrow_back16_filled = NotStr(''' + +''') +icon_image_multiple48_regular = NotStr(''' + +''') +icon_table20_filled = NotStr(''' + +''') +icon_wifi424_filled = NotStr(''' + +''') +icon_top_speed24_regular = NotStr(''' + +''') +icon_next48_filled = NotStr(''' + +''') +icon_receipt_cube20_filled = NotStr(''' + +''') +icon_checkmark16_filled = NotStr(''' + +''') +icon_border_top_bottom_double20_filled = NotStr(''' + +''') +icon_glance20_regular = NotStr(''' + +''') +icon_flash_checkmark28_filled = NotStr(''' + +''') +icon_paint_brush24_regular = NotStr(''' + +''') +icon_rename24_filled = NotStr(''' + +''') +icon_calendar_month20_regular = NotStr(''' + +''') +icon_document_edit24_filled = NotStr(''' + +''') +icon_currency_dollar_rupee16_regular = NotStr(''' + +''') +icon_table_move_below16_regular = NotStr(''' + +''') +icon_apps28_filled = NotStr(''' + +''') +icon_communication_person20_filled = NotStr(''' + +''') +icon_checkmark_underline_circle20_filled = NotStr(''' + +''') +icon_beach28_filled = NotStr(''' + +''') +icon_tag24_filled = NotStr(''' + +''') +icon_share_screen_person_overlay28_filled = NotStr(''' + +''') +icon_image_edit20_regular = NotStr(''' + +''') +icon_window_apps16_filled = NotStr(''' + +''') +icon_table_cell_edit24_regular = NotStr(''' + + + + +''') +icon_zoom_in16_regular = NotStr(''' + +''') +icon_keyboard_layout_split24_regular = NotStr(''' + +''') +icon_clipboard_paste16_regular = NotStr(''' + +''') +icon_text_add_space_before20_regular = NotStr(''' + +''') +icon_align_top28_regular = NotStr(''' + +''') +icon_clock_pause20_filled = NotStr(''' + +''') +icon_folder_zip20_filled = NotStr(''' + +''') +icon_video_clip_multiple24_filled = NotStr(''' + +''') +icon_replay20_regular = NotStr(''' + +''') +icon_calculator20_regular = NotStr(''' + +''') +icon_laptop16_filled = NotStr(''' + +''') +icon_folder16_filled = NotStr(''' + + + + +''') +icon_clipboard16_regular = NotStr(''' + +''') +icon_reading_list_add28_filled = NotStr(''' + +''') +icon_book_open_microphone28_regular = NotStr(''' + +''') +icon_book_open48_regular = NotStr(''' + +''') +icon_tasks_app28_filled = NotStr(''' + +''') +icon_expand_up_right28_regular = NotStr(''' + +''') +icon_align_right20_filled = NotStr(''' + +''') +icon_text_column_one_narrow24_regular = NotStr(''' + +''') +icon_device_meeting_room32_regular = NotStr(''' + +''') +icon_clipboard_paste16_filled = NotStr(''' + +''') +icon_tv_usb16_regular = NotStr(''' + +''') +icon_text_expand24_regular = NotStr(''' + +''') +icon_arrow_bidirectional_up_down24_regular = NotStr(''' + +''') +icon_open_folder20_filled = NotStr(''' + +''') +icon_channel_dismiss16_filled = NotStr(''' + +''') +icon_arrow_autofit_width_dotted24_regular = NotStr(''' + +''') +icon_caret_left16_filled = NotStr(''' + +''') +icon_speaker216_regular = NotStr(''' + +''') +icon_calendar_add24_regular = NotStr(''' + +''') +icon_text_edit_style24_regular = NotStr(''' + +''') +icon_mail_arrow_up24_regular = NotStr(''' + +''') +icon_contract_down_left28_filled = NotStr(''' + +''') +icon_play_circle20_filled = NotStr(''' + +''') +icon_play_circle16_regular = NotStr(''' + +''') +icon_share_screen_stop48_filled = NotStr(''' + +''') +icon_desktop_mac24_regular = NotStr(''' + +''') +icon_document_header_arrow_down20_regular = NotStr(''' + +''') +icon_checkmark_circle20_filled = NotStr(''' + +''') +icon_accessibility32_regular = NotStr(''' + +''') +icon_expand_up_left32_filled = NotStr(''' + +''') +icon_star16_filled = NotStr(''' + +''') +icon_chevron_circle_down20_regular = NotStr(''' + +''') +icon_comment_mention16_regular = NotStr(''' + +''') +icon_chevron_down20_filled = NotStr(''' + +''') +icon_building_factory28_filled = NotStr(''' + +''') +icon_shopping_bag_arrow_left20_regular = NotStr(''' + +''') +icon_trophy24_filled = NotStr(''' + +''') +icon_book_database24_filled = NotStr(''' + +''') +icon_data_scatter20_filled = NotStr(''' + +''') +icon_padding_right24_regular = NotStr(''' + +''') +icon_usb_plug20_regular = NotStr(''' + +''') +icon_closed_caption_off24_regular = NotStr(''' + +''') +icon_weather_snowflake48_regular = NotStr(''' + +''') +icon_shield_lock48_regular = NotStr(''' + +''') +icon_signature28_filled = NotStr(''' + +''') +icon_molecule20_filled = NotStr(''' + +''') +icon_arrow_import24_filled = NotStr(''' + +''') +icon_dismiss32_filled = NotStr(''' + +''') +icon_shopping_bag_dismiss24_filled = NotStr(''' + +''') +icon_info28_regular = NotStr(''' + +''') +icon_document_save20_regular = NotStr(''' + +''') +icon_lock_closed12_regular = NotStr(''' + +''') +icon_split_vertical16_regular = NotStr(''' + +''') +icon_heart28_regular = NotStr(''' + +''') +icon_timeline24_filled = NotStr(''' + +''') +icon_folder_arrow_right16_regular = NotStr(''' + +''') +icon_eye_tracking24_regular = NotStr(''' + +''') +icon_desktop_pulse20_filled = NotStr(''' + +''') +icon_immersive_reader20_filled = NotStr(''' + +''') +icon_arrow_turn_right24_regular = NotStr(''' + +''') +icon_arrow_down_left48_filled = NotStr(''' + +''') +icon_contact_card_ribbon16_filled = NotStr(''' + + + + + + +''') +icon_table_switch16_regular = NotStr(''' + +''') +icon_split_horizontal32_filled = NotStr(''' + +''') +icon_weather_thunderstorm20_regular = NotStr(''' + +''') +icon_window_wrench16_regular = NotStr(''' + +''') +icon_data_waterfall24_filled = NotStr(''' + +''') +icon_document_copy20_filled = NotStr(''' + +''') +icon_shield_dismiss20_filled = NotStr(''' + +''') +icon_status16_regular = NotStr(''' + +''') +icon_folder_add20_filled = NotStr(''' + +''') +icon_cellular_data224_filled = NotStr(''' + +''') +icon_open_off28_filled = NotStr(''' + +''') +icon_airplane20_filled = NotStr(''' + +''') +icon_video_clip16_filled = NotStr(''' + +''') +icon_subtract_square24_regular = NotStr(''' + +''') +icon_call_inbound28_filled = NotStr(''' + +''') +icon_star_emphasis24_filled = NotStr(''' + +''') +icon_table_delete_row28_regular = NotStr(''' + +''') +icon_people_call20_regular = NotStr(''' + +''') +icon_dual_screen_lock24_regular = NotStr(''' + +''') +icon_document_footer20_regular = NotStr(''' + +''') +icon_autosum20_regular = NotStr(''' + +''') +icon_clock_toolbox20_filled = NotStr(''' + +''') +icon_cloud_edit20_regular = NotStr(''' + +''') +icon_channel20_filled = NotStr(''' + +''') +icon_calendar_add20_regular = NotStr(''' + +''') +icon_music_note220_filled = NotStr(''' + +''') +icon_re_order24_regular = NotStr(''' + +''') +icon_table_cells_split28_filled = NotStr(''' + +''') +icon_person_feedback20_regular = NotStr(''' + +''') +icon_braces20_regular = NotStr(''' + +''') +icon_contract_down_left16_regular = NotStr(''' + +''') +icon_calendar_day28_regular = NotStr(''' + +''') +icon_comment_arrow_left28_filled = NotStr(''' + +''') +icon_color_background24_filled = NotStr(''' + +''') +icon_book_letter24_regular = NotStr(''' + +''') +icon_chevron_circle_right32_regular = NotStr(''' + +''') +icon_expand_up_left28_regular = NotStr(''' + +''') +icon_link_square24_regular = NotStr(''' + +''') +icon_drafts20_regular = NotStr(''' + +''') +icon_headset16_regular = NotStr(''' + +''') +icon_person632_filled = NotStr(''' + +''') +icon_bookmark32_filled = NotStr(''' + +''') +icon_copy_arrow_right24_regular = NotStr(''' + +''') +icon_position_backward20_regular = NotStr(''' + +''') +icon_credit_card_person24_regular = NotStr(''' + +''') +icon_calendar_work_week24_regular = NotStr(''' + +''') +icon_window_ad_person20_filled = NotStr(''' + +''') +icon_qr_code20_filled = NotStr(''' + +''') +icon_square_hint_sparkles24_regular = NotStr(''' + +''') +icon_arrow_step_in_right16_regular = NotStr(''' + +''') +icon_pause12_regular = NotStr(''' + +''') +icon_road_cone20_filled = NotStr(''' + +''') +icon_box_arrow_up24_regular = NotStr(''' + +''') +icon_drink_beer24_filled = NotStr(''' + +''') +icon_food_grains24_regular = NotStr(''' + +''') +icon_channel_subtract28_filled = NotStr(''' + +''') +icon_arrow_hook_down_right28_filled = NotStr(''' + +''') +icon_cursor_hover24_regular = NotStr(''' + +''') +icon_color_fill16_regular = NotStr(''' + +''') +icon_diversity24_regular = NotStr(''' + +''') +icon_prohibited28_regular = NotStr(''' + +''') +icon_multiplier1_x20_filled = NotStr(''' + +''') +icon_mobile_optimized24_regular = NotStr(''' + +''') +icon_cursor_hover_off20_regular = NotStr(''' + +''') +icon_table_dismiss24_regular = NotStr(''' + +''') +icon_tv20_regular = NotStr(''' + +''') +icon_document_bullet_list24_regular = NotStr(''' + +''') +icon_text_number_list_ltr16_filled = NotStr(''' + +''') +icon_dismiss_circle28_regular = NotStr(''' + +''') +icon_phone_span_out20_filled = NotStr(''' + +''') +icon_pause_off16_regular = NotStr(''' + +''') +icon_people32_filled = NotStr(''' + +''') +icon_checkbox_warning20_filled = NotStr(''' + +''') +icon_presence_away12_filled = NotStr(''' + +''') +icon_desktop_speaker20_filled = NotStr(''' + +''') +icon_puzzle_cube28_regular = NotStr(''' + +''') +icon_table_move_below24_filled = NotStr(''' + +''') +icon_table_resize_row20_filled = NotStr(''' + +''') +icon_eraser24_regular = NotStr(''' + +''') +icon_re_order_dots_vertical20_regular = NotStr(''' + +''') +icon_mail_inbox_checkmark28_regular = NotStr(''' + +''') +icon_board_split28_regular = NotStr(''' + +''') +icon_square_add16_regular = NotStr(''' + +''') +icon_history16_filled = NotStr(''' + +''') +icon_search_visual20_filled = NotStr(''' + +''') +icon_arrow_upload24_regular = NotStr(''' + +''') +icon_square_hint_sparkles20_filled = NotStr(''' + +''') +icon_note16_regular = NotStr(''' + +''') +icon_stack16_filled = NotStr(''' + +''') +icon_arrow_down12_filled = NotStr(''' + +''') +icon_image16_filled = NotStr(''' + +''') +icon_circle_half_fill16_regular = NotStr(''' + +''') +icon_drink_coffee16_regular = NotStr(''' + +''') +icon_heart32_regular = NotStr(''' + +''') +icon_calendar_settings20_regular = NotStr(''' + +''') +icon_grid24_regular = NotStr(''' + +''') +icon_vehicle_car20_filled = NotStr(''' + +''') +icon_cloud_arrow_down48_filled = NotStr(''' + +''') +icon_arrow_minimize_vertical24_filled = NotStr(''' + +''') +icon_location16_filled = NotStr(''' + +''') +icon_data_area24_filled = NotStr(''' + +''') +icon_panel_left20_regular = NotStr(''' + +''') +icon_weather_rain_snow48_regular = NotStr(''' + +''') +icon_vehicle_car24_filled = NotStr(''' + +''') +icon_text_align_left16_filled = NotStr(''' + +''') +icon_share_screen_person_overlay_inside16_filled = NotStr(''' + +''') +icon_cloud_words16_filled = NotStr(''' + +''') +icon_globe_shield20_filled = NotStr(''' + +''') +icon_delete28_filled = NotStr(''' + +''') +icon_flowchart_circle20_filled = NotStr(''' + +''') +icon_record_stop48_filled = NotStr(''' + +''') +icon_data_treemap20_filled = NotStr(''' + +''') +icon_surface_hub20_regular = NotStr(''' + +''') +icon_text_color20_regular = NotStr(''' + +''') +icon_panel_left_expand16_regular = NotStr(''' + + + + +''') +icon_shield_lock16_filled = NotStr(''' + +''') +icon_music_note224_regular = NotStr(''' + +''') +icon_textbox_align_middle24_regular = NotStr(''' + +''') +icon_weather_cloudy48_regular = NotStr(''' + +''') +icon_calendar_toolbox20_filled = NotStr(''' + +''') +icon_comment_add28_regular = NotStr(''' + +''') +icon_box_edit24_regular = NotStr(''' + +''') +icon_window_wrench28_filled = NotStr(''' + +''') +icon_text_column_two_left24_filled = NotStr(''' + +''') +icon_text_align_justify20_regular = NotStr(''' + +''') +icon_cursor_hover28_regular = NotStr(''' + +''') +icon_phone_vibrate24_filled = NotStr(''' + +''') +icon_library28_regular = NotStr(''' + +''') +icon_animal_rabbit24_regular = NotStr(''' + +''') +icon_document_checkmark24_regular = NotStr(''' + + + + +''') +icon_archive48_regular = NotStr(''' + +''') +icon_person_chat16_filled = NotStr(''' + +''') +icon_checkbox_checked16_regular = NotStr(''' + +''') +icon_location_arrow_up48_filled = NotStr(''' + +''') +icon_arrow_autofit_height24_regular = NotStr(''' + +''') +icon_sticker_add20_regular = NotStr(''' + +''') +icon_document_error20_filled = NotStr(''' + +''') +icon_text_bullet_list_tree16_regular = NotStr(''' + +''') +icon_window_wrench24_filled = NotStr(''' + +''') +icon_channel_subtract16_filled = NotStr(''' + +''') +icon_window_wrench16_filled = NotStr(''' + +''') +icon_comment_multiple_link32_regular = NotStr(''' + +''') +icon_dock24_regular = NotStr(''' + +''') +icon_highlight_link20_filled = NotStr(''' + +''') +icon_dismiss20_regular = NotStr(''' + +''') +icon_square_hint20_regular = NotStr(''' + +''') +icon_arrow_rotate_clockwise24_regular = NotStr(''' + +''') +icon_circle_off20_filled = NotStr(''' + +''') +icon_video_clip_multiple16_filled = NotStr(''' + +''') +icon_design_ideas16_filled = NotStr(''' + +''') +icon_table_cells_merge28_filled = NotStr(''' + +''') +icon_document_queue_multiple20_regular = NotStr(''' + +''') +icon_vehicle_bicycle24_regular = NotStr(''' + +''') +icon_arrow_hook_down_right16_regular = NotStr(''' + +''') +icon_shield_lock16_regular = NotStr(''' + +''') +icon_copy_add24_filled = NotStr(''' + +''') +icon_number_row24_regular = NotStr(''' + +''') +icon_home12_filled = NotStr(''' + +''') +icon_pulse32_filled = NotStr(''' + +''') +icon_desktop_pulse24_filled = NotStr(''' + +''') +icon_cursor_click24_regular = NotStr(''' + +''') +icon_f_stop28_regular = NotStr(''' + +''') +icon_caret_right24_filled = NotStr(''' + +''') +icon_list24_regular = NotStr(''' + +''') +icon_re_order_dots_horizontal16_filled = NotStr(''' + +''') +icon_document_multiple_percent24_regular = NotStr(''' + +''') +icon_vehicle_bus20_filled = NotStr(''' + +''') +icon_settings_chat24_regular = NotStr(''' + +''') +icon_gift_card_add24_filled = NotStr(''' + +''') +icon_share_screen_person_overlay16_filled = NotStr(''' + +''') +icon_contact_card_group24_filled = NotStr(''' + +''') +icon_document_ribbon28_filled = NotStr(''' + +''') +icon_tv24_filled = NotStr(''' + +''') +icon_hand_left24_regular = NotStr(''' + +''') +icon_document_text_link24_filled = NotStr(''' + +''') +icon_phone_speaker24_regular = NotStr(''' + +''') +icon_arrow_trending_text24_regular = NotStr(''' + +''') +icon_arrow_counterclockwise16_filled = NotStr(''' + +''') +icon_arrow_maximize_vertical20_regular = NotStr(''' + +''') +icon_chat_multiple24_regular = NotStr(''' + +''') +icon_chevron_down28_regular = NotStr(''' + +''') +icon_square_arrow_forward32_regular = NotStr(''' + +''') +icon_line24_filled = NotStr(''' + +''') +icon_channel_alert24_filled = NotStr(''' + +''') +icon_square_add16_filled = NotStr(''' + +''') +icon_premium_person20_filled = NotStr(''' + +''') +icon_calendar_empty28_regular = NotStr(''' + +''') +icon_caret_left20_regular = NotStr(''' + +''') +icon_password16_filled = NotStr(''' + +''') +icon_note48_filled = NotStr(''' + +''') +icon_resize_large20_regular = NotStr(''' + +''') +icon_stack_star20_filled = NotStr(''' + +''') +icon_rocket24_regular = NotStr(''' + +''') +icon_comment_checkmark48_filled = NotStr(''' + +''') +icon_target_edit24_regular = NotStr(''' + +''') +icon_attach20_regular = NotStr(''' + +''') +icon_folder_open16_filled = NotStr(''' + +''') +icon_sign_out24_filled = NotStr(''' + +''') +icon_table_stack_below16_filled = NotStr(''' + +''') +icon_real_estate24_regular = NotStr(''' + +''') +icon_circle_small24_filled = NotStr(''' + +''') +icon_task_list_square_add20_regular = NotStr(''' + +''') +icon_airplane24_regular = NotStr(''' + +''') +icon_diamond32_filled = NotStr(''' + +''') +icon_engine24_filled = NotStr(''' + +''') +icon_scale_fill24_filled = NotStr(''' + +''') +icon_phone_arrow_right24_filled = NotStr(''' + +''') +icon_share_screen_person20_regular = NotStr(''' + +''') +icon_food_cake20_regular = NotStr(''' + +''') +icon_sanitize20_regular = NotStr(''' + +''') +icon_search24_regular = NotStr(''' + +''') +icon_scan_dash28_regular = NotStr(''' + +''') +icon_sanitize24_filled = NotStr(''' + +''') +icon_emoji48_regular = NotStr(''' + +''') +icon_arrow_next24_regular = NotStr(''' + +''') +icon_comment_edit20_regular = NotStr(''' + +''') +icon_bookmark_search24_regular = NotStr(''' + +''') +icon_calendar_mail16_filled = NotStr(''' + +''') +icon_image_alt_text24_regular = NotStr(''' + +''') +icon_rocket20_filled = NotStr(''' + +''') +icon_clear_formatting24_regular = NotStr(''' + +''') +icon_protocol_handler20_regular = NotStr(''' + +''') +icon_calendar_today16_filled = NotStr(''' + +''') +icon_scan_thumb_up_off48_filled = NotStr(''' + +''') +icon_hand_draw28_filled = NotStr(''' + +''') +icon_battery824_regular = NotStr(''' + +''') +icon_building_bank24_regular = NotStr(''' + +''') +icon_call_forward20_regular = NotStr(''' + +''') +icon_line_horizontal320_filled = NotStr(''' + +''') +icon_people_settings20_regular = NotStr(''' + +''') +icon_position_forward24_regular = NotStr(''' + +''') +icon_globe_search24_regular = NotStr(''' + +''') +icon_arrow_trending_text20_filled = NotStr(''' + +''') +icon_guest_add24_regular = NotStr(''' + +''') +icon_task_list_add24_filled = NotStr(''' + +''') +icon_arrow_split20_filled = NotStr(''' + +''') +icon_gantt_chart24_filled = NotStr(''' + +''') +icon_games16_regular = NotStr(''' + +''') +icon_crop_interim24_filled = NotStr(''' + +''') +icon_album24_regular = NotStr(''' + +''') +icon_apps16_regular = NotStr(''' + +''') +icon_number_symbol24_filled = NotStr(''' + +''') +icon_call_prohibited24_regular = NotStr(''' + +''') +icon_emoji_add24_regular = NotStr(''' + +''') +icon_phone_checkmark16_regular = NotStr(''' + +''') +icon_slide_multiple_search24_regular = NotStr(''' + +''') +icon_animal_rabbit24_filled = NotStr(''' + +''') +icon_backpack20_regular = NotStr(''' + +''') +icon_crop20_filled = NotStr(''' + +''') +icon_text_bullet_list_ltr20_filled = NotStr(''' + +''') +icon_glasses16_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_night48_regular = NotStr(''' + +''') +icon_reading_list16_filled = NotStr(''' + +''') +icon_fax16_regular = NotStr(''' + +''') +icon_previous48_filled = NotStr(''' + +''') +icon_speaker_usb24_regular = NotStr(''' + +''') +icon_dual_screen_tablet24_regular = NotStr(''' + +''') +icon_camera_switch20_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_clockwise20_filled = NotStr(''' + +''') +icon_book_number24_filled = NotStr(''' + +''') +icon_star_line_horizontal320_regular = NotStr(''' + +''') +icon_document_ribbon32_filled = NotStr(''' + +''') +icon_arrow_sync_checkmark24_regular = NotStr(''' + +''') +icon_calendar_question_mark16_filled = NotStr(''' + +''') +icon_checkmark_lock16_filled = NotStr(''' + +''') +icon_mic_off20_filled = NotStr(''' + +''') +icon_arrow_counterclockwise_dashes24_regular = NotStr(''' + +''') +icon_shape_union24_filled = NotStr(''' + +''') +icon_text_t48_regular = NotStr(''' + +''') +icon_text_proofing_tools20_regular = NotStr(''' + + + + + + +''') +icon_compass_northwest24_regular = NotStr(''' + +''') +icon_text_bullet_list_add20_regular = NotStr(''' + +''') +icon_thumb_dislike24_filled = NotStr(''' + +''') +icon_text_paragraph_direction24_filled = NotStr(''' + +''') +icon_video_person_call24_regular = NotStr(''' + +''') +icon_document_css20_filled = NotStr(''' + +''') +icon_text_bullet_list_square_warning16_filled = NotStr(''' + +''') +icon_document_heart20_filled = NotStr(''' + +''') +icon_calendar_phone20_filled = NotStr(''' + +''') +icon_re_order_dots_horizontal16_regular = NotStr(''' + +''') +icon_table_resize_column24_filled = NotStr(''' + +''') +icon_directions24_regular = NotStr(''' + +''') +icon_line_dashes24_filled = NotStr(''' + +''') +icon_clipboard_task_list_rtl20_regular = NotStr(''' + +''') +icon_skip_forward1032_regular = NotStr(''' + +''') +icon_incognito24_regular = NotStr(''' + +''') +icon_box_checkmark20_regular = NotStr(''' + +''') +icon_search12_regular = NotStr(''' + +''') +icon_comment_mention20_filled = NotStr(''' + +''') +icon_emoji_sad_slight24_filled = NotStr(''' + +''') +icon_immersive_reader28_filled = NotStr(''' + +''') +icon_vehicle_car_collision28_filled = NotStr(''' + +''') +icon_task_list_rtl24_regular = NotStr(''' + +''') +icon_person_accounts24_regular = NotStr(''' + +''') +icon_tablet16_filled = NotStr(''' + +''') +icon_text_underline24_filled = NotStr(''' + +''') +icon_window32_filled = NotStr(''' + +''') +icon_eraser_segment24_regular = NotStr(''' + +''') +icon_calendar_phone20_regular = NotStr(''' + +''') +icon_document_question_mark16_filled = NotStr(''' + +''') +icon_branch_fork20_filled = NotStr(''' + +''') +icon_thumb_dislike20_regular = NotStr(''' + +''') +icon_arrow_circle_up_left20_regular = NotStr(''' + +''') +icon_chevron_right20_filled = NotStr(''' + +''') +icon_rotate_left24_regular = NotStr(''' + +''') +icon_pulse24_filled = NotStr(''' + +''') +icon_shield_dismiss24_regular = NotStr(''' + +''') +icon_weather_sunny24_regular = NotStr(''' + +''') +icon_credit_card_person24_filled = NotStr(''' + +''') +icon_options24_regular = NotStr(''' + +''') +icon_currency_dollar_rupee20_regular = NotStr(''' + +''') +icon_tag_off20_filled = NotStr(''' + +''') +icon_airplane_take_off20_filled = NotStr(''' + +''') +icon_call_prohibited20_filled = NotStr(''' + +''') +icon_subtract_circle_arrow_back16_filled = NotStr(''' + +''') +icon_scan_dash32_filled = NotStr(''' + +''') +icon_text_indent_decrease_rtl16_filled = NotStr(''' + +''') +icon_play12_filled = NotStr(''' + +''') +icon_channel_alert48_regular = NotStr(''' + +''') +icon_presence_dnd12_filled = NotStr(''' + +''') +icon_video_off20_filled = NotStr(''' + +''') +icon_column_triple_edit24_filled = NotStr(''' + +''') +icon_location_off20_regular = NotStr(''' + +''') +icon_clipboard_letter20_filled = NotStr(''' + +''') +icon_dialpad20_filled = NotStr(''' + +''') +icon_text_direction_horizontal_right24_filled = NotStr(''' + +''') +icon_video_person_call16_regular = NotStr(''' + +''') +icon_server20_regular = NotStr(''' + +''') +icon_crop_interim_off24_filled = NotStr(''' + +''') +icon_archive_multiple24_filled = NotStr(''' + +''') +icon_top_speed20_filled = NotStr(''' + +''') +icon_play20_regular = NotStr(''' + +''') +icon_key32_regular = NotStr(''' + + + + +''') +icon_puzzle_piece24_regular = NotStr(''' + +''') +icon_receipt_bag24_filled = NotStr(''' + +''') +icon_leaf_one16_filled = NotStr(''' + +''') +icon_building_home16_regular = NotStr(''' + +''') +icon_heart_circle16_filled = NotStr(''' + +''') +icon_scan_dash48_regular = NotStr(''' + +''') +icon_pin48_regular = NotStr(''' + +''') +icon_comment_dismiss20_filled = NotStr(''' + +''') +icon_receipt_add24_regular = NotStr(''' + +''') +icon_share_close_tray24_regular = NotStr(''' + +''') +icon_globe_clock24_filled = NotStr(''' + +''') +icon_draw_image20_regular = NotStr(''' + +''') +icon_chevron_double_up20_regular = NotStr(''' + +''') +icon_ios_arrow_ltr24_filled = NotStr(''' + +''') +icon_password16_regular = NotStr(''' + +''') +icon_more_vertical32_regular = NotStr(''' + +''') +icon_calendar_person24_filled = NotStr(''' + +''') +icon_book_question_mark24_filled = NotStr(''' + +''') +icon_table_freeze_column20_filled = NotStr(''' + +''') +icon_arrow_autofit_width_dotted20_filled = NotStr(''' + +''') +icon_divider_tall24_regular = NotStr(''' + +''') +icon_phone_laptop32_regular = NotStr(''' + +''') +icon_table_settings20_filled = NotStr(''' + +''') +icon_chevron_circle_down32_filled = NotStr(''' + +''') +icon_flip_horizontal28_regular = NotStr(''' + +''') +icon_calculator_arrow_clockwise24_filled = NotStr(''' + +''') +icon_tab_desktop_bottom20_filled = NotStr(''' + +''') +icon_textbox_align_top20_regular = NotStr(''' + +''') +icon_music_note120_regular = NotStr(''' + +''') +icon_add_subtract_circle24_filled = NotStr(''' + +''') +icon_document_page_top_right24_regular = NotStr(''' + +''') +icon_folder_mail16_regular = NotStr(''' + +''') +icon_people_swap16_regular = NotStr(''' + +''') +icon_arrow_square_down24_regular = NotStr(''' + +''') +icon_draw_image20_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_night48_filled = NotStr(''' + +''') +icon_cloud24_filled = NotStr(''' + +''') +icon_text_indent_decrease_rtl24_regular = NotStr(''' + +''') +icon_weather_snowflake20_regular = NotStr(''' + +''') +icon_arrow_redo32_filled = NotStr(''' + +''') +icon_document_header_footer16_regular = NotStr(''' + +''') +icon_math_format_linear24_filled = NotStr(''' + +''') +icon_prohibited_multiple16_regular = NotStr(''' + +''') +icon_book_search20_regular = NotStr(''' + +''') +icon_cart24_regular = NotStr(''' + +''') +icon_location_add24_filled = NotStr(''' + +''') +icon_arrow_circle_up_left20_filled = NotStr(''' + +''') +icon_arrow_previous24_filled = NotStr(''' + +''') +icon_phone_eraser16_regular = NotStr(''' + +''') +icon_slide_search24_regular = NotStr(''' + +''') +icon_ticket_diagonal20_filled = NotStr(''' + +''') +icon_spacebar24_regular = NotStr(''' + +''') +icon_globe_search20_regular = NotStr(''' + +''') +icon_pair24_filled = NotStr(''' + +''') +icon_open_folder28_regular = NotStr(''' + +''') +icon_text_direction_rotate270_right20_regular = NotStr(''' + +''') +icon_chat24_filled = NotStr(''' + +''') +icon_print24_regular = NotStr(''' + +''') +icon_dual_screen_span24_filled = NotStr(''' + +''') +icon_arrow_circle_left48_filled = NotStr(''' + +''') +icon_text_case_lowercase16_regular = NotStr(''' + +''') +icon_font_space_tracking_in20_regular = NotStr(''' + +''') +icon_drawer_subtract24_filled = NotStr(''' + +''') +icon_chat_arrow_double_back16_filled = NotStr(''' + +''') +icon_people_edit20_regular = NotStr(''' + +''') +icon_speaker128_filled = NotStr(''' + +''') +icon_arrow_forward16_regular = NotStr(''' + +''') +icon_document_table_cube20_filled = NotStr(''' + +''') +icon_picture_in_picture16_filled = NotStr(''' + +''') +icon_note24_regular = NotStr(''' + +''') +icon_globe_star20_regular = NotStr(''' + +''') +icon_tent24_filled = NotStr(''' + +''') +icon_cellular_data220_filled = NotStr(''' + +''') +icon_image48_regular = NotStr(''' + +''') +icon_thinking20_filled = NotStr(''' + +''') +icon_board28_filled = NotStr(''' + +''') +icon_guitar16_filled = NotStr(''' + +''') +icon_folder_swap20_filled = NotStr(''' + +''') +icon_battery220_regular = NotStr(''' + +''') +icon_document_prohibited24_regular = NotStr(''' + +''') +icon_shield_keyhole24_filled = NotStr(''' + +''') +icon_textbox_align_top20_filled = NotStr(''' + +''') +icon_add_circle24_filled = NotStr(''' + +''') +icon_picture_in_picture20_filled = NotStr(''' + +''') +icon_text_bullet_list_square_warning20_regular = NotStr(''' + +''') +icon_book_clock24_regular = NotStr(''' + +''') +icon_more_horizontal32_filled = NotStr(''' + +''') +icon_align_space_evenly_horizontal20_filled = NotStr(''' + + + + + +''') +icon_document_page_bottom_right20_filled = NotStr(''' + +''') +icon_glasses28_filled = NotStr(''' + +''') +icon_flash20_filled = NotStr(''' + +''') +icon_map_drive20_regular = NotStr(''' + +''') +icon_book_open16_regular = NotStr(''' + +''') +icon_phone_update_checkmark20_regular = NotStr(''' + +''') +icon_flip_horizontal48_regular = NotStr(''' + +''') +icon_sanitize20_filled = NotStr(''' + +''') +icon_broom24_filled = NotStr(''' + +''') +icon_data_waterfall20_regular = NotStr(''' + +''') +icon_calendar_agenda24_regular = NotStr(''' + +''') +icon_book_information24_regular = NotStr(''' + +''') +icon_math_formula24_filled = NotStr(''' + +''') +icon_fast_forward28_regular = NotStr(''' + +''') +icon_person_lock24_filled = NotStr(''' + +''') +icon_city20_regular = NotStr(''' + +''') +icon_organization28_regular = NotStr(''' + +''') +icon_comment_error20_filled = NotStr(''' + +''') +icon_notepad_person24_regular = NotStr(''' + +''') +icon_text_grammar_arrow_right24_regular = NotStr(''' + +''') +icon_align_top48_filled = NotStr(''' + +''') +icon_table_switch24_regular = NotStr(''' + +''') +icon_cloud_flow24_regular = NotStr(''' + +''') +icon_panel_bottom20_regular = NotStr(''' + +''') +icon_document_landscape_split20_filled = NotStr(''' + +''') +icon_folder_add24_regular = NotStr(''' + +''') +icon_mail_settings16_filled = NotStr(''' + +''') +icon_arrow_right12_filled = NotStr(''' + +''') +icon_meet_now16_filled = NotStr(''' + +''') +icon_people_prohibited24_filled = NotStr(''' + +''') +icon_people_community16_regular = NotStr(''' + +''') +icon_scan_dash32_regular = NotStr(''' + +''') +icon_presenter_off24_filled = NotStr(''' + +''') +icon_star_dismiss24_regular = NotStr(''' + +''') +icon_contact_card_group28_filled = NotStr(''' + +''') +icon_diagram20_regular = NotStr(''' + +''') +icon_insert20_regular = NotStr(''' + +''') +icon_directions16_filled = NotStr(''' + +''') +icon_arrow_collapse_all24_filled = NotStr(''' + +''') +icon_cursor_click20_filled = NotStr(''' + +''') +icon_fluid24_filled = NotStr(''' + +''') +icon_map20_regular = NotStr(''' + +''') +icon_thumb_like28_regular = NotStr(''' + +''') +icon_window_apps20_regular = NotStr(''' + +''') +icon_vehicle_bus16_filled = NotStr(''' + +''') +icon_skip_back1020_regular = NotStr(''' + +''') +icon_meet_now28_filled = NotStr(''' + +''') +icon_align_center_horizontal16_regular = NotStr(''' + +''') +icon_border_right24_regular = NotStr(''' + +''') +icon_text_bullet_list_rtl24_regular = NotStr(''' + +''') +icon_style_guide24_filled = NotStr(''' + +''') +icon_document_checkmark20_filled = NotStr(''' + +''') +icon_arrow_move20_regular = NotStr(''' + +''') +icon_prohibited20_filled = NotStr(''' + +''') +icon_mail_arrow_down20_filled = NotStr(''' + +''') +icon_text_bullet_list_tree24_regular = NotStr(''' + +''') +icon_resize_small24_filled = NotStr(''' + +''') +icon_toggle_right20_regular = NotStr(''' + +''') +icon_phone_tablet20_regular = NotStr(''' + +''') +icon_text_first_line24_filled = NotStr(''' + +''') +icon_clipboard_image20_regular = NotStr(''' + +''') +icon_navigation20_regular = NotStr(''' + +''') +icon_oval16_regular = NotStr(''' + +''') +icon_arrow_circle_down_right20_filled = NotStr(''' + +''') +icon_cloud_dismiss24_regular = NotStr(''' + +''') +icon_tag_dismiss24_filled = NotStr(''' + +''') +icon_contact_card20_filled = NotStr(''' + +''') +icon_likert20_regular = NotStr(''' + +''') +icon_arrow_download24_regular = NotStr(''' + +''') +icon_video_chat20_filled = NotStr(''' + +''') +icon_person_delete20_regular = NotStr(''' + +''') +icon_box_search20_regular = NotStr(''' + +''') +icon_share_android24_filled = NotStr(''' + +''') +icon_bug16_filled = NotStr(''' + +''') +icon_important12_regular = NotStr(''' + +''') +icon_credit_card_toolbox20_regular = NotStr(''' + +''') +icon_arrow_outline_up_right48_filled = NotStr(''' + +''') +icon_calligraphy_pen_error20_filled = NotStr(''' + +''') +icon_wrench_screwdriver20_filled = NotStr(''' + +''') +icon_document_pdf32_filled = NotStr(''' + +''') +icon_maximize48_filled = NotStr(''' + +''') +icon_storage24_regular = NotStr(''' + +''') +icon_calendar_rtl32_regular = NotStr(''' + +''') +icon_arrow_repeat_all_off16_filled = NotStr(''' + +''') +icon_flash_off24_filled = NotStr(''' + +''') +icon_link_edit24_filled = NotStr(''' + +''') +icon_arrow_step_back16_filled = NotStr(''' + +''') +icon_poll24_regular = NotStr(''' + +''') +icon_serial_port24_regular = NotStr(''' + +''') +icon_play48_regular = NotStr(''' + +''') +icon_document_person20_regular = NotStr(''' + +''') +icon_table_freeze_column24_filled = NotStr(''' + +''') +icon_search48_regular = NotStr(''' + +''') +icon_question24_filled = NotStr(''' + +''') +icon_home_checkmark20_filled = NotStr(''' + +''') +icon_text_paragraph_direction_right16_regular = NotStr(''' + +''') +icon_document_table_cube20_regular = NotStr(''' + +''') +icon_chevron_circle_right28_filled = NotStr(''' + +''') +icon_video_off20_regular = NotStr(''' + +''') +icon_hand_left28_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_day48_filled = NotStr(''' + +''') +icon_preview_link20_regular = NotStr(''' + +''') +icon_speaker016_filled = NotStr(''' + +''') +icon_text_paragraph_direction_right20_filled = NotStr(''' + +''') +icon_calendar_edit24_filled = NotStr(''' + +''') +icon_briefcase20_filled = NotStr(''' + +''') +icon_board16_regular = NotStr(''' + +''') +icon_document48_filled = NotStr(''' + +''') +icon_cookies24_filled = NotStr(''' + +''') +icon_text_column_one20_regular = NotStr(''' + +''') +icon_keyboard20_filled = NotStr(''' + +''') +icon_more_vertical20_filled = NotStr(''' + +''') +icon_arrow_circle_left20_filled = NotStr(''' + +''') +icon_clipboard_clock24_filled = NotStr(''' + +''') +icon_square_hint_sparkles32_regular = NotStr(''' + +''') +icon_video_person_star_off24_regular = NotStr(''' + +''') +icon_pause48_filled = NotStr(''' + +''') +icon_cloud_add20_filled = NotStr(''' + +''') +icon_archive_multiple20_regular = NotStr(''' + +''') +icon_chat_warning16_filled = NotStr(''' + +''') +icon_square_arrow_forward28_filled = NotStr(''' + +''') +icon_document_lock48_regular = NotStr(''' + +''') +icon_text_superscript24_regular = NotStr(''' + +''') +icon_checkmark_lock20_filled = NotStr(''' + +''') +icon_arrow_trending_settings24_filled = NotStr(''' + +''') +icon_mic24_regular = NotStr(''' + +''') +icon_hand_right28_filled = NotStr(''' + +''') +icon_text_position_through24_regular = NotStr(''' + +''') +icon_briefcase_medical20_filled = NotStr(''' + +''') +icon_calendar_multiple32_filled = NotStr(''' + +''') +icon_person_money24_filled = NotStr(''' + +''') +icon_checkmark_starburst24_filled = NotStr(''' + +''') +icon_more_horizontal20_filled = NotStr(''' + +''') +icon_comment_off16_regular = NotStr(''' + +''') +icon_padding_top20_regular = NotStr(''' + +''') +icon_video_person28_filled = NotStr(''' + +''') +icon_building_skyscraper20_regular = NotStr(''' + +''') +icon_target_arrow20_filled = NotStr(''' + +''') +icon_call16_regular = NotStr(''' + +''') +icon_window_header_horizontal20_regular = NotStr(''' + +''') +icon_conference_room16_filled = NotStr(''' + + + + + +''') +icon_arrow_repeat_all24_regular = NotStr(''' + +''') +icon_archive24_filled = NotStr(''' + +''') +icon_document_text_extract24_regular = NotStr(''' + +''') +icon_share_screen_person_overlay24_regular = NotStr(''' + +''') +icon_search_shield20_filled = NotStr(''' + +''') +icon_text_more24_filled = NotStr(''' + +''') +icon_arrow_reset20_filled = NotStr(''' + +''') +icon_mic_off48_regular = NotStr(''' + +''') +icon_document_page_bottom_left24_regular = NotStr(''' + +''') +icon_resize_table24_filled = NotStr(''' + +''') +icon_arrow_up16_regular = NotStr(''' + +''') +icon_scan_table24_regular = NotStr(''' + +''') +icon_save_edit24_filled = NotStr(''' + +''') +icon_tab_add24_regular = NotStr(''' + +''') +icon_window_inprivate_account20_regular = NotStr(''' + +''') +icon_next28_filled = NotStr(''' + +''') +icon_table_delete_column16_filled = NotStr(''' + +''') +icon_trophy16_regular = NotStr(''' + +''') +icon_send16_filled = NotStr(''' + +''') +icon_paint_bucket24_filled = NotStr(''' + +''') +icon_currency_dollar_rupee20_filled = NotStr(''' + +''') +icon_split_vertical20_regular = NotStr(''' + +''') +icon_notebook_section20_regular = NotStr(''' + +''') +icon_arrow_circle_down_double20_regular = NotStr(''' + +''') +icon_desktop_arrow_right16_regular = NotStr(''' + +''') +icon_real_estate24_filled = NotStr(''' + +''') +icon_table_move_below20_regular = NotStr(''' + +''') +icon_keyboard24_regular = NotStr(''' + +''') +icon_cellular_data520_regular = NotStr(''' + +''') +icon_phone_span_in20_regular = NotStr(''' + +''') +icon_arrow_reply_down24_filled = NotStr(''' + +''') +icon_contact_card_ribbon28_regular = NotStr(''' + +''') +icon_star_settings24_filled = NotStr(''' + +''') +icon_battery024_regular = NotStr(''' + +''') +icon_signature28_regular = NotStr(''' + +''') +icon_calendar_day28_filled = NotStr(''' + +''') +icon_speaker248_regular = NotStr(''' + +''') +icon_window_header_horizontal20_filled = NotStr(''' + +''') +icon_text_direction_horizontal_right20_regular = NotStr(''' + +''') +icon_arrow_trending20_regular = NotStr(''' + +''') +icon_cloud_arrow_down24_filled = NotStr(''' + +''') +icon_battery720_regular = NotStr(''' + +''') +icon_align_space_around_vertical20_filled = NotStr(''' + + + + +''') +icon_open24_filled = NotStr(''' + +''') +icon_presence_dnd10_filled = NotStr(''' + +''') +icon_dialpad28_filled = NotStr(''' + +''') +icon_slide_text20_filled = NotStr(''' + +''') +icon_calendar_empty16_regular = NotStr(''' + +''') +icon_vehicle_car_profile_rtl20_regular = NotStr(''' + +''') +icon_text_align_left20_regular = NotStr(''' + +''') +icon_table_move_left28_filled = NotStr(''' + +''') +icon_window_multiple16_regular = NotStr(''' + +''') +icon_hand_right_off20_regular = NotStr(''' + +''') +icon_dual_screen_vertical_scroll24_filled = NotStr(''' + +''') +icon_dismiss_circle32_filled = NotStr(''' + +''') +icon_navigation24_filled = NotStr(''' + +''') +icon_document_sync16_filled = NotStr(''' + +''') +icon_slide_eraser16_filled = NotStr(''' + +''') +icon_tv_usb20_filled = NotStr(''' + +''') +icon_star_emphasis20_regular = NotStr(''' + +''') +icon_double_tap_swipe_down20_filled = NotStr(''' + +''') +icon_calendar_checkmark16_filled = NotStr(''' + +''') +icon_calendar_week_start24_regular = NotStr(''' + +''') +icon_text_font_size24_regular = NotStr(''' + +''') +icon_mail_open_person16_regular = NotStr(''' + +''') +icon_shape_union20_filled = NotStr(''' + +''') +icon_ribbon_star24_filled = NotStr(''' + +''') +icon_timer1024_filled = NotStr(''' + +''') +icon_print_add20_filled = NotStr(''' + +''') +icon_multiplier18_x48_filled = NotStr(''' + +''') +icon_cloud_checkmark48_filled = NotStr(''' + +''') +icon_sport_baseball24_filled = NotStr(''' + +''') +icon_hand_right24_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_night24_filled = NotStr(''' + +''') +icon_document_bullet_list_off24_regular = NotStr(''' + +''') +icon_share_screen_person_p16_regular = NotStr(''' + +''') +icon_tv48_filled = NotStr(''' + +''') +icon_document_bullet_list_off20_regular = NotStr(''' + +''') +icon_arrow_circle_right20_filled = NotStr(''' + +''') +icon_prohibited_multiple20_filled = NotStr(''' + +''') +icon_resize24_filled = NotStr(''' + +''') +icon_toggle_right16_regular = NotStr(''' + +''') +icon_people_prohibited24_regular = NotStr(''' + +''') +icon_record32_filled = NotStr(''' + +''') +icon_content_view_gallery20_regular = NotStr(''' + +''') +icon_image_off20_regular = NotStr(''' + +''') +icon_window_dev_tools20_regular = NotStr(''' + +''') +icon_archive20_regular = NotStr(''' + +''') +icon_delete16_regular = NotStr(''' + +''') +icon_channel_share28_filled = NotStr(''' + +''') +icon_text_edit_style20_regular = NotStr(''' + +''') +icon_emoji_hand24_filled = NotStr(''' + +''') +icon_select_object24_regular = NotStr(''' + +''') +icon_full_screen_maximize20_regular = NotStr(''' + +''') +icon_wrench20_regular = NotStr(''' + +''') +icon_doctor12_filled = NotStr(''' + +''') +icon_line20_regular = NotStr(''' + +''') +icon_star_dismiss20_filled = NotStr(''' + +''') +icon_table_edit28_filled = NotStr(''' + +''') +icon_city20_filled = NotStr(''' + +''') +icon_highlight16_regular = NotStr(''' + +''') +icon_projection_screen16_filled = NotStr(''' + +''') +icon_cast20_regular = NotStr(''' + +''') +icon_sport_soccer20_filled = NotStr(''' + +''') +icon_table_switch16_filled = NotStr(''' + +''') +icon_timer224_filled = NotStr(''' + +''') +icon_video_person28_regular = NotStr(''' + +''') +icon_font_space_tracking_out20_filled = NotStr(''' + +''') +icon_share_screen_start48_filled = NotStr(''' + +''') +icon_chat_settings24_regular = NotStr(''' + +''') +icon_archive_multiple24_regular = NotStr(''' + +''') +icon_person_call16_filled = NotStr(''' + +''') +icon_arrow_down16_filled = NotStr(''' + +''') +icon_question_circle24_filled = NotStr(''' + +''') +icon_heart28_filled = NotStr(''' + +''') +icon_wrench16_filled = NotStr(''' + +''') +icon_square_hint_sparkles16_filled = NotStr(''' + +''') +icon_checkbox_arrow_right20_filled = NotStr(''' + +''') +icon_square16_regular = NotStr(''' + +''') +icon_arrow_step_out28_filled = NotStr(''' + +''') +icon_text_paragraph_direction_left20_regular = NotStr(''' + +''') +icon_clear_formatting24_filled = NotStr(''' + +''') +icon_text_footnote20_filled = NotStr(''' + +''') +icon_pin_off20_regular = NotStr(''' + +''') +icon_people_team_add24_regular = NotStr(''' + +''') +icon_rename20_regular = NotStr(''' + +''') +icon_video_background_effect20_regular = NotStr(''' + +''') +icon_arrow_enter_left20_regular = NotStr(''' + +''') +icon_font_space_tracking_in28_regular = NotStr(''' + +''') +icon_table_freeze_column_and_row28_filled = NotStr(''' + +''') +icon_text_add_space_after24_filled = NotStr(''' + +''') +icon_table_stack_below24_regular = NotStr(''' + +''') +icon_text_align_right16_regular = NotStr(''' + +''') +icon_table_add24_regular = NotStr(''' + +''') +icon_tab_prohibited24_regular = NotStr(''' + +''') +icon_arrow_circle_up16_regular = NotStr(''' + +''') +icon_prohibited16_filled = NotStr(''' + +''') +icon_branch_fork16_filled = NotStr(''' + +''') +icon_code16_regular = NotStr(''' + +''') +icon_cursor_hover32_regular = NotStr(''' + +''') +icon_calculator_arrow_clockwise20_regular = NotStr(''' + +''') +icon_desktop24_regular = NotStr(''' + +''') +icon_skip_forward3032_filled = NotStr(''' + +''') +icon_shield24_regular = NotStr(''' + +''') +icon_history20_filled = NotStr(''' + +''') +icon_channel_subtract16_regular = NotStr(''' + +''') +icon_notepad_person24_filled = NotStr(''' + +''') +icon_video_person_call20_regular = NotStr(''' + +''') +icon_play32_regular = NotStr(''' + +''') +icon_headset32_filled = NotStr(''' + +''') +icon_voicemail28_filled = NotStr(''' + + + + + +''') +icon_draw_shape24_filled = NotStr(''' + +''') +icon_lightbulb20_filled = NotStr(''' + +''') +icon_presence_offline16_regular = NotStr(''' + +''') +icon_arrow_step_in_left16_filled = NotStr(''' + +''') +icon_arrow_up_right32_filled = NotStr(''' + +''') +icon_cellular_data424_regular = NotStr(''' + +''') +icon_video_security20_regular = NotStr(''' + +''') +icon_briefcase_off28_regular = NotStr(''' + +''') +icon_book_globe20_regular = NotStr(''' + +''') +icon_phone_laptop24_filled = NotStr(''' + +''') +icon_stethoscope24_filled = NotStr(''' + +''') +icon_folder_open16_regular = NotStr(''' + +''') +icon_building_home20_regular = NotStr(''' + +''') +icon_tv28_filled = NotStr(''' + +''') +icon_border_bottom20_regular = NotStr(''' + +''') +icon_document_text_toolbox24_filled = NotStr(''' + +''') +icon_arrow_circle_up20_filled = NotStr(''' + +''') +icon_expand_up_left24_regular = NotStr(''' + +''') +icon_presence_offline10_regular = NotStr(''' + +''') +icon_data_bar_vertical20_regular = NotStr(''' + +''') +icon_dual_screen_closed_alert24_filled = NotStr(''' + +''') +icon_notebook_subsection24_regular = NotStr(''' + + + + +''') +icon_arrow_step_out24_filled = NotStr(''' + +''') +icon_mail16_filled = NotStr(''' + +''') +icon_image_multiple32_filled = NotStr(''' + +''') +icon_paint_brush20_filled = NotStr(''' + +''') +icon_brightness_low24_regular = NotStr(''' + +''') +icon_book_question_mark_rtl20_filled = NotStr(''' + +''') +icon_desktop_toolbox24_regular = NotStr(''' + +''') +icon_arrow_reply_all20_filled = NotStr(''' + +''') +icon_square_hint_arrow_back16_regular = NotStr(''' + +''') +icon_arrow_circle_up12_regular = NotStr(''' + +''') +icon_device_meeting_room_remote20_filled = NotStr(''' + +''') +icon_globe_surface20_filled = NotStr(''' + +''') +icon_vehicle_car_profile_rtl16_filled = NotStr(''' + +''') +icon_contract_down_left48_filled = NotStr(''' + +''') +icon_emoji_surprise20_regular = NotStr(''' + +''') +icon_emoji32_filled = NotStr(''' + +''') +icon_usb_plug20_filled = NotStr(''' + +''') +icon_arrow_step_out16_regular = NotStr(''' + +''') +icon_mail_inbox_dismiss20_filled = NotStr(''' + +''') +icon_arrow_circle_up_left24_regular = NotStr(''' + +''') +icon_gif16_filled = NotStr(''' + +''') +icon_chevron_double_right16_regular = NotStr(''' + +''') +icon_document_arrow_left16_filled = NotStr(''' + +''') +icon_clock_toolbox20_regular = NotStr(''' + +''') +icon_scan_type24_filled = NotStr(''' + +''') +icon_book_open_globe24_filled = NotStr(''' + + + + + + + + + +''') +icon_table_stack_below24_filled = NotStr(''' + +''') +icon_clipboard_task_add20_filled = NotStr(''' + +''') +icon_clipboard_arrow_right16_regular = NotStr(''' + +''') +icon_font_increase20_filled = NotStr(''' + +''') +icon_branch_compare20_filled = NotStr(''' + +''') +icon_dual_screen_vibrate24_regular = NotStr(''' + +''') +icon_table_cells_split24_regular = NotStr(''' + +''') +icon_chevron_circle_down28_regular = NotStr(''' + +''') +icon_calendar_rtl32_filled = NotStr(''' + +''') +icon_multiplier12_x32_filled = NotStr(''' + +''') +icon_comment_lightning20_regular = NotStr(''' + +''') +icon_book_open20_filled = NotStr(''' + +''') +icon_keyboard_shift16_regular = NotStr(''' + +''') +icon_shape_subtract16_filled = NotStr(''' + +''') +icon_glance24_regular = NotStr(''' + +''') +icon_laptop28_regular = NotStr(''' + +''') +icon_clock20_filled = NotStr(''' + +''') +icon_calendar_rtl28_regular = NotStr(''' + +''') +icon_document_page_bottom_center24_filled = NotStr(''' + +''') +icon_flag_off20_filled = NotStr(''' + +''') +icon_weather_sunny_low48_filled = NotStr(''' + +''') +icon_mail_arrow_double_back20_regular = NotStr(''' + +''') +icon_search16_regular = NotStr(''' + +''') +icon_compass_northwest16_regular = NotStr(''' + +''') +icon_headphones_sound_wave32_filled = NotStr(''' + +''') +icon_hdr_off24_regular = NotStr(''' + +''') +icon_text_strikethrough16_filled = NotStr(''' + +''') +icon_learning_app24_regular = NotStr(''' + +''') +icon_bookmark_multiple20_regular = NotStr(''' + +''') +icon_rectangle_landscape32_filled = NotStr(''' + +''') +icon_match_app_layout24_filled = NotStr(''' + +''') +icon_beach16_regular = NotStr(''' + +''') +icon_circle24_regular = NotStr(''' + +''') +icon_flash16_filled = NotStr(''' + +''') +icon_folder_arrow_up16_regular = NotStr(''' + +''') +icon_dual_screen_pagination24_regular = NotStr(''' + +''') +icon_board_games20_regular = NotStr(''' + +''') +icon_text_case_lowercase24_filled = NotStr(''' + +''') +icon_board24_filled = NotStr(''' + +''') +icon_tag_reset20_regular = NotStr(''' + +''') +icon_list28_filled = NotStr(''' + +''') +icon_table_move_right28_filled = NotStr(''' + +''') +icon_text_position_square20_filled = NotStr(''' + +''') +icon_comment_note20_filled = NotStr(''' + +''') +icon_calendar_error24_filled = NotStr(''' + +''') +icon_lock_open20_regular = NotStr(''' + +''') +icon_layer20_filled = NotStr(''' + +''') +icon_hdr24_filled = NotStr(''' + +''') +icon_notepad28_regular = NotStr(''' + +''') +icon_money20_filled = NotStr(''' + +''') +icon_multiselect_ltr20_regular = NotStr(''' + +''') +icon_delete_dismiss28_regular = NotStr(''' + +''') +icon_fast_forward16_filled = NotStr(''' + +''') +icon_person_delete20_filled = NotStr(''' + +''') +icon_multiplier1_x28_filled = NotStr(''' + +''') +icon_clipboard_letter24_regular = NotStr(''' + +''') +icon_border_outside20_filled = NotStr(''' + +''') +icon_caret_down_right20_regular = NotStr(''' + +''') +icon_thumb_like16_regular = NotStr(''' + +''') +icon_text_align_right24_regular = NotStr(''' + +''') +icon_document_header_arrow_down24_regular = NotStr(''' + +''') +icon_tab_desktop_multiple_bottom24_regular = NotStr(''' + +''') +icon_call_missed16_regular = NotStr(''' + +''') +icon_call_add24_filled = NotStr(''' + +''') +icon_emoji_add16_regular = NotStr(''' + +''') +icon_dual_screen_arrow_up24_filled = NotStr(''' + +''') +icon_arrow_sync_circle20_filled = NotStr(''' + +''') +icon_calendar_mention20_filled = NotStr(''' + +''') +icon_image_shadow24_regular = NotStr(''' + +''') +icon_document_header_footer24_regular = NotStr(''' + +''') +icon_table_stack_right16_regular = NotStr(''' + +''') +icon_port_micro_usb24_filled = NotStr(''' + +''') +icon_closed_caption_off20_regular = NotStr(''' + +''') +icon_table_link16_filled = NotStr(''' + +''') +icon_attach_text24_regular = NotStr(''' + +''') +icon_folder_link24_regular = NotStr(''' + +''') +icon_tetris_app20_filled = NotStr(''' + +''') +icon_comment_mention24_filled = NotStr(''' + +''') +icon_play_circle48_filled = NotStr(''' + +''') +icon_pause_circle24_filled = NotStr(''' + +''') +icon_link16_regular = NotStr(''' + +''') +icon_content_view20_regular = NotStr(''' + +''') +icon_text_align_center16_filled = NotStr(''' + +''') +icon_document_ribbon16_filled = NotStr(''' + +''') +icon_data_histogram24_filled = NotStr(''' + +''') +icon_toggle_left20_regular = NotStr(''' + +''') +icon_call_forward16_regular = NotStr(''' + +''') +icon_chat_bubbles_question16_regular = NotStr(''' + +''') +icon_gift_card_add20_regular = NotStr(''' + +''') +icon_people_add28_filled = NotStr(''' + +''') +icon_split_horizontal32_regular = NotStr(''' + +''') +icon_people_list20_filled = NotStr(''' + +''') +icon_data_bar_vertical_add24_regular = NotStr(''' + +''') +icon_channel_arrow_left16_regular = NotStr(''' + +''') +icon_people_team16_regular = NotStr(''' + +''') +icon_image_arrow_counterclockwise24_regular = NotStr(''' + +''') +icon_calendar_ltr32_regular = NotStr(''' + +''') +icon_building_retail_shield20_filled = NotStr(''' + +''') +icon_edit_arrow_back16_filled = NotStr(''' + +''') +icon_table_dismiss16_regular = NotStr(''' + +''') +icon_weather_moon28_regular = NotStr(''' + +''') +icon_fluid20_filled = NotStr(''' + +''') +icon_megaphone_loud20_filled = NotStr(''' + +''') +icon_table_settings16_regular = NotStr(''' + +''') +icon_circle_small20_regular = NotStr(''' + +''') +icon_location12_regular = NotStr(''' + +''') +icon_tv16_filled = NotStr(''' + +''') +icon_folder_swap24_filled = NotStr(''' + +''') +icon_bot_add20_regular = NotStr(''' + +''') +icon_text_collapse24_regular = NotStr(''' + +''') +icon_shape_union20_regular = NotStr(''' + +''') +icon_premium32_regular = NotStr(''' + +''') +icon_folder_add24_filled = NotStr(''' + +''') +icon_call16_filled = NotStr(''' + +''') +icon_box_multiple_checkmark24_regular = NotStr(''' + +''') +icon_document_add48_filled = NotStr(''' + +''') +icon_building_bank_link20_regular = NotStr(''' + +''') +icon_arrow_hook_down_right28_regular = NotStr(''' + +''') +icon_comment_add48_filled = NotStr(''' + +''') +icon_notebook_error24_filled = NotStr(''' + +''') +icon_person_available20_regular = NotStr(''' + +''') +icon_folder_open20_regular = NotStr(''' + +''') +icon_home24_regular = NotStr(''' + +''') +icon_person48_filled = NotStr(''' + +''') +icon_ruler24_regular = NotStr(''' + +''') +icon_expand_up_left16_regular = NotStr(''' + +''') +icon_earth20_filled = NotStr(''' + +''') +icon_checkbox224_regular = NotStr(''' + + + + + +''') +icon_building_factory24_filled = NotStr(''' + +''') +icon_document_text20_filled = NotStr(''' + +''') +icon_animal_turtle28_regular = NotStr(''' + +''') +icon_presence_dnd10_regular = NotStr(''' + +''') +icon_luggage24_regular = NotStr(''' + +''') +icon_arrow_left16_regular = NotStr(''' + +''') +icon_ribbon_off32_filled = NotStr(''' + +''') +icon_weather_duststorm24_filled = NotStr(''' + +''') +icon_expand_up_right24_filled = NotStr(''' + +''') +icon_call_prohibited16_filled = NotStr(''' + +''') +icon_square_hint_sparkles28_regular = NotStr(''' + +''') +icon_square_hint32_regular = NotStr(''' + +''') +icon_communication24_regular = NotStr(''' + +''') +icon_notepad24_filled = NotStr(''' + +''') +icon_table_insert_row16_regular = NotStr(''' + +''') +icon_pentagon32_regular = NotStr(''' + +''') +icon_fast_forward16_regular = NotStr(''' + +''') +icon_textbox_align_bottom20_regular = NotStr(''' + +''') +icon_speaker116_filled = NotStr(''' + +''') +icon_board_split48_filled = NotStr(''' + +''') +icon_copy24_filled = NotStr(''' + +''') +icon_receipt_bag24_regular = NotStr(''' + +''') +icon_eye_off24_regular = NotStr(''' + +''') +icon_contact_card_group48_filled = NotStr(''' + +''') +icon_cursor_hover16_regular = NotStr(''' + +''') +icon_person_mail24_regular = NotStr(''' + +''') +icon_building_home24_regular = NotStr(''' + +''') +icon_ribbon24_filled = NotStr(''' + +''') +icon_dual_screen_span24_regular = NotStr(''' + +''') +icon_document_question_mark20_filled = NotStr(''' + +''') +icon_fluid16_regular = NotStr(''' + +''') +icon_dumbbell24_filled = NotStr(''' + +''') +icon_calendar_phone16_filled = NotStr(''' + +''') +icon_record20_filled = NotStr(''' + +''') +icon_important24_regular = NotStr(''' + +''') +icon_data_bar_vertical20_filled = NotStr(''' + +''') +icon_arrow_undo32_regular = NotStr(''' + +''') +icon_projection_screen_dismiss16_filled = NotStr(''' + +''') +icon_money_dismiss20_filled = NotStr(''' + +''') +icon_scan_thumb_up20_filled = NotStr(''' + +''') +icon_scan_dash16_filled = NotStr(''' + +''') +icon_text_footnote24_regular = NotStr(''' + +''') +icon_luggage20_regular = NotStr(''' + +''') +icon_chevron_circle_down32_regular = NotStr(''' + +''') +icon_leaf_two20_regular = NotStr(''' + +''') +icon_person_board20_regular = NotStr(''' + +''') +icon_folder_prohibited16_filled = NotStr(''' + +''') +icon_clipboard_text_ltr24_regular = NotStr(''' + +''') +icon_thumb_dislike16_filled = NotStr(''' + +''') +icon_textbox_align_bottom_rotate9020_regular = NotStr(''' + +''') +icon_time_and_weather24_regular = NotStr(''' + +''') +icon_notebook_error24_regular = NotStr(''' + +''') +icon_speaker_off28_regular = NotStr(''' + +''') +icon_developer_board20_filled = NotStr(''' + +''') +icon_sport_hockey24_filled = NotStr(''' + +''') +icon_clipboard_task20_regular = NotStr(''' + +''') +icon_document_header_footer20_filled = NotStr(''' + +''') +icon_fax16_filled = NotStr(''' + +''') +icon_arrow_clockwise32_filled = NotStr(''' + +''') +icon_scan_thumb_up_off16_filled = NotStr(''' + +''') +icon_calendar_today20_regular = NotStr(''' + +''') +icon_document_flowchart20_filled = NotStr(''' + +''') +icon_local_language16_regular = NotStr(''' + +''') +icon_emoji_sad20_filled = NotStr(''' + +''') +icon_meet_now32_regular = NotStr(''' + +''') +icon_line_dashes48_filled = NotStr(''' + +''') +icon_calendar_rtl16_regular = NotStr(''' + +''') +icon_book_coins20_filled = NotStr(''' + +''') +icon_braces24_filled = NotStr(''' + +''') +icon_slide_multiple_arrow_right24_filled = NotStr(''' + +''') +icon_document_bullet_list_off24_filled = NotStr(''' + +''') +icon_arrow_trending_lines20_regular = NotStr(''' + +''') +icon_record_stop16_filled = NotStr(''' + +''') +icon_drop20_regular = NotStr(''' + +''') +icon_arrow_sync_dismiss20_filled = NotStr(''' + +''') +icon_wifi_off20_filled = NotStr(''' + +''') +icon_select_object_skew_edit24_regular = NotStr(''' + +''') +icon_savings16_filled = NotStr(''' + +''') +icon_padding_top24_regular = NotStr(''' + +''') +icon_book_open28_regular = NotStr(''' + +''') +icon_target_edit16_regular = NotStr(''' + +''') +icon_qr_code20_regular = NotStr(''' + +''') +icon_sticker12_filled = NotStr(''' + +''') +icon_calculator_arrow_clockwise20_filled = NotStr(''' + +''') +icon_document_footer_dismiss24_regular = NotStr(''' + +''') +icon_beaker20_regular = NotStr(''' + +''') +icon_contact_card_link16_regular = NotStr(''' + +''') +icon_comment_arrow_left20_regular = NotStr(''' + +''') +icon_pin_off16_filled = NotStr(''' + +''') +icon_save_search20_regular = NotStr(''' + +''') +icon_laptop_dismiss20_regular = NotStr(''' + +''') +icon_calendar_edit20_regular = NotStr(''' + +''') +icon_split_horizontal48_regular = NotStr(''' + +''') +icon_box_multiple24_filled = NotStr(''' + +''') +icon_diamond24_regular = NotStr(''' + +''') +icon_stack_arrow_forward24_filled = NotStr(''' + +''') +icon_document_queue_multiple20_filled = NotStr(''' + +''') +icon_backpack24_filled = NotStr(''' + +''') +icon_paint_bucket20_filled = NotStr(''' + +''') +icon_mail_dismiss24_filled = NotStr(''' + +''') +icon_star_three_quarter16_filled = NotStr(''' + +''') +icon_chevron_double_right20_filled = NotStr(''' + +''') +icon_re_order_dots_horizontal24_filled = NotStr(''' + +''') +icon_comment_error20_regular = NotStr(''' + +''') +icon_heart_pulse32_filled = NotStr(''' + +''') +icon_channel_alert16_filled = NotStr(''' + +''') +icon_document_javascript24_filled = NotStr(''' + +''') +icon_arrow_maximize20_filled = NotStr(''' + +''') +icon_gift_card_money20_regular = NotStr(''' + +''') +icon_text_paragraph_direction_left16_regular = NotStr(''' + +''') +icon_channel_arrow_left48_regular = NotStr(''' + +''') +icon_arrow_left12_regular = NotStr(''' + +''') +icon_re_order_dots_horizontal20_filled = NotStr(''' + +''') +icon_screen_search24_filled = NotStr(''' + +''') +icon_people_lock24_filled = NotStr(''' + +''') +icon_video_person_sparkle28_filled = NotStr(''' + +''') +icon_caret_up24_regular = NotStr(''' + +''') +icon_checkbox_person16_filled = NotStr(''' + +''') +icon_document_copy48_regular = NotStr(''' + +''') +icon_view_desktop_mobile20_filled = NotStr(''' + +''') +icon_picture_in_picture_exit20_filled = NotStr(''' + +''') +icon_document_header_arrow_down24_filled = NotStr(''' + +''') +icon_payment20_filled = NotStr(''' + +''') +icon_record12_filled = NotStr(''' + +''') +icon_building_retail20_regular = NotStr(''' + +''') +icon_rss24_filled = NotStr(''' + +''') +icon_branch_fork_hint24_regular = NotStr(''' + +''') +icon_document_text_toolbox20_regular = NotStr(''' + +''') +icon_calendar_toolbox20_regular = NotStr(''' + +''') +icon_weather_moon_off48_filled = NotStr(''' + +''') +icon_number_symbol16_filled = NotStr(''' + +''') +icon_star_line_horizontal320_filled = NotStr(''' + +''') +icon_album_add24_filled = NotStr(''' + +''') +icon_document_pdf20_filled = NotStr(''' + +''') +icon_brightness_high48_regular = NotStr(''' + +''') +icon_mail20_filled = NotStr(''' + +''') +icon_border_bottom_double20_regular = NotStr(''' + +''') +icon_autosum24_filled = NotStr(''' + +''') +icon_gift_card_arrow_right20_regular = NotStr(''' + +''') +icon_text_color24_regular = NotStr(''' + +''') +icon_document_table_truck24_regular = NotStr(''' + +''') +icon_branch24_filled = NotStr(''' + +''') +icon_arrow_routing_rectangle_multiple24_filled = NotStr(''' + +''') +icon_caret_right16_filled = NotStr(''' + +''') +icon_add12_regular = NotStr(''' + +''') +icon_vehicle_ship20_regular = NotStr(''' + +''') +icon_desktop_cursor28_filled = NotStr(''' + +''') +icon_table_cells_merge24_filled = NotStr(''' + +''') +icon_document_arrow_up20_regular = NotStr(''' + +''') +icon_hand_right20_regular = NotStr(''' + +''') +icon_tag_error16_regular = NotStr(''' + +''') +icon_rewind28_filled = NotStr(''' + +''') +icon_chevron_circle_down48_regular = NotStr(''' + +''') +icon_auto_fit_height24_filled = NotStr(''' + +''') +icon_chevron_circle_left28_regular = NotStr(''' + +''') +icon_chevron_double_down20_regular = NotStr(''' + +''') +icon_image_copy20_filled = NotStr(''' + +''') +icon_textbox_align_bottom_rotate9024_regular = NotStr(''' + +''') +icon_text_field24_regular = NotStr(''' + +''') +icon_shifts_question_mark24_regular = NotStr(''' + +''') +icon_share_screen_person_overlay20_regular = NotStr(''' + +''') +icon_arrow_reply20_regular = NotStr(''' + +''') +icon_shopping_bag24_regular = NotStr(''' + +''') +icon_wifi_off24_filled = NotStr(''' + +''') +icon_blur24_filled = NotStr(''' + +''') +icon_document_multiple20_regular = NotStr(''' + +''') +icon_caret_up12_filled = NotStr(''' + +''') +icon_stream24_filled = NotStr(''' + +''') +icon_toggle_right28_filled = NotStr(''' + +''') +icon_document_briefcase20_regular = NotStr(''' + +''') +icon_task_list_ltr24_filled = NotStr(''' + +''') +icon_call_add20_regular = NotStr(''' + +''') +icon_briefcase_off20_regular = NotStr(''' + +''') +icon_arrow_clockwise_dashes24_regular = NotStr(''' + +''') +icon_flow20_filled = NotStr(''' + +''') +icon_triangle12_filled = NotStr(''' + +''') +icon_umbrella24_filled = NotStr(''' + +''') +icon_box_checkmark24_regular = NotStr(''' + +''') +icon_desktop_edit20_regular = NotStr(''' + +''') +icon_resize_small20_regular = NotStr(''' + +''') +icon_pill28_filled = NotStr(''' + +''') +icon_tab_prohibited24_filled = NotStr(''' + +''') +icon_diversity48_regular = NotStr(''' + +''') +icon_border_none24_regular = NotStr(''' + +''') +icon_document_one_page24_filled = NotStr(''' + +''') +icon_arrow_sync_off12_regular = NotStr(''' + +''') +icon_dentist16_filled = NotStr(''' + +''') +icon_alert_off24_regular = NotStr(''' + +''') +icon_arrow_circle_down_right16_filled = NotStr(''' + +''') +icon_panel_left24_regular = NotStr(''' + +''') +icon_square_arrow_forward16_regular = NotStr(''' + +''') +icon_history20_regular = NotStr(''' + +''') +icon_arrow_minimize_vertical24_regular = NotStr(''' + + + + + +''') +icon_clipboard_text_ltr20_filled = NotStr(''' + +''') +icon_data_histogram20_filled = NotStr(''' + +''') +icon_call_end28_regular = NotStr(''' + +''') +icon_camera_dome28_regular = NotStr(''' + +''') +icon_document_landscape_split_hint20_filled = NotStr(''' + +''') +icon_arrow_trending_settings24_regular = NotStr(''' + +''') +icon_textbox_align_top_rotate9020_filled = NotStr(''' + +''') +icon_video_person_star_off20_filled = NotStr(''' + +''') +icon_ios_chevron_right20_filled = NotStr(''' + +''') +icon_clipboard_text_ltr24_filled = NotStr(''' + +''') +icon_flashlight16_regular = NotStr(''' + +''') +icon_cursor_hover28_filled = NotStr(''' + +''') +icon_clipboard_link20_filled = NotStr(''' + +''') +icon_calendar_month28_regular = NotStr(''' + +''') +icon_text_position_top_bottom20_regular = NotStr(''' + +''') +icon_vehicle_truck16_regular = NotStr(''' + +''') +icon_person_add24_regular = NotStr(''' + +''') +icon_inprivate_account28_filled = NotStr(''' + +''') +icon_zoom_in20_filled = NotStr(''' + +''') +icon_arrow_right28_filled = NotStr(''' + +''') +icon_document_table20_regular = NotStr(''' + +''') +icon_text_column_two_left24_regular = NotStr(''' + +''') +icon_folder_open_vertical20_filled = NotStr(''' + +''') +icon_list20_filled = NotStr(''' + +''') +icon_ios_arrow_ltr24_regular = NotStr(''' + +''') +icon_credit_card_person20_filled = NotStr(''' + +''') +icon_more_horizontal48_filled = NotStr(''' + +''') +icon_video_chat16_filled = NotStr(''' + +''') +icon_speaker_edit20_filled = NotStr(''' + +''') +icon_surface_earbuds24_regular = NotStr(''' + +''') +icon_fluent32_regular = NotStr(''' + +''') +icon_resize_large24_filled = NotStr(''' + +''') +icon_beaker_edit20_filled = NotStr(''' + +''') +icon_comment_multiple20_regular = NotStr(''' + +''') +icon_weather_sunny32_filled = NotStr(''' + +''') +icon_star_arrow_right_end24_filled = NotStr(''' + +''') +icon_person_available24_regular = NotStr(''' + +''') +icon_arrow_maximize28_filled = NotStr(''' + +''') +icon_sync_off20_filled = NotStr(''' + +''') +icon_subtract_circle16_filled = NotStr(''' + +''') +icon_library20_regular = NotStr(''' + +''') +icon_text_sort_descending24_regular = NotStr(''' + +''') +icon_desktop_flow24_filled = NotStr(''' + +''') +icon_dentist20_regular = NotStr(''' + +''') +icon_drink_margarita16_filled = NotStr(''' + +''') +icon_box_multiple_arrow_right20_regular = NotStr(''' + +''') +icon_clock28_filled = NotStr(''' + +''') +icon_comment_multiple_link20_filled = NotStr(''' + +''') +icon_gift_card_arrow_right24_filled = NotStr(''' + +''') +icon_clipboard_paste20_regular = NotStr(''' + +''') +icon_textbox_rotate9024_regular = NotStr(''' + +''') +icon_channel_subtract48_regular = NotStr(''' + +''') +icon_dual_screen_closed_alert24_regular = NotStr(''' + +''') +icon_backpack_add24_filled = NotStr(''' + +''') +icon_device_eq20_regular = NotStr(''' + +''') +icon_arrow_enter_up24_filled = NotStr(''' + +''') +icon_tab_desktop_arrow_left20_filled = NotStr(''' + +''') +icon_mic_off28_filled = NotStr(''' + + + + + +''') +icon_page_fit20_regular = NotStr(''' + +''') +icon_weather_fog48_regular = NotStr(''' + +''') +icon_person_clock24_filled = NotStr(''' + +''') +icon_play24_regular = NotStr(''' + +''') +icon_box16_regular = NotStr(''' + +''') +icon_door20_regular = NotStr(''' + +''') +icon_person_arrow_right20_regular = NotStr(''' + +''') +icon_apps_list_detail20_filled = NotStr(''' + +''') +icon_wand20_regular = NotStr(''' + +''') +icon_alert16_filled = NotStr(''' + +''') +icon_table_move_right24_regular = NotStr(''' + +''') +icon_ribbon_off20_regular = NotStr(''' + +''') +icon_text_paragraph_direction20_regular = NotStr(''' + +''') +icon_tray_item_add20_regular = NotStr(''' + +''') +icon_arrow_undo16_regular = NotStr(''' + +''') +icon_branch_fork24_filled = NotStr(''' + +''') +icon_person_tag48_regular = NotStr(''' + +''') +icon_person_mail24_filled = NotStr(''' + +''') +icon_sticker24_regular = NotStr(''' + +''') +icon_shield_prohibited20_filled = NotStr(''' + +''') +icon_arrow_circle_right48_filled = NotStr(''' + +''') +icon_contact_card48_filled = NotStr(''' + +''') +icon_mic20_filled = NotStr(''' + +''') +icon_shopping_bag_dismiss20_filled = NotStr(''' + +''') +icon_dialpad_off20_regular = NotStr(''' + +''') +icon_building_bank20_regular = NotStr(''' + +''') +icon_document_queue_add20_regular = NotStr(''' + +''') +icon_channel_add28_regular = NotStr(''' + +''') +icon_flowchart_circle24_regular = NotStr(''' + +''') +icon_arrow_trending24_filled = NotStr(''' + +''') +icon_record24_filled = NotStr(''' + +''') +icon_sidebar_search_ltr20_filled = NotStr(''' + +''') +icon_symbols16_regular = NotStr(''' + +''') +icon_food24_filled = NotStr(''' + +''') +icon_guest_add24_filled = NotStr(''' + +''') +icon_sparkle20_regular = NotStr(''' + +''') +icon_arrow_circle_down_up20_filled = NotStr(''' + +''') +icon_table_move_left24_filled = NotStr(''' + +''') +icon_sport_soccer24_filled = NotStr(''' + +''') +icon_table_insert_column20_regular = NotStr(''' + +''') +icon_handshake24_regular = NotStr(''' + +''') +icon_arrow_circle_down16_filled = NotStr(''' + +''') +icon_food_cake24_filled = NotStr(''' + +''') +icon_folder_prohibited48_regular = NotStr(''' + +''') +icon_lightbulb_filament16_regular = NotStr(''' + +''') +icon_target24_regular = NotStr(''' + +''') +icon_cube_tree24_filled = NotStr(''' + +''') +icon_phone_vibrate24_regular = NotStr(''' + +''') +icon_caret_down_right20_filled = NotStr(''' + +''') +icon_briefcase12_regular = NotStr(''' + +''') +icon_autocorrect20_regular = NotStr(''' + +''') +icon_calendar_multiple24_filled = NotStr(''' + +''') +icon_local_language24_regular = NotStr(''' + +''') +icon_presence_busy12_filled = NotStr(''' + +''') +icon_phone_link_setup24_regular = NotStr(''' + +''') +icon_people_sync16_filled = NotStr(''' + +''') +icon_slide_add28_filled = NotStr(''' + +''') +icon_password24_filled = NotStr(''' + +''') +icon_tag_reset24_filled = NotStr(''' + +''') +icon_arrow_repeat_all_off20_regular = NotStr(''' + +''') +icon_lock_shield48_filled = NotStr(''' + +''') +icon_open_folder48_filled = NotStr(''' + +''') +icon_contact_card_ribbon20_filled = NotStr(''' + +''') +icon_clipboard_code20_filled = NotStr(''' + +''') +icon_bluetooth_disabled20_regular = NotStr(''' + +''') +icon_flash24_regular = NotStr(''' + +''') +icon_emoji_meh20_filled = NotStr(''' + +''') +icon_arrow_trending_lines24_regular = NotStr(''' + +''') +icon_desktop32_regular = NotStr(''' + +''') +icon_mic_prohibited16_regular = NotStr(''' + +''') +icon_desktop_sync24_filled = NotStr(''' + +''') +icon_timeline24_regular = NotStr(''' + +''') +icon_clipboard_text_rtl20_filled = NotStr(''' + +''') +icon_plug_connected20_regular = NotStr(''' + +''') +icon_weather_sunny16_filled = NotStr(''' + +''') +icon_calendar_rtl20_regular = NotStr(''' + +''') +icon_glance_horizontal12_filled = NotStr(''' + + + + + + +''') +icon_tablet_speaker20_filled = NotStr(''' + +''') +icon_flowchart20_filled = NotStr(''' + +''') +icon_cloud_arrow_up20_regular = NotStr(''' + +''') +icon_channel_alert24_regular = NotStr(''' + +''') +icon_sound_source28_regular = NotStr(''' + +''') +icon_document_bullet_list_clock20_filled = NotStr(''' + + + + + +''') +icon_column_triple24_regular = NotStr(''' + +''') +icon_local_language20_filled = NotStr(''' + +''') +icon_text_position_square24_regular = NotStr(''' + +''') +icon_hdr_off24_filled = NotStr(''' + +''') +icon_camera_switch24_filled = NotStr(''' + +''') +icon_math_symbols28_filled = NotStr(''' + +''') +icon_bezier_curve_square20_regular = NotStr(''' + +''') +icon_paint_brush_arrow_down24_regular = NotStr(''' + +''') +icon_location_off48_filled = NotStr(''' + +''') +icon_dismiss16_regular = NotStr(''' + +''') +icon_arrow_down32_filled = NotStr(''' + +''') +icon_dialpad_off24_regular = NotStr(''' + +''') +icon_reading_list_add20_filled = NotStr(''' + +''') +icon_arrow_autofit_up20_regular = NotStr(''' + +''') +icon_building_skyscraper20_filled = NotStr(''' + +''') +icon_channel_dismiss24_regular = NotStr(''' + +''') +icon_umbrella20_filled = NotStr(''' + +''') +icon_shield_lock28_filled = NotStr(''' + +''') +icon_text_bold16_regular = NotStr(''' + +''') +icon_weather_sunny_low48_regular = NotStr(''' + +''') +icon_brightness_high20_regular = NotStr(''' + +''') +icon_chart_person28_regular = NotStr(''' + +''') +icon_document_sync24_filled = NotStr(''' + +''') +icon_error_circle_settings16_filled = NotStr(''' + +''') +icon_projection_screen_dismiss24_filled = NotStr(''' + +''') +icon_edit_settings24_regular = NotStr(''' + +''') +icon_image_multiple24_filled = NotStr(''' + +''') +icon_person_note20_regular = NotStr(''' + +''') +icon_call_park32_filled = NotStr(''' + +''') +icon_board_split16_regular = NotStr(''' + +''') +icon_tab20_regular = NotStr(''' + +''') +icon_chart_person48_filled = NotStr(''' + +''') +icon_text_number_list_rtl24_filled = NotStr(''' + +''') +icon_table_simple28_filled = NotStr(''' + +''') +icon_previous16_filled = NotStr(''' + +''') +icon_arrow_maximize32_regular = NotStr(''' + +''') +icon_table_simple48_regular = NotStr(''' + +''') +icon_line_horizontal520_filled = NotStr(''' + +''') +icon_keyboard_shift20_regular = NotStr(''' + +''') +icon_center_horizontal24_filled = NotStr(''' + +''') +icon_voicemail24_regular = NotStr(''' + +''') +icon_page_fit16_regular = NotStr(''' + +''') +icon_folder_prohibited28_regular = NotStr(''' + +''') +icon_person_lock16_regular = NotStr(''' + +''') +icon_window_new20_regular = NotStr(''' + +''') +icon_calculator20_filled = NotStr(''' + +''') +icon_checkbox_indeterminate16_filled = NotStr(''' + +''') +icon_star_add16_regular = NotStr(''' + +''') +icon_top_speed20_regular = NotStr(''' + +''') +icon_box_multiple_arrow_right20_filled = NotStr(''' + +''') +icon_battery024_filled = NotStr(''' + +''') +icon_heart_pulse20_filled = NotStr(''' + +''') +icon_window_apps16_regular = NotStr(''' + +''') +icon_calendar_reply20_filled = NotStr(''' + +''') +icon_text_column_one24_regular = NotStr(''' + +''') +icon_table_insert_column28_regular = NotStr(''' + +''') +icon_table_stack_above28_regular = NotStr(''' + +''') +icon_mic16_regular = NotStr(''' + +''') +icon_dismiss_square20_regular = NotStr(''' + +''') +icon_glasses_off24_filled = NotStr(''' + +''') +icon_dual_screen_arrow_right24_regular = NotStr(''' + +''') +icon_notebook_add24_regular = NotStr(''' + + + + + + + + +''') +icon_play_circle24_regular = NotStr(''' + +''') +icon_chevron_circle_right12_regular = NotStr(''' + +''') +icon_text_underline20_regular = NotStr(''' + +''') +icon_print48_regular = NotStr(''' + +''') +icon_table_stack_below20_filled = NotStr(''' + +''') +icon_phone20_regular = NotStr(''' + +''') +icon_table_freeze_row20_regular = NotStr(''' + +''') +icon_calendar_phone16_regular = NotStr(''' + +''') +icon_window_header_vertical20_filled = NotStr(''' + +''') +icon_mail_inbox_checkmark16_regular = NotStr(''' + +''') +icon_clipboard_checkmark24_filled = NotStr(''' + +''') +icon_arrow_step_in_right24_filled = NotStr(''' + +''') +icon_send_clock24_regular = NotStr(''' + + + + +''') +icon_bug24_regular = NotStr(''' + +''') +icon_comment_multiple_link28_regular = NotStr(''' + +''') +icon_fps3048_filled = NotStr(''' + +''') +icon_document_text20_regular = NotStr(''' + +''') +icon_text_column_three20_filled = NotStr(''' + +''') +icon_arrow_circle_left24_regular = NotStr(''' + +''') +icon_clipboard_search24_filled = NotStr(''' + +''') +icon_bed20_filled = NotStr(''' + +''') +icon_camera24_filled = NotStr(''' + +''') +icon_document_one_page20_filled = NotStr(''' + +''') +icon_board_split48_regular = NotStr(''' + +''') +icon_star48_filled = NotStr(''' + +''') +icon_weather_rain_showers_night24_regular = NotStr(''' + +''') +icon_mention20_filled = NotStr(''' + +''') +icon_rewind24_regular = NotStr(''' + +''') +icon_person_chat20_filled = NotStr(''' + +''') +icon_emoji_sparkle24_filled = NotStr(''' + +''') +icon_camera_edit20_regular = NotStr(''' + +''') +icon_column_triple_edit20_filled = NotStr(''' + +''') +icon_document_link20_regular = NotStr(''' + +''') +icon_trophy20_filled = NotStr(''' + +''') +icon_collections_add20_filled = NotStr(''' + +''') +icon_board24_regular = NotStr(''' + +''') +icon_table_cells_split28_regular = NotStr(''' + +''') +icon_briefcase_off24_regular = NotStr(''' + +''') +icon_arrow_autofit_up20_filled = NotStr(''' + +''') +icon_arrow_routing_rectangle_multiple20_regular = NotStr(''' + +''') +icon_organization32_filled = NotStr(''' + +''') +icon_paint_brush16_regular = NotStr(''' + +''') +icon_backpack24_regular = NotStr(''' + +''') +icon_channel_alert48_filled = NotStr(''' + +''') +icon_link20_filled = NotStr(''' + +''') +icon_position_to_front20_regular = NotStr(''' + +''') +icon_text_number_list_ltr20_regular = NotStr(''' + +''') +icon_clipboard_bullet_list_ltr20_regular = NotStr(''' + +''') +icon_align_center_vertical20_regular = NotStr(''' + +''') +icon_arrow_reply_all24_filled = NotStr(''' + +''') +icon_flip_horizontal16_filled = NotStr(''' + +''') +icon_weather_moon_off28_filled = NotStr(''' + +''') +icon_music_note216_regular = NotStr(''' + +''') +icon_edit_arrow_back16_regular = NotStr(''' + +''') +icon_patient32_regular = NotStr(''' + +''') +icon_multiplier2_x28_regular = NotStr(''' + +''') +icon_slide_add24_filled = NotStr(''' + +''') +icon_arrow_right24_filled = NotStr(''' + +''') +icon_arrow_square_down24_filled = NotStr(''' + +''') +icon_person532_regular = NotStr(''' + +''') +icon_shopping_bag_play20_filled = NotStr(''' + +''') +icon_mail_arrow_down20_regular = NotStr(''' + +''') +icon_box_multiple_checkmark20_filled = NotStr(''' + +''') +icon_key_reset24_regular = NotStr(''' + +''') +icon_expand_up_left28_filled = NotStr(''' + +''') +icon_document_page_top_left24_filled = NotStr(''' + +''') +icon_text_subscript24_filled = NotStr(''' + +''') +icon_arrow_redo20_regular = NotStr(''' + +''') +icon_image_alt_text16_filled = NotStr(''' + +''') +icon_person_prohibited28_filled = NotStr(''' + +''') +icon_lock_closed32_regular = NotStr(''' + +''') +icon_notebook24_regular = NotStr(''' + +''') +icon_qr_code24_filled = NotStr(''' + +''') +icon_building_multiple24_filled = NotStr(''' + +''') +icon_animal_turtle16_filled = NotStr(''' + +''') +icon_circle_line12_regular = NotStr(''' + +''') +icon_panel_top_expand20_filled = NotStr(''' + +''') +icon_chat_multiple16_filled = NotStr(''' + +''') +icon_mail_inbox28_regular = NotStr(''' + +''') +icon_book_database20_regular = NotStr(''' + +''') +icon_flag_pride24_filled = NotStr(''' + + + + + + + + + + +''') +icon_border_outside24_regular = NotStr(''' + +''') +icon_document_heart_pulse24_filled = NotStr(''' + +''') +icon_headphones32_filled = NotStr(''' + +''') +icon_color_fill20_regular = NotStr(''' + +''') +icon_hand_left16_filled = NotStr(''' + +''') +icon_text_position_front20_filled = NotStr(''' + +''') +icon_password24_regular = NotStr(''' + +''') +icon_xray24_filled = NotStr(''' + +''') +icon_slide_transition24_regular = NotStr(''' + +''') +icon_hand_draw24_filled = NotStr(''' + +''') +icon_image_add24_regular = NotStr(''' + +''') +icon_maximize28_filled = NotStr(''' + +''') +icon_shopping_bag_pause20_filled = NotStr(''' + +''') +icon_shopping_bag_dismiss24_regular = NotStr(''' + +''') +icon_beach48_filled = NotStr(''' + +''') +icon_dismiss_circle16_regular = NotStr(''' + +''') +icon_scan_type_off20_filled = NotStr(''' + +''') +icon_document_text_clock20_filled = NotStr(''' + +''') +icon_skip_forward3020_regular = NotStr(''' + +''') +icon_checkbox_person24_filled = NotStr(''' + +''') +icon_arrow_reply_all24_regular = NotStr(''' + +''') +icon_column_edit20_filled = NotStr(''' + +''') +icon_arrow_bounce20_filled = NotStr(''' + +''') +icon_inprivate_account28_regular = NotStr(''' + +''') +icon_people_edit20_filled = NotStr(''' + +''') +icon_map24_filled = NotStr(''' + +''') +icon_mail_clock20_filled = NotStr(''' + +''') +icon_person_settings20_filled = NotStr(''' + +''') +icon_people_queue24_regular = NotStr(''' + +''') +icon_call_add20_filled = NotStr(''' + +''') +icon_flowchart20_regular = NotStr(''' + +''') +icon_document_pdf16_filled = NotStr(''' + +''') +icon_learning_app24_filled = NotStr(''' + +''') +icon_drawer_arrow_download24_filled = NotStr(''' + +''') +icon_trophy_off20_filled = NotStr(''' + +''') +icon_window_console20_filled = NotStr(''' + +''') +icon_chevron_right12_filled = NotStr(''' + +''') +icon_premium32_filled = NotStr(''' + +''') +icon_book_open_globe20_regular = NotStr(''' + + + + + + + + + +''') +icon_bluetooth_connected20_regular = NotStr(''' + +''') +icon_crop_interim24_regular = NotStr(''' + +''') +icon_square_hint_sparkles28_filled = NotStr(''' + +''') +icon_compass_northwest28_filled = NotStr(''' + +''') +icon_window_new16_regular = NotStr(''' + +''') +icon_book_open16_filled = NotStr(''' + +''') +icon_guest24_filled = NotStr(''' + +''') +icon_doctor28_filled = NotStr(''' + +''') +icon_branch_fork_hint20_regular = NotStr(''' + +''') +icon_filter_dismiss16_filled = NotStr(''' + +''') +icon_tab_shield_dismiss20_regular = NotStr(''' + +''') +icon_shield_lock20_filled = NotStr(''' + +''') +icon_slide_multiple_search24_filled = NotStr(''' + +''') +icon_text_expand24_filled = NotStr(''' + +''') +icon_arrow_trending16_regular = NotStr(''' + +''') +icon_weather_snow_shower_night48_filled = NotStr(''' + +''') +icon_apps_list_detail24_regular = NotStr(''' + +''') +icon_people_toolbox16_filled = NotStr(''' + +''') +icon_table_edit20_regular = NotStr(''' + +''') +icon_text_align_distributed_vertical24_filled = NotStr(''' + +''') +icon_comment_checkmark24_regular = NotStr(''' + +''') +icon_zoom_in20_regular = NotStr(''' + +''') +icon_wifi320_filled = NotStr(''' + +''') +icon_arrow_circle_down28_filled = NotStr(''' + +''') +icon_arrow_hook_down_left20_regular = NotStr(''' + +''') +icon_document_arrow_right20_filled = NotStr(''' + +''') +icon_channel_add20_regular = NotStr(''' + +''') +icon_text_superscript16_regular = NotStr(''' + +''') +icon_lock_closed12_filled = NotStr(''' + +''') +icon_shield_prohibited24_filled = NotStr(''' + +''') +icon_next20_filled = NotStr(''' + +''') +icon_add_square20_regular = NotStr(''' + +''') +icon_weather_sunny20_filled = NotStr(''' + +''') +icon_inprivate_account24_regular = NotStr(''' + +''') +icon_local_language28_filled = NotStr(''' + +''') +icon_box_checkmark24_filled = NotStr(''' + +''') +icon_building_retail_toolbox24_regular = NotStr(''' + +''') +icon_book_coins20_regular = NotStr(''' + +''') +icon_table_freeze_column20_regular = NotStr(''' + +''') +icon_border_bottom20_filled = NotStr(''' + +''') +icon_calligraphy_pen24_filled = NotStr(''' + +''') +icon_text_color16_filled = NotStr(''' + +''') +icon_flow16_regular = NotStr(''' + +''') +icon_guardian28_regular = NotStr(''' + +''') +icon_cloud_off16_regular = NotStr(''' + +''') +icon_paint_bucket24_regular = NotStr(''' + +''') +icon_border_bottom_thick20_regular = NotStr(''' + +''') +icon_mail_inbox_add20_filled = NotStr(''' + +''') +icon_tab_desktop20_regular = NotStr(''' + +''') +icon_text_grammar_wand16_filled = NotStr(''' + +''') +icon_calendar_reply24_regular = NotStr(''' + +''') +icon_battery_saver24_regular = NotStr(''' + +''') +icon_double_tap_swipe_down24_regular = NotStr(''' + +''') +icon_text_continuous24_filled = NotStr(''' + +''') +icon_align_end_horizontal20_filled = NotStr(''' + + + + +''') +icon_mail_settings16_regular = NotStr(''' + +''') +icon_text_superscript20_regular = NotStr(''' + +''') +icon_battery_warning24_filled = NotStr(''' + +''') +icon_stop20_filled = NotStr(''' + +''') +icon_divider_short24_regular = NotStr(''' + +''') +icon_credit_card_person20_regular = NotStr(''' + +''') +icon_clipboard_error20_regular = NotStr(''' + +''') +icon_desktop_cursor28_regular = NotStr(''' + +''') +icon_arrow_minimize_vertical20_regular = NotStr(''' + +''') +icon_store_microsoft24_regular = NotStr(''' + +''') +icon_receipt24_filled = NotStr(''' + +''') +icon_weather_thunderstorm24_regular = NotStr(''' + +''') +icon_calendar_rtl24_filled = NotStr(''' + +''') +icon_blur16_filled = NotStr(''' + +''') +icon_table_move_right16_regular = NotStr(''' + +''') +icon_pause_off16_filled = NotStr(''' + +''') +icon_backpack20_filled = NotStr(''' + +''') +icon_notebook_section24_filled = NotStr(''' + +''') +icon_guitar28_filled = NotStr(''' + +''') +icon_shield_task20_filled = NotStr(''' + +''') +icon_cellular_data220_regular = NotStr(''' + +''') +icon_megaphone28_filled = NotStr(''' + +''') +icon_text_position_front24_regular = NotStr(''' + +''') +icon_image_search24_regular = NotStr(''' + +''') +icon_maximize28_regular = NotStr(''' + +''') +icon_text_field24_filled = NotStr(''' + +''') +icon_text_sort_ascending20_regular = NotStr(''' + +''') +icon_weather_snowflake20_filled = NotStr(''' + +''') +icon_mic_sparkle20_regular = NotStr(''' + +''') +icon_glasses_off24_regular = NotStr(''' + +''') +icon_person_tag24_filled = NotStr(''' + +''') +icon_document_page_bottom_right24_regular = NotStr(''' + +''') +icon_globe_video28_filled = NotStr(''' + +''') +icon_shopping_bag_play20_regular = NotStr(''' + +''') +icon_folder_arrow_up16_filled = NotStr(''' + +''') +icon_arrow_down28_regular = NotStr(''' + +''') +icon_shape_exclude16_regular = NotStr(''' + +''') +icon_wallet20_regular = NotStr(''' + +''') +icon_hat_graduation20_regular = NotStr(''' + +''') +icon_road_cone20_regular = NotStr(''' + +''') +icon_clock32_regular = NotStr(''' + +''') +icon_games28_filled = NotStr(''' + +''') +icon_lock_closed24_regular = NotStr(''' + +''') +icon_ticket_horizontal24_filled = NotStr(''' + +''') +icon_align_right16_regular = NotStr(''' + +''') +icon_arrow_hook_up_right20_filled = NotStr(''' + +''') +icon_clipboard_settings20_regular = NotStr(''' + +''') +icon_data_treemap24_regular = NotStr(''' + +''') +icon_math_format_professional24_filled = NotStr(''' + +''') +icon_heart12_regular = NotStr(''' + +''') +icon_calendar_empty28_filled = NotStr(''' + +''') +icon_resize_large16_filled = NotStr(''' + +''') +icon_folder_mail16_filled = NotStr(''' + +''') +icon_food20_regular = NotStr(''' + +''') +icon_chevron_up12_filled = NotStr(''' + +''') +icon_battery124_filled = NotStr(''' + +''') +icon_device_meeting_room32_filled = NotStr(''' + +''') +icon_book_toolbox20_regular = NotStr(''' + +''') +icon_table_insert_row16_filled = NotStr(''' + +''') +icon_font_increase24_filled = NotStr(''' + +''') +icon_check24_regular = NotStr(''' + +''') +icon_view_desktop20_regular = NotStr(''' + +''') +icon_battery524_filled = NotStr(''' + +''') +icon_full_screen_maximize24_filled = NotStr(''' + +''') +icon_camera_add48_filled = NotStr(''' + +''') +icon_brightness_high32_regular = NotStr(''' + +''') +icon_document_settings16_filled = NotStr(''' + +''') +icon_share_screen_person_p20_filled = NotStr(''' + +''') +icon_fps3028_filled = NotStr(''' + +''') +icon_desktop20_regular = NotStr(''' + +''') +icon_star_three_quarter20_filled = NotStr(''' + +''') +icon_speaker_settings24_regular = NotStr(''' + +''') +icon_barcode_scanner24_filled = NotStr(''' + +''') +icon_pulse32_regular = NotStr(''' + +''') +icon_window_arrow_up20_filled = NotStr(''' + +''') +icon_search_info24_filled = NotStr(''' + +''') +icon_toolbox28_regular = NotStr(''' + +''') +icon_multiplier2_x48_regular = NotStr(''' + +''') +icon_document_queue_add24_regular = NotStr(''' + +''') +icon_premium_person20_regular = NotStr(''' + +''') +icon_calendar_multiple32_regular = NotStr(''' + +''') +icon_border_bottom_double24_filled = NotStr(''' + +''') +icon_wallet24_regular = NotStr(''' + +''') +icon_weather_sunny_high48_filled = NotStr(''' + +''') +icon_window_dev_edit16_filled = NotStr(''' + + + + + + +''') +icon_star_arrow_right_start24_regular = NotStr(''' + +''') +icon_checkmark_circle12_regular = NotStr(''' + +''') +icon_arrow_sort_down_lines20_filled = NotStr(''' + +''') +icon_currency_dollar_rupee24_filled = NotStr(''' + +''') +icon_mail_checkmark16_filled = NotStr(''' + +''') +icon_align_left28_filled = NotStr(''' + +''') +icon_phone_vertical_scroll24_regular = NotStr(''' + +''') +icon_wrench20_filled = NotStr(''' + +''') +icon_tab_in_private20_filled = NotStr(''' + +''') +icon_pause_settings20_filled = NotStr(''' + +''') +icon_rectangle_landscape12_regular = NotStr(''' + +''') +icon_important24_filled = NotStr(''' + +''') +icon_multiplier12_x48_regular = NotStr(''' + +''') +icon_fingerprint24_filled = NotStr(''' + +''') +icon_star_edit24_filled = NotStr(''' + +''') +icon_text_number_format24_filled = NotStr(''' + +''') +icon_lightbulb_circle24_filled = NotStr(''' + +''') +icon_circle_edit24_filled = NotStr(''' + + + + +''') +icon_book_contacts32_filled = NotStr(''' + +''') +icon_shield_checkmark16_filled = NotStr(''' + +''') +icon_dual_screen_vibrate24_filled = NotStr(''' + +''') +icon_cursor_hover48_regular = NotStr(''' + +''') +icon_eye_tracking_off24_filled = NotStr(''' + +''') +icon_image24_regular = NotStr(''' + +''') +icon_tag_lock24_regular = NotStr(''' + +''') +icon_zoom_out20_filled = NotStr(''' + +''') +icon_person_edit20_filled = NotStr(''' + +''') +icon_person_tag20_filled = NotStr(''' + +''') +icon_contact_card20_regular = NotStr(''' + +''') +icon_arrow_export_up20_regular = NotStr(''' + +''') +icon_comment_mention20_regular = NotStr(''' + +''') +icon_arrow_clockwise_dashes20_filled = NotStr(''' + +''') +icon_table_simple20_regular = NotStr(''' + +''') +icon_lottery24_filled = NotStr(''' + +''') +icon_select_all_on24_regular = NotStr(''' + +''') +icon_dentist48_regular = NotStr(''' + +''') +icon_chevron_circle_right16_filled = NotStr(''' + +''') +icon_keyboard_layout_float24_regular = NotStr(''' + +''') +icon_tag_multiple20_regular = NotStr(''' + +''') +icon_document_chevron_double24_regular = NotStr(''' + +''') +icon_briefcase_medical20_regular = NotStr(''' + +''') +icon_reading_list_add28_regular = NotStr(''' + +''') +icon_building_shop16_filled = NotStr(''' + +''') +icon_arrow_rotate_counterclockwise24_regular = NotStr(''' + +''') +icon_number_row16_regular = NotStr(''' + +''') +icon_pill16_regular = NotStr(''' + +''') +icon_key_reset24_filled = NotStr(''' + +''') +icon_vehicle_truck_profile24_regular = NotStr(''' + +''') +icon_multiplier18_x20_filled = NotStr(''' + +''') +icon_animal_rabbit16_regular = NotStr(''' + +''') +icon_arrow_curve_down_right20_regular = NotStr(''' + +''') +icon_folder_arrow_right24_regular = NotStr(''' + +''') +icon_font_space_tracking_in20_filled = NotStr(''' + +''') +icon_arrow_export_rtl16_regular = NotStr(''' + +''') +icon_data_scatter24_filled = NotStr(''' + +''') +icon_share_screen_person_p24_regular = NotStr(''' + +''') +icon_cube_sync20_regular = NotStr(''' + +''') +icon_eyedropper20_filled = NotStr(''' + +''') +icon_vote20_regular = NotStr(''' + +''') +icon_scan_thumb_up48_filled = NotStr(''' + +''') +icon_battery220_filled = NotStr(''' + +''') +icon_delete_arrow_back20_regular = NotStr(''' + +''') +icon_dentist24_regular = NotStr(''' + +''') +icon_alert_snooze24_regular = NotStr(''' + +''') +icon_camera_add24_filled = NotStr(''' + +''') +icon_delete20_filled = NotStr(''' + +''') +icon_flag_off48_regular = NotStr(''' + +''') +icon_whiteboard20_filled = NotStr(''' + +''') +icon_arrow_up_left20_filled = NotStr(''' + +''') +icon_syringe24_filled = NotStr(''' + +''') +icon_table_cells_split20_regular = NotStr(''' + +''') +icon_table_settings28_filled = NotStr(''' + +''') +icon_image_multiple16_filled = NotStr(''' + +''') +icon_shield_checkmark28_regular = NotStr(''' + +''') +icon_edit24_regular = NotStr(''' + +''') +icon_pulse28_filled = NotStr(''' + +''') +icon_dentist20_filled = NotStr(''' + +''') +icon_rocket16_regular = NotStr(''' + +''') +icon_classification20_regular = NotStr(''' + +''') +icon_calendar_week_numbers24_filled = NotStr(''' + +''') +icon_arrow_sort_down20_filled = NotStr(''' + +''') +icon_text_bullet_list_square_warning20_filled = NotStr(''' + +''') +icon_leaf_three24_filled = NotStr(''' + +''') +icon_video20_filled = NotStr(''' + +''') +icon_arrow_step_back16_regular = NotStr(''' + +''') +icon_desktop_speaker20_regular = NotStr(''' + +''') +icon_document_bullet_list_multiple24_filled = NotStr(''' + +''') +icon_megaphone_loud24_regular = NotStr(''' + +''') +icon_table_resize_column16_regular = NotStr(''' + +''') +icon_key32_filled = NotStr(''' + +''') +icon_calendar_ltr20_regular = NotStr(''' + +''') +icon_align_top24_filled = NotStr(''' + +''') +icon_flash_auto24_filled = NotStr(''' + +''') +icon_handshake16_regular = NotStr(''' + +''') +icon_toolbox16_regular = NotStr(''' + +''') +icon_table_move_above24_regular = NotStr(''' + +''') +icon_control_button20_filled = NotStr(''' + +''') +icon_text_font16_filled = NotStr(''' + +''') +icon_receipt_add24_filled = NotStr(''' + +''') +icon_document_percent24_filled = NotStr(''' + +''') +icon_person_delete16_regular = NotStr(''' + +''') +icon_app_generic24_regular = NotStr(''' + +''') +icon_line32_regular = NotStr(''' + +''') +icon_scan_type_off20_regular = NotStr(''' + +''') +icon_oval32_filled = NotStr(''' + +''') +icon_arrow_move20_filled = NotStr(''' + +''') +icon_record_stop28_filled = NotStr(''' + +''') +icon_table_freeze_column_and_row20_filled = NotStr(''' + +''') +icon_people_team_toolbox24_filled = NotStr(''' + +''') +icon_chat_dismiss24_filled = NotStr(''' + +''') +icon_window24_filled = NotStr(''' + +''') +icon_weather_partly_cloudy_night20_filled = NotStr(''' + +''') +icon_data_sunburst24_regular = NotStr(''' + +''') +icon_weather_snow48_filled = NotStr(''' + +''') +icon_pin12_regular = NotStr(''' + +''') +icon_star_one_quarter20_filled = NotStr(''' + +''') +icon_door_arrow_right16_regular = NotStr(''' + +''') +icon_building_retail_shield20_regular = NotStr(''' + +''') +icon_add_square24_regular = NotStr(''' + +''') +icon_app_store24_regular = NotStr(''' + +''') +icon_calendar_reply16_filled = NotStr(''' + +''') +icon_align_bottom32_filled = NotStr(''' + +''') +icon_tasks_app28_regular = NotStr(''' + +''') +icon_person_subtract16_regular = NotStr(''' + +''') +icon_building16_regular = NotStr(''' + +''') +icon_building_government24_regular = NotStr(''' + +''') +icon_iot24_filled = NotStr(''' + +''') +icon_tap_single48_regular = NotStr(''' + +''') +icon_battery_checkmark20_filled = NotStr(''' + +''') +icon_lightbulb16_filled = NotStr(''' + +''') +icon_data_usage_edit24_regular = NotStr(''' + +''') +icon_syringe20_filled = NotStr(''' + +''') +icon_scan_camera16_regular = NotStr(''' + +''') +icon_print16_regular = NotStr(''' + +''') +icon_calendar_arrow_down20_filled = NotStr(''' + +''') +icon_search_settings20_filled = NotStr(''' + +''') +icon_shifts28_filled = NotStr(''' + +''') +icon_table_move_left16_filled = NotStr(''' + +''') +icon_people_community24_regular = NotStr(''' + +''') +icon_f_stop20_filled = NotStr(''' + +''') +icon_chevron_circle_down12_filled = NotStr(''' + +''') +icon_math_symbols48_regular = NotStr(''' + +''') +icon_text_font20_filled = NotStr(''' + +''') +icon_window_arrow_up16_filled = NotStr(''' + +''') +icon_position_to_back24_regular = NotStr(''' + +''') +icon_clipboard_code24_regular = NotStr(''' + +''') +icon_cursor_click24_filled = NotStr(''' + +''') +icon_video360_off20_regular = NotStr(''' + +''') +icon_savings24_regular = NotStr(''' + +''') +icon_shifts_question_mark24_filled = NotStr(''' + +''') +icon_mail_all_unread20_filled = NotStr(''' + +''') +icon_code16_filled = NotStr(''' + +''') +icon_next24_regular = NotStr(''' + +''') +icon_document_split_hint24_regular = NotStr(''' + +''') +icon_tablet20_filled = NotStr(''' + +''') +icon_arrow_autofit_width24_regular = NotStr(''' + +''') +icon_meet_now48_filled = NotStr(''' + +''') +icon_subtract_circle_arrow_forward20_filled = NotStr(''' + +''') +icon_timer1024_regular = NotStr(''' + +''') +icon_data_bar_vertical24_regular = NotStr(''' + +''') +icon_divider_tall16_regular = NotStr(''' + +''') +icon_building_skyscraper16_filled = NotStr(''' + +''') +icon_arrow_bounce16_regular = NotStr(''' + +''') +icon_document_header_dismiss24_regular = NotStr(''' + +''') +icon_draw_text20_filled = NotStr(''' + +''') +icon_premium_person24_regular = NotStr(''' + +''') +icon_document_briefcase20_filled = NotStr(''' + +''') +icon_arrow_trending_text20_regular = NotStr(''' + +''') +icon_arrow_export_ltr20_filled = NotStr(''' + +''') +icon_person_prohibited16_regular = NotStr(''' + +''') +icon_table_move_below28_regular = NotStr(''' + +''') +icon_skip_forward1048_regular = NotStr(''' + +''') +icon_building24_filled = NotStr(''' + +''') +icon_person_prohibited20_regular = NotStr(''' + +''') +icon_star_prohibited20_regular = NotStr(''' + +''') +icon_contact_card_group48_regular = NotStr(''' + +''') +icon_tab24_filled = NotStr(''' + +''') +icon_clock_dismiss24_regular = NotStr(''' + +''') +icon_pause24_regular = NotStr(''' + +''') +icon_document_multiple16_regular = NotStr(''' + +''') +icon_cube24_filled = NotStr(''' + +''') +icon_arrow_bidirectional_up_down16_filled = NotStr(''' + +''') +icon_comment_checkmark16_regular = NotStr(''' + +''') +icon_add20_regular = NotStr(''' + +''') +icon_music_note120_filled = NotStr(''' + +''') +icon_square_dismiss16_regular = NotStr(''' + +''') +icon_document_percent20_filled = NotStr(''' + +''') +icon_fps3020_regular = NotStr(''' + +''') +icon_board_split28_filled = NotStr(''' + +''') +icon_braces_variable24_regular = NotStr(''' + +''') +icon_mail28_filled = NotStr(''' + +''') +icon_camera_dome48_filled = NotStr(''' + +''') +icon_meet_now48_regular = NotStr(''' + +''') +icon_broad_activity_feed20_filled = NotStr(''' + +''') +icon_document_copy24_regular = NotStr(''' + +''') +icon_settings28_filled = NotStr(''' + +''') +icon_comment_off20_regular = NotStr(''' + +''') +icon_data_pie20_filled = NotStr(''' + +''') +icon_scan_dash12_filled = NotStr(''' + +''') +icon_table_cell_edit20_filled = NotStr(''' + +''') +icon_document_heart_pulse24_regular = NotStr(''' + +''') +icon_phone_update_checkmark24_filled = NotStr(''' + +''') +icon_cube_tree20_filled = NotStr(''' + +''') +icon_cloud_archive48_regular = NotStr(''' + +''') +icon_stack_star16_filled = NotStr(''' + +''') +icon_phone_add24_regular = NotStr(''' + +''') +icon_chevron_circle_up48_regular = NotStr(''' + +''') +icon_inking_tool20_filled = NotStr(''' + +''') +icon_vehicle_bus20_regular = NotStr(''' + +''') +icon_animal_dog16_regular = NotStr(''' + +''') +icon_folder_person16_filled = NotStr(''' + +''') +icon_presenter24_regular = NotStr(''' + +''') +icon_chart_person20_filled = NotStr(''' + +''') +icon_table_freeze_column28_regular = NotStr(''' + +''') +icon_align_top24_regular = NotStr(''' + +''') +icon_panel_bottom_expand20_regular = NotStr(''' + +''') +icon_calendar_rtl16_filled = NotStr(''' + +''') +icon_apps_list20_regular = NotStr(''' + +''') +icon_calendar_empty32_regular = NotStr(''' + +''') +icon_skip_forward3028_filled = NotStr(''' + +''') +icon_arrow_counterclockwise12_filled = NotStr(''' + +''') +icon_breakout_room20_filled = NotStr(''' + +''') +icon_app_folder24_filled = NotStr(''' + +''') +icon_number_symbol32_filled = NotStr(''' + +''') +icon_fast_forward20_regular = NotStr(''' + +''') +icon_book_open_microphone20_filled = NotStr(''' + +''') +icon_arrow_forward48_filled = NotStr(''' + +''') +icon_diagram24_filled = NotStr(''' + +''') +icon_clock20_regular = NotStr(''' + +''') +icon_scan_camera24_filled = NotStr(''' + +''') +icon_arrow_circle_right24_regular = NotStr(''' + +''') +icon_location_arrow_left48_filled = NotStr(''' + +''') +icon_pause48_regular = NotStr(''' + +''') +icon_midi20_regular = NotStr(''' + +''') +icon_reading_list24_regular = NotStr(''' + +''') +icon_text_align_justify_low20_regular = NotStr(''' + +''') +icon_luggage20_filled = NotStr(''' + +''') +icon_ink_stroke24_filled = NotStr(''' + +''') +icon_person632_regular = NotStr(''' + +''') +icon_table_resize_row28_regular = NotStr(''' + +''') +icon_guardian24_regular = NotStr(''' + +''') +icon_chat48_regular = NotStr(''' + +''') +icon_image_edit24_regular = NotStr(''' + +''') +icon_text_font_size16_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_right24_regular = NotStr(''' + +''') +icon_developer_board_search20_filled = NotStr(''' + +''') +icon_chevron_double_down16_regular = NotStr(''' + +''') +icon_arrow_step_in_left28_filled = NotStr(''' + +''') +icon_shield_dismiss16_filled = NotStr(''' + +''') +icon_shifts_activity20_filled = NotStr(''' + +''') +icon_store_microsoft16_filled = NotStr(''' + +''') +icon_calendar_mail16_regular = NotStr(''' + +''') +icon_align_stretch_horizontal20_regular = NotStr(''' + + + + + + +''') +icon_food_cake12_filled = NotStr(''' + +''') +icon_blur20_regular = NotStr(''' + +''') +icon_text_first_line20_regular = NotStr(''' + +''') +icon_mail_checkmark16_regular = NotStr(''' + +''') +icon_table_move_above24_filled = NotStr(''' + +''') +icon_document_header_arrow_down20_filled = NotStr(''' + +''') +icon_mail_arrow_up24_filled = NotStr(''' + +''') +icon_split_horizontal20_regular = NotStr(''' + +''') +icon_box_multiple_arrow_left24_filled = NotStr(''' + +''') +icon_gif24_regular = NotStr(''' + +''') +icon_calendar_empty20_regular = NotStr(''' + +''') +icon_mail48_regular = NotStr(''' + +''') +icon_phone_desktop20_filled = NotStr(''' + +''') +icon_people_community20_filled = NotStr(''' + +''') +icon_text_wrap24_filled = NotStr(''' + +''') +icon_chat_mail20_regular = NotStr(''' + +''') +icon_add_subtract_circle20_regular = NotStr(''' + +''') +icon_mail_inbox20_regular = NotStr(''' + +''') +icon_image_copy24_filled = NotStr(''' + +''') +icon_receipt20_regular = NotStr(''' + +''') +icon_math_format_linear24_regular = NotStr(''' + +''') +icon_table_switch24_filled = NotStr(''' + +''') +icon_document_landscape24_regular = NotStr(''' + +''') +icon_desktop_keyboard16_regular = NotStr(''' + +''') +icon_cast20_filled = NotStr(''' + +''') +icon_flag_off20_regular = NotStr(''' + +''') +icon_arrow_circle_right32_regular = NotStr(''' + +''') +icon_wifi220_regular = NotStr(''' + +''') +icon_building_bank20_filled = NotStr(''' + +''') +icon_target32_regular = NotStr(''' + +''') +icon_picture_in_picture_enter20_regular = NotStr(''' + +''') +icon_table_insert_row20_regular = NotStr(''' + +''') +icon_food_toast24_regular = NotStr(''' + +''') +icon_person28_filled = NotStr(''' + +''') +icon_database20_filled = NotStr(''' + +''') +icon_folder_sync24_regular = NotStr(''' + +''') +icon_calendar_clock16_filled = NotStr(''' + +''') +icon_re_order_dots_vertical20_filled = NotStr(''' + +''') +icon_document_lock28_filled = NotStr(''' + +''') +icon_text_grammar_wand20_regular = NotStr(''' + +''') +icon_double_tap_swipe_up20_regular = NotStr(''' + +''') +icon_building_bank24_filled = NotStr(''' + +''') +icon_earth24_regular = NotStr(''' + +''') +icon_table48_filled = NotStr(''' + +''') +icon_arrow_counterclockwise32_filled = NotStr(''' + +''') +icon_run16_regular = NotStr(''' + +''') +icon_multiplier5_x48_filled = NotStr(''' + +''') +icon_calendar_error20_regular = NotStr(''' + +''') +icon_mail_shield16_regular = NotStr(''' + +''') +icon_table_freeze_row28_regular = NotStr(''' + +''') +icon_arrow_down20_filled = NotStr(''' + +''') +icon_grid20_regular = NotStr(''' + +''') +icon_people_community16_filled = NotStr(''' + +''') +icon_branch_fork_hint20_filled = NotStr(''' + +''') +icon_weather_moon_off16_filled = NotStr(''' + +''') +icon_mic_prohibited28_regular = NotStr(''' + +''') +icon_text_underline16_filled = NotStr(''' + +''') +icon_multiplier5_x48_regular = NotStr(''' + +''') +icon_text_change_case16_filled = NotStr(''' + +''') +icon_box_checkmark20_filled = NotStr(''' + +''') +icon_timer20_regular = NotStr(''' + +''') +icon_speaker220_filled = NotStr(''' + +''') +icon_book_toolbox24_filled = NotStr(''' + +''') +icon_arrow_down24_filled = NotStr(''' + +''') +icon_bowl_chopsticks16_filled = NotStr(''' + +''') +icon_filter28_regular = NotStr(''' + +''') +icon_color20_regular = NotStr(''' + +''') +icon_history16_regular = NotStr(''' + +''') +icon_contact_card32_regular = NotStr(''' + +''') +icon_xbox_console24_regular = NotStr(''' + +''') +icon_keyboard_shift_uppercase24_regular = NotStr(''' + +''') +icon_comment_checkmark20_regular = NotStr(''' + +''') +icon_receipt24_regular = NotStr(''' + +''') +icon_flip_vertical48_filled = NotStr(''' + +''') +icon_decimal_arrow_right20_regular = NotStr(''' + +''') +icon_glasses_off20_regular = NotStr(''' + +''') +icon_arrow_autofit_height_dotted20_filled = NotStr(''' + +''') +icon_table_simple28_regular = NotStr(''' + +''') +icon_fps24024_regular = NotStr(''' + +''') +icon_send24_regular = NotStr(''' + +''') +icon_print_add24_filled = NotStr(''' + +''') +icon_align_bottom20_filled = NotStr(''' + +''') +icon_slide_layout20_regular = NotStr(''' + +''') +icon_add_subtract_circle28_filled = NotStr(''' + +''') +icon_cloud_off32_filled = NotStr(''' + +''') +icon_eye_tracking_off16_filled = NotStr(''' + +''') +icon_ratio_one_to_one24_filled = NotStr(''' + +''') +icon_document_queue_add24_filled = NotStr(''' + +''') +icon_document_copy16_filled = NotStr(''' + +''') +icon_share_screen_stop28_regular = NotStr(''' + +''') +icon_clipboard24_regular = NotStr(''' + +''') +icon_calligraphy_pen_checkmark20_regular = NotStr(''' + + + + +''') +icon_multiplier15_x24_regular = NotStr(''' + +''') +icon_guitar24_regular = NotStr(''' + +''') +icon_qr_code24_regular = NotStr(''' + +''') +icon_hat_graduation16_filled = NotStr(''' + +''') +icon_cut24_filled = NotStr(''' + +''') +icon_sport_soccer16_filled = NotStr(''' + +''') +icon_arrow_clockwise24_filled = NotStr(''' + +''') +icon_database_search20_filled = NotStr(''' + +''') +icon_image_copy24_regular = NotStr(''' + +''') +icon_gift_card16_filled = NotStr(''' + + + + + + + + +''') +icon_puzzle_cube16_filled = NotStr(''' + +''') +icon_rss24_regular = NotStr(''' + + + + + + +''') +icon_open_off24_regular = NotStr(''' + +''') +icon_record16_filled = NotStr(''' + +''') +icon_delete_arrow_back16_regular = NotStr(''' + +''') +icon_arrow_bidirectional_up_down16_regular = NotStr(''' + +''') +icon_arrow_collapse_all24_regular = NotStr(''' + +''') +icon_headphones_sound_wave48_regular = NotStr(''' + +''') +icon_document_lock32_regular = NotStr(''' + +''') +icon_text_indent_decrease_ltr20_regular = NotStr(''' + +''') +icon_document_table16_regular = NotStr(''' + +''') +icon_calendar_multiple20_regular = NotStr(''' + +''') +icon_subtract_square_multiple20_filled = NotStr(''' + +''') +icon_tag_off24_regular = NotStr(''' + +''') +icon_table_lightning24_filled = NotStr(''' + +''') +icon_error_circle24_filled = NotStr(''' + +''') +icon_shield20_filled = NotStr(''' + +''') +icon_diversity48_filled = NotStr(''' + +''') +icon_window_multiple16_filled = NotStr(''' + +''') +icon_photo_filter24_filled = NotStr(''' + +''') +icon_panel_left_contract24_filled = NotStr(''' + +''') +icon_chevron_circle_up20_regular = NotStr(''' + +''') +icon_orientation24_filled = NotStr(''' + +''') +icon_location_add16_regular = NotStr(''' + +''') +icon_tag_question_mark32_filled = NotStr(''' + +''') +icon_dual_screen_status_bar24_regular = NotStr(''' + +''') +icon_wifi_lock24_filled = NotStr(''' + +''') +icon_tag_question_mark24_regular = NotStr(''' + +''') +icon_shifts20_filled = NotStr(''' + +''') +icon_preview_link20_filled = NotStr(''' + +''') +icon_star_settings20_regular = NotStr(''' + +''') +icon_music_note2_play20_filled = NotStr(''' + +''') +icon_text_indent_decrease_rtl20_regular = NotStr(''' + +''') +icon_device_meeting_room20_regular = NotStr(''' + +''') +icon_arrow_up_right20_filled = NotStr(''' + +''') +icon_border_all24_filled = NotStr(''' + +''') +icon_cube16_filled = NotStr(''' + +''') +icon_door20_filled = NotStr(''' + +''') +icon_people24_filled = NotStr(''' + +''') +icon_hand_left20_filled = NotStr(''' + +''') +icon_call_dismiss20_regular = NotStr(''' + +''') +icon_text_align_distributed_vertical20_regular = NotStr(''' + +''') +icon_notepad_person16_filled = NotStr(''' + +''') +icon_attach_text20_filled = NotStr(''' + +''') +icon_tab_desktop16_regular = NotStr(''' + +''') +icon_device_meeting_room_remote24_filled = NotStr(''' + +''') +icon_send_clock20_regular = NotStr(''' + +''') +icon_call_missed20_filled = NotStr(''' + +''') +icon_text_description24_regular = NotStr(''' + +''') +icon_globe_add24_regular = NotStr(''' + +''') +icon_arrow_clockwise32_regular = NotStr(''' + +''') +icon_box_search24_filled = NotStr(''' + +''') +icon_video_person_star24_filled = NotStr(''' + +''') +icon_filter16_filled = NotStr(''' + +''') +icon_clock_arrow_download20_regular = NotStr(''' + +''') +icon_video_person_call32_filled = NotStr(''' + +''') +icon_re_order16_filled = NotStr(''' + +''') +icon_comment_arrow_right24_filled = NotStr(''' + +''') +icon_flash_settings20_filled = NotStr(''' + +''') +icon_star_half12_filled = NotStr(''' + +''') +icon_book_toolbox20_filled = NotStr(''' + +''') +icon_multiplier5_x28_regular = NotStr(''' + +''') +icon_video20_regular = NotStr(''' + +''') +icon_timer224_regular = NotStr(''' + +''') +icon_image_arrow_forward24_filled = NotStr(''' + +''') +icon_door_arrow_right16_filled = NotStr(''' + +''') +icon_person_support20_regular = NotStr(''' + +''') +icon_luggage48_filled = NotStr(''' + +''') +icon_textbox_align_middle20_regular = NotStr(''' + +''') +icon_puzzle_piece20_regular = NotStr(''' + +''') +icon_handshake24_filled = NotStr(''' + +''') +icon_speaker016_regular = NotStr(''' + +''') +icon_food_grains20_filled = NotStr(''' + +''') +icon_diamond48_filled = NotStr(''' + +''') +icon_battery320_regular = NotStr(''' + +''') +icon_building_skyscraper24_filled = NotStr(''' + +''') +icon_fps24024_filled = NotStr(''' + +''') +icon_channel_share16_filled = NotStr(''' + +''') +icon_walkie_talkie20_filled = NotStr(''' + + + + +''') +icon_smartwatch_dot20_filled = NotStr(''' + +''') +icon_chart_person20_regular = NotStr(''' + +''') +icon_auto_fit_width24_regular = NotStr(''' + +''') +icon_dialpad48_regular = NotStr(''' + +''') +icon_text_bullet_list_rtl24_filled = NotStr(''' + +''') +icon_compass_northwest20_filled = NotStr(''' + +''') +icon_book20_regular = NotStr(''' + +''') +icon_mic24_filled = NotStr(''' + +''') +icon_food_pizza24_regular = NotStr(''' + +''') +icon_eye_off16_regular = NotStr(''' + +''') +icon_lock_shield20_filled = NotStr(''' + +''') +icon_dual_screen_clock24_filled = NotStr(''' + +''') +icon_dual_screen_arrow_right24_filled = NotStr(''' + +''') +icon_phone_desktop_add20_filled = NotStr(''' + +''') +icon_column_triple20_regular = NotStr(''' + +''') +icon_people24_regular = NotStr(''' + +''') +icon_inprivate_account20_filled = NotStr(''' + +''') +icon_error_circle_settings20_regular = NotStr(''' + +''') +icon_device_meeting_room_remote28_filled = NotStr(''' + +''') +icon_protocol_handler16_regular = NotStr(''' + +''') +icon_settings32_filled = NotStr(''' + +''') +icon_vehicle_bicycle24_filled = NotStr(''' + +''') +icon_wrench_screwdriver24_filled = NotStr(''' + +''') +icon_camera20_regular = NotStr(''' + +''') +icon_video_person_star20_filled = NotStr(''' + +''') +icon_record_stop20_regular = NotStr(''' + +''') +icon_building_bank_link16_filled = NotStr(''' + +''') +icon_paint_brush_arrow_up24_regular = NotStr(''' + +''') +icon_speaker_edit24_filled = NotStr(''' + +''') +icon_video_play_pause24_filled = NotStr(''' + +''') +icon_shape_union16_filled = NotStr(''' + +''') +icon_vehicle_car_collision32_regular = NotStr(''' + +''') +icon_next28_regular = NotStr(''' + +''') +icon_phone16_regular = NotStr(''' + +''') +icon_arrow_wrap20_regular = NotStr(''' + +''') +icon_arrow_up12_regular = NotStr(''' + +''') +icon_document_page_top_right20_regular = NotStr(''' + +''') +icon_luggage48_regular = NotStr(''' + +''') +icon_movies_and_tv20_filled = NotStr(''' + +''') +icon_arrow_sync_off20_filled = NotStr(''' + +''') +icon_mail_off24_filled = NotStr(''' + +''') +icon_arrow_upload16_regular = NotStr(''' + +''') +icon_data_usage_toolbox20_regular = NotStr(''' + +''') +icon_person_question_mark24_filled = NotStr(''' + +''') +icon_tab_shield_dismiss24_regular = NotStr(''' + +''') +icon_document_landscape20_filled = NotStr(''' + +''') +icon_arrow_step_back20_filled = NotStr(''' + +''') +icon_person_lightbulb24_filled = NotStr(''' + +''') +icon_headset_add24_regular = NotStr(''' + +''') +icon_chat_off24_filled = NotStr(''' + + + + +''') +icon_font_space_tracking_in24_regular = NotStr(''' + +''') +icon_weather_partly_cloudy_day24_filled = NotStr(''' + +''') +icon_clipboard_task24_regular = NotStr(''' + +''') +icon_shopping_bag_pause20_regular = NotStr(''' + +''') +icon_arrow_left24_filled = NotStr(''' + +''') +icon_clock_dismiss24_filled = NotStr(''' + +''') +icon_text_t20_regular = NotStr(''' + +''') +icon_multiplier18_x24_regular = NotStr(''' + +''') +icon_flip_horizontal28_filled = NotStr(''' + +''') +icon_arrow_step_over16_filled = NotStr(''' + +''') +icon_arrow_step_in_right12_filled = NotStr(''' + +''') +icon_scan_thumb_up28_filled = NotStr(''' + +''') +icon_info12_regular = NotStr(''' + +''') +icon_text_description20_filled = NotStr(''' + +''') +icon_align_left16_filled = NotStr(''' + +''') +icon_ribbon16_filled = NotStr(''' + +''') +icon_mail_dismiss16_filled = NotStr(''' + +''') +icon_contact_card32_filled = NotStr(''' + +''') +icon_weather_sunny_low24_filled = NotStr(''' + +''') +icon_vehicle_truck24_filled = NotStr(''' + +''') +icon_spinner_ios20_regular = NotStr(''' + +''') +icon_arrow_left32_filled = NotStr(''' + +''') +icon_globe_person20_regular = NotStr(''' + +''') +icon_vehicle_ship24_filled = NotStr(''' + +''') +icon_bluetooth_searching24_filled = NotStr(''' + +''') +icon_weather_duststorm20_filled = NotStr(''' + +''') +icon_decimal_arrow_left24_regular = NotStr(''' + +''') +icon_dual_screen20_regular = NotStr(''' + +''') +icon_tabs24_filled = NotStr(''' + +''') +icon_person_chat20_regular = NotStr(''' + +''') +icon_channel_arrow_left20_filled = NotStr(''' + +''') +icon_production_checkmark24_filled = NotStr(''' + +''') +icon_text_align_right24_filled = NotStr(''' + +''') +icon_tv_usb48_regular = NotStr(''' + +''') +icon_arrow_circle_left32_regular = NotStr(''' + +''') +icon_tray_item_add20_filled = NotStr(''' + +''') +icon_code24_filled = NotStr(''' + +''') +icon_cloud_sync16_filled = NotStr(''' + +''') +icon_screen_person20_regular = NotStr(''' + +''') +icon_mail_edit20_regular = NotStr(''' + +''') +icon_split_horizontal24_regular = NotStr(''' + +''') +icon_arrow_undo16_filled = NotStr(''' + +''') +icon_backpack32_regular = NotStr(''' + +''') +icon_people_money24_regular = NotStr(''' + +''') +icon_filter_dismiss24_regular = NotStr(''' + + + + + + +''') +icon_mic_sparkle16_regular = NotStr(''' + +''') +icon_arrow_sort_down_lines24_regular = NotStr(''' + +''') +icon_book_information24_filled = NotStr(''' + +''') +icon_tab_add20_filled = NotStr(''' + +''') +icon_building_home16_filled = NotStr(''' + +''') +icon_arrow_circle_up12_filled = NotStr(''' + +''') +icon_link16_filled = NotStr(''' + +''') +icon_channel24_regular = NotStr(''' + +''') +icon_text_number_format20_regular = NotStr(''' + +''') +icon_square32_regular = NotStr(''' + +''') +icon_checkbox124_regular = NotStr(''' + + + + + +''') +icon_cloud_flow20_regular = NotStr(''' + +''') +icon_position_backward24_regular = NotStr(''' + +''') +icon_music_note124_regular = NotStr(''' + +''') +icon_brightness_high24_regular = NotStr(''' + +''') +icon_data_trending16_filled = NotStr(''' + +''') +icon_tv_arrow_right20_regular = NotStr(''' + +''') +icon_open48_regular = NotStr(''' + +''') +icon_highlight_accent24_filled = NotStr(''' + +''') +icon_chevron_left12_regular = NotStr(''' + +''') +icon_video_add24_filled = NotStr(''' + +''') +icon_flash16_regular = NotStr(''' + +''') +icon_text_add_space_before24_filled = NotStr(''' + +''') +icon_hd24_filled = NotStr(''' + +''') +icon_arrow_step_in_left20_regular = NotStr(''' + +''') +icon_text_header320_regular = NotStr(''' + +''') +icon_clipboard_bullet_list_ltr20_filled = NotStr(''' + +''') +icon_text_column_three20_regular = NotStr(''' + +''') +icon_eraser_tool24_filled = NotStr(''' + +''') +icon_box20_filled = NotStr(''' + +''') +icon_multiplier5_x28_filled = NotStr(''' + +''') +icon_luggage16_regular = NotStr(''' + +''') +icon_number_symbol_square24_filled = NotStr(''' + +''') +icon_arrow_circle_right32_filled = NotStr(''' + +''') +icon_border_top_bottom_double24_filled = NotStr(''' + +''') +icon_comment48_regular = NotStr(''' + +''') +icon_clipboard_settings24_filled = NotStr(''' + +''') +icon_clock_pause20_regular = NotStr(''' + +''') +icon_table_resize_row24_regular = NotStr(''' + +''') +icon_resize_image24_regular = NotStr(''' + +''') +icon_arrow_counterclockwise_dashes20_filled = NotStr(''' + +''') +icon_image_copy28_regular = NotStr(''' + +''') +icon_shield_dismiss_shield20_regular = NotStr(''' + +''') +icon_mic_prohibited20_regular = NotStr(''' + +''') +icon_slide_add28_regular = NotStr(''' + +''') +icon_square_hint48_filled = NotStr(''' + +''') +icon_box_arrow_up20_regular = NotStr(''' + +''') +icon_link12_filled = NotStr(''' + +''') +icon_mail_arrow_down16_regular = NotStr(''' + +''') +icon_wifi120_filled = NotStr(''' + +''') +icon_dentist28_regular = NotStr(''' + +''') +icon_heart48_regular = NotStr(''' + +''') +icon_branch_fork_link20_filled = NotStr(''' + +''') +icon_people_lock24_regular = NotStr(''' + +''') +icon_mail_inbox_dismiss16_filled = NotStr(''' + +''') +icon_comment_arrow_left24_regular = NotStr(''' + +''') +icon_calendar_ltr24_regular = NotStr(''' + +''') +icon_select_object_skew_edit20_filled = NotStr(''' + +''') +icon_phone_tablet24_regular = NotStr(''' + +''') +icon_question_circle48_regular = NotStr(''' + +''') +icon_sparkle24_regular = NotStr(''' + +''') +icon_likert16_filled = NotStr(''' + +''') +icon_battery_warning20_regular = NotStr(''' + +''') +icon_inking_tool24_filled = NotStr(''' + +''') +icon_document_table_truck20_filled = NotStr(''' + +''') +icon_people28_regular = NotStr(''' + +''') +icon_delete_off20_regular = NotStr(''' + +''') +icon_notebook_subsection20_regular = NotStr(''' + +''') +icon_data_trending24_regular = NotStr(''' + +''') +icon_app_recent20_regular = NotStr(''' + +''') +icon_search28_regular = NotStr(''' + +''') +icon_open_off48_filled = NotStr(''' + +''') +icon_text_position_top_bottom24_regular = NotStr(''' + +''') +icon_rewind16_filled = NotStr(''' + +''') +icon_document_page_top_left20_regular = NotStr(''' + +''') +icon_diamond28_regular = NotStr(''' + +''') +icon_my_location20_filled = NotStr(''' + +''') +icon_video_person_sparkle24_regular = NotStr(''' + +''') +icon_arrow_curve_up_right20_filled = NotStr(''' + +''') +icon_bezier_curve_square12_regular = NotStr(''' + +''') +icon_color_line_accent20_regular = NotStr(''' + +''') +icon_more_vertical24_filled = NotStr(''' + +''') +icon_text_align_center20_filled = NotStr(''' + +''') +icon_folder28_regular = NotStr(''' + +''') +icon_battery020_filled = NotStr(''' + +''') +icon_thumb_dislike16_regular = NotStr(''' + +''') +icon_port_usb_a24_filled = NotStr(''' + +''') +icon_speaker032_filled = NotStr(''' + +''') +icon_text_paragraph_direction_right20_regular = NotStr(''' + +''') +icon_search32_regular = NotStr(''' + +''') +icon_people_error20_filled = NotStr(''' + +''') +icon_cloud16_filled = NotStr(''' + +''') +icon_communication16_regular = NotStr(''' + +''') +icon_shapes28_filled = NotStr(''' + +''') +icon_arrow_trending_checkmark20_regular = NotStr(''' + +''') +icon_link_square20_regular = NotStr(''' + +''') +icon_emoji_hand28_regular = NotStr(''' + +''') +icon_building_retail24_filled = NotStr(''' + +''') +icon_calendar_rtl28_filled = NotStr(''' + +''') +icon_clipboard_task24_filled = NotStr(''' + +''') +icon_radio_button20_regular = NotStr(''' + +''') +icon_arrow_collapse_all20_filled = NotStr(''' + +''') +icon_cloud_words24_regular = NotStr(''' + +''') +icon_arrow_routing24_filled = NotStr(''' + +''') +icon_molecule16_filled = NotStr(''' + +''') +icon_gift_card20_filled = NotStr(''' + +''') +icon_table_settings24_regular = NotStr(''' + +''') +icon_bowl_chopsticks20_filled = NotStr(''' + +''') +icon_document_heart_pulse20_filled = NotStr(''' + +''') +icon_pentagon32_filled = NotStr(''' + +''') +icon_multiplier5_x20_filled = NotStr(''' + +''') +icon_backpack28_filled = NotStr(''' + +''') +icon_weather_snow_shower_night48_regular = NotStr(''' + +''') +icon_video_person_sparkle16_filled = NotStr(''' + +''') +icon_attach_arrow_right20_filled = NotStr(''' + +''') +icon_subtract_square20_filled = NotStr(''' + +''') +icon_dismiss_square_multiple16_filled = NotStr(''' + +''') +icon_arrow_redo20_filled = NotStr(''' + +''') +icon_receipt_bag20_regular = NotStr(''' + +''') +icon_calendar_edit16_regular = NotStr(''' + +''') +icon_phone_speaker24_filled = NotStr(''' + +''') +icon_iot20_filled = NotStr(''' + +''') +icon_data_usage20_regular = NotStr(''' + +''') +icon_text_color_accent20_filled = NotStr(''' + +''') +icon_question28_filled = NotStr(''' + +''') +icon_video_switch24_regular = NotStr(''' + +''') +icon_dual_screen_header24_regular = NotStr(''' + +''') +icon_weather_sunny20_regular = NotStr(''' + +''') +icon_full_screen_minimize24_regular = NotStr(''' + +''') +icon_globe16_filled = NotStr(''' + +''') +icon_book_clock24_filled = NotStr(''' + +''') +icon_text_bullet_list_square24_regular = NotStr(''' + +''') +icon_predictions24_regular = NotStr(''' + +''') +icon_closed_caption_off16_regular = NotStr(''' + +''') +icon_animal_turtle20_regular = NotStr(''' + +''') +icon_money_calculator20_filled = NotStr(''' + +''') +icon_folder_link28_filled = NotStr(''' + +''') +icon_person_swap24_filled = NotStr(''' + +''') +icon_checkbox_checked24_regular = NotStr(''' + +''') +icon_arrow_down48_regular = NotStr(''' + +''') +icon_data_scatter24_regular = NotStr(''' + +''') +icon_beach32_filled = NotStr(''' + +''') +icon_symbols16_filled = NotStr(''' + +''') +icon_hand_left24_filled = NotStr(''' + +''') +icon_rectangle_landscape48_regular = NotStr(''' + +''') +icon_spinner_ios20_filled = NotStr(''' + +''') +icon_chat32_filled = NotStr(''' + +''') +icon_premium24_filled = NotStr(''' + +''') +icon_arrow_turn_right24_filled = NotStr(''' + +''') +icon_bookmark_multiple48_filled = NotStr(''' + +''') +icon_phone_page_header24_regular = NotStr(''' + +''') +icon_document_queue_multiple24_regular = NotStr(''' + +''') +icon_table_cells_merge20_regular = NotStr(''' + +''') +icon_call_missed24_filled = NotStr(''' + +''') +icon_call_missed28_filled = NotStr(''' + +''') +icon_open32_regular = NotStr(''' + +''') +icon_calendar_clock24_regular = NotStr(''' + +''') +icon_drink_margarita20_filled = NotStr(''' + +''') +icon_task_list_square_rtl24_filled = NotStr(''' + +''') +icon_warning24_filled = NotStr(''' + +''') +icon_battery324_regular = NotStr(''' + +''') +icon_vehicle_car_profile_ltr20_filled = NotStr(''' + +''') +icon_speaker_off24_regular = NotStr(''' + +''') +icon_image_multiple48_filled = NotStr(''' + +''') +icon_warning20_filled = NotStr(''' + +''') +icon_person_swap16_filled = NotStr(''' + +''') +icon_settings24_regular = NotStr(''' + +''') +icon_person_lock16_filled = NotStr(''' + +''') +icon_padding_down20_regular = NotStr(''' + +''') +icon_skip_back1024_regular = NotStr(''' + +''') +icon_mail_inbox_arrow_up24_regular = NotStr(''' + +''') +icon_text_subscript16_filled = NotStr(''' + +''') +icon_video_person24_regular = NotStr(''' + +''') +icon_gauge24_regular = NotStr(''' + +''') +icon_table_move_below28_filled = NotStr(''' + +''') +icon_building_retail_shield24_filled = NotStr(''' + +''') +icon_color_background24_regular = NotStr(''' + +''') +icon_door_arrow_left24_filled = NotStr(''' + +''') +icon_component2_double_tap_swipe_down24_regular = NotStr(''' + +''') diff --git a/src/myfasthtml/icons/ionicons4.py b/src/myfasthtml/icons/ionicons4.py new file mode 100644 index 0000000..89ac6be --- /dev/null +++ b/src/myfasthtml/icons/ionicons4.py @@ -0,0 +1,8653 @@ +# @sicons/ionicons4 +# +# SVG icons integrated from [`ionicons4`](https://ionicons.com/v4/) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_ios_american_football = NotStr(''' + + + + + +''') +icon_md_home = NotStr(''' + + + +''') +icon_ios_restaurant = NotStr(''' + + + + + + + +''') +icon_ios_cellular = NotStr(''' + + + + + + + +''') +icon_ios_copy = NotStr(''' + + + + + +''') +icon_md_key = NotStr(''' + +''') +icon_md_image = NotStr(''' + + + + + +''') +icon_ios_notifications = NotStr(''' + + + + +''') +icon_md_paw = NotStr(''' + + + + + + + +''') +icon_logo_snapchat = NotStr(''' + + + +''') +icon_md_color_wand = NotStr(''' + + + + + + + + + + +''') +icon_ios_open = NotStr(''' + + + + +''') +icon_ios_quote = NotStr(''' + + + + +''') +icon_md_lock = NotStr(''' + + + + + +''') +icon_md_log_in = NotStr(''' + + + + + + + + +''') +icon_ios_undo = NotStr(''' + + + +''') +icon_md_construct = NotStr(''' + + + + +''') +icon_logo_no_smoking = NotStr(''' + + + + + + + + + +''') +icon_md_repeat = NotStr(''' + +''') +icon_md_code_working = NotStr(''' + + + + +''') +icon_md_funnel = NotStr(''' + +''') +icon_ios_medical = NotStr(''' + +''') +icon_ios_trophy = NotStr(''' + +''') +icon_md_build = NotStr(''' + +''') +icon_md_cube = NotStr(''' + + + + + +''') +icon_ios_at = NotStr(''' + + + +''') +icon_ios_heart_half = NotStr(''' + +''') +icon_ios_snow = NotStr(''' + +''') +icon_md_locate = NotStr(''' + + + + + +''') +icon_logo_angular = NotStr(''' + + + + +''') +icon_ios_volume_mute = NotStr(''' + +''') +icon_ios_git_pull_request = NotStr(''' + +''') +icon_md_sad = NotStr(''' + + + + + + +''') +icon_md_menu = NotStr(''' + + + + + +''') +icon_md_browsers = NotStr(''' + +''') +icon_md_warning = NotStr(''' + + + + + +''') +icon_md_git_branch = NotStr(''' + +''') +icon_ios_card = NotStr(''' + + + + + + +''') +icon_md_share = NotStr(''' + + + + + +''') +icon_md_color_fill = NotStr(''' + + + + +''') +icon_ios_remove = NotStr(''' + +''') +icon_ios_images = NotStr(''' + + + + + + +''') +icon_ios_alert = NotStr(''' + + + +''') +icon_md_checkbox_outline = NotStr(''' + + + + + +''') +icon_logo_xing = NotStr(''' + + + + + + +''') +icon_ios_share_alt = NotStr(''' + + + +''') +icon_md_pint = NotStr(''' + +''') +icon_md_umbrella = NotStr(''' + + + +''') +icon_logo_twitter = NotStr(''' + +''') +icon_md_bonfire = NotStr(''' + + + + + + + + + + + + + +''') +icon_logo_npm = NotStr(''' + + + + +''') +icon_md_nutrition = NotStr(''' + + + + +''') +icon_ios_search = NotStr(''' + +''') +icon_md_bookmark = NotStr(''' + +''') +icon_ios_tablet_portrait = NotStr(''' + + + + + +''') +icon_ios_man = NotStr(''' + + + + + + +''') +icon_ios_nutrition = NotStr(''' + + + + +''') +icon_logo_wordpress = NotStr(''' + + + + + +''') +icon_ios_volume_high = NotStr(''' + + + + + + +''') +icon_ios_close = NotStr(''' + +''') +icon_ios_arrow_dropleft = NotStr(''' + + + + +''') +icon_ios_repeat = NotStr(''' + + + + +''') +icon_md_musical_note = NotStr(''' + +''') +icon_logo_android = NotStr(''' + + + + + + + + + + +''') +icon_ios_notifications_outline = NotStr(''' + + + + +''') +icon_md_power = NotStr(''' + +''') +icon_ios_pint = NotStr(''' + +''') +icon_md_microphone = NotStr(''' + +''') +icon_md_bowtie = NotStr(''' + + + + + + + +''') +icon_md_mic_off = NotStr(''' + + + + + + +''') +icon_ios_bookmark = NotStr(''' + +''') +icon_md_remove_circle = NotStr(''' + + + +''') +icon_ios_heart = NotStr(''' + +''') +icon_ios_arrow_dropright = NotStr(''' + + + + +''') +icon_md_git_commit = NotStr(''' + +''') +icon_ios_list = NotStr(''' + + + + + + + + +''') +icon_ios_reorder = NotStr(''' + + + + + +''') +icon_md_link = NotStr(''' + +''') +icon_ios_journal = NotStr(''' + + + + +''') +icon_md_heart = NotStr(''' + + + +''') +icon_md_arrow_dropdown_circle = NotStr(''' + + + +''') +icon_ios_key = NotStr(''' + + + +''') +icon_ios_arrow_back = NotStr(''' + +''') +icon_md_videocam = NotStr(''' + +''') +icon_md_heart_dislike = NotStr(''' + + + + +''') +icon_md_analytics = NotStr(''' + + + + +''') +icon_ios_musical_note = NotStr(''' + +''') +icon_md_medkit = NotStr(''' + + + +''') +icon_ios_paw = NotStr(''' + + + + + + + + +''') +icon_ios_videocam = NotStr(''' + + + + + + +''') +icon_md_done_all = NotStr(''' + + + + + +''') +icon_ios_clock = NotStr(''' + +''') +icon_ios_time = NotStr(''' + + + +''') +icon_md_people = NotStr(''' + +''') +icon_ios_jet = NotStr(''' + +''') +icon_md_help_buoy = NotStr(''' + +''') +icon_ios_pricetags = NotStr(''' + + + + + + +''') +icon_md_settings = NotStr(''' + + + +''') +icon_md_bed = NotStr(''' + +''') +icon_logo_ionic = NotStr(''' + + + + + + + +''') +icon_ios_body = NotStr(''' + + + + +''') +icon_md_square_outline = NotStr(''' + + + + + +''') +icon_logo_rss = NotStr(''' + + + + + +''') +icon_logo_designernews = NotStr(''' + + + + + + + + + + + +''') +icon_md_folder = NotStr(''' + + + + + + + +''') +icon_md_download = NotStr(''' + +''') +icon_md_help = NotStr(''' + + + +''') +icon_ios_more = NotStr(''' + + + + + +''') +icon_ios_football = NotStr(''' + +''') +icon_md_brush = NotStr(''' + +''') +icon_md_phone_portrait = NotStr(''' + + + + + +''') +icon_md_briefcase = NotStr(''' + +''') +icon_md_football = NotStr(''' + +''') +icon_ios_finger_print = NotStr(''' + + + + + + + + + + + +''') +icon_md_crop = NotStr(''' + +''') +icon_ios_add_circle = NotStr(''' + + + +''') +icon_md_arrow_dropright = NotStr(''' + + + +''') +icon_ios_compass = NotStr(''' + + + + +''') +icon_md_book = NotStr(''' + +''') +icon_md_arrow_forward = NotStr(''' + + + + + +''') +icon_md_quote = NotStr(''' + +''') +icon_logo_twitch = NotStr(''' + + + + + + + +''') +icon_md_print = NotStr(''' + + + +''') +icon_ios_checkbox_outline = NotStr(''' + + + + + + +''') +icon_md_copy = NotStr(''' + +''') +icon_md_cellular = NotStr(''' + +''') +icon_ios_speedometer = NotStr(''' + + + +''') +icon_ios_checkmark_circle = NotStr(''' + + + +''') +icon_md_backspace = NotStr(''' + +''') +icon_ios_cut = NotStr(''' + + + + + +''') +icon_ios_bug = NotStr(''' + + + + + +''') +icon_md_exit = NotStr(''' + +''') +icon_md_bulb = NotStr(''' + + + +''') +icon_md_rose = NotStr(''' + + + + + +''') +icon_md_keypad = NotStr(''' + + + +''') +icon_md_skip_forward = NotStr(''' + + + + + + +''') +icon_md_remove = NotStr(''' + +''') +icon_md_moon = NotStr(''' + + + +''') +icon_md_pizza = NotStr(''' + + + + +''') +icon_ios_git_commit = NotStr(''' + +''') +icon_md_eye_off = NotStr(''' + +''') +icon_ios_apps = NotStr(''' + + + + + + + +''') +icon_ios_map = NotStr(''' + + + + + + +''') +icon_md_flower = NotStr(''' + + + +''') +icon_logo_sass = NotStr(''' + +''') +icon_ios_cash = NotStr(''' + + + + + + +''') +icon_ios_mic_off = NotStr(''' + + + + + + + + + +''') +icon_md_cloud_done = NotStr(''' + + + +''') +icon_ios_basketball = NotStr(''' + + + + + + + + + + +''') +icon_md_eye = NotStr(''' + + + + + +''') +icon_ios_flash = NotStr(''' + +''') +icon_md_search = NotStr(''' + + + + + + + + + +''') +icon_md_trending_up = NotStr(''' + +''') +icon_ios_unlock = NotStr(''' + +''') +icon_ios_sad = NotStr(''' + + + +''') +icon_md_boat = NotStr(''' + + + + +''') +icon_ios_square = NotStr(''' + +''') +icon_md_images = NotStr(''' + + + + +''') +icon_ios_text = NotStr(''' + +''') +icon_md_thermometer = NotStr(''' + +''') +icon_md_cloud_download = NotStr(''' + +''') +icon_ios_notifications_off = NotStr(''' + + + + + + +''') +icon_ios_battery_dead = NotStr(''' + + + + +''') +icon_md_outlet = NotStr(''' + +''') +icon_md_log_out = NotStr(''' + + + + + + + + + + + +''') +icon_logo_vk = NotStr(''' + +''') +icon_logo_euro = NotStr(''' + + + +''') +icon_ios_bed = NotStr(''' + + + + +''') +icon_ios_calendar = NotStr(''' + + + + + +''') +icon_logo_html5 = NotStr(''' + +''') +icon_logo_flickr = NotStr(''' + + + +''') +icon_ios_contacts = NotStr(''' + +''') +icon_ios_git_branch = NotStr(''' + +''') +icon_md_card = NotStr(''' + +''') +icon_md_filing = NotStr(''' + +''') +icon_md_timer = NotStr(''' + +''') +icon_ios_bicycle = NotStr(''' + + + + + + + + +''') +icon_ios_medal = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_ios_resize = NotStr(''' + +''') +icon_ios_refresh_circle = NotStr(''' + + + +''') +icon_md_cloud_circle = NotStr(''' + + + + + + + +''') +icon_md_infinite = NotStr(''' + +''') +icon_ios_add = NotStr(''' + + + +''') +icon_ios_git_compare = NotStr(''' + + + + +''') +icon_ios_leaf = NotStr(''' + + + +''') +icon_md_ice_cream = NotStr(''' + + + + +''') +icon_md_notifications = NotStr(''' + +''') +icon_md_leaf = NotStr(''' + +''') +icon_md_today = NotStr(''' + + + +''') +icon_logo_github = NotStr(''' + +''') +icon_md_swap = NotStr(''' + +''') +icon_ios_log_out = NotStr(''' + + + + +''') +icon_logo_markdown = NotStr(''' + + + + + +''') +icon_ios_flower = NotStr(''' + + + + + + + + + + + +''') +icon_md_bicycle = NotStr(''' + + + + + +''') +icon_logo_yen = NotStr(''' + +''') +icon_ios_musical_notes = NotStr(''' + +''') +icon_ios_sunny = NotStr(''' + + + + + + + + + + + + + +''') +icon_md_camera = NotStr(''' + + + + +''') +icon_ios_volume_low = NotStr(''' + + + + +''') +icon_md_skip_backward = NotStr(''' + + + + + + +''') +icon_md_options = NotStr(''' + + + + + + + + + + + + + + + + + +''') +icon_md_flashlight = NotStr(''' + + + +''') +icon_logo_buffer = NotStr(''' + + + + + + + +''') +icon_ios_person = NotStr(''' + +''') +icon_md_send = NotStr(''' + +''') +icon_ios_arrow_dropdown = NotStr(''' + + + + +''') +icon_md_git_network = NotStr(''' + +''') +icon_ios_color_wand = NotStr(''' + + + + + + + + + + +''') +icon_ios_medkit = NotStr(''' + +''') +icon_logo_skype = NotStr(''' + +''') +icon_md_contrast = NotStr(''' + + + +''') +icon_md_shirt = NotStr(''' + + + +''') +icon_md_journal = NotStr(''' + + + + +''') +icon_md_hourglass = NotStr(''' + + + +''') +icon_ios_help_circle_outline = NotStr(''' + + + + + + + + + + + + +''') +icon_ios_rocket = NotStr(''' + + + + +''') +icon_logo_vimeo = NotStr(''' + +''') +icon_md_pin = NotStr(''' + + + +''') +icon_ios_aperture = NotStr(''' + + + + + + + + + + + +''') +icon_ios_wine = NotStr(''' + +''') +icon_logo_xbox = NotStr(''' + + + + + + +''') +icon_logo_freebsd_devil = NotStr(''' + +''') +icon_md_man = NotStr(''' + + + + +''') +icon_ios_navigate = NotStr(''' + + + +''') +icon_md_fastforward = NotStr(''' + + + +''') +icon_logo_ionitron = NotStr(''' + + + + +''') +icon_md_grid = NotStr(''' + +''') +icon_md_close_circle_outline = NotStr(''' + + + + +''') +icon_logo_dribbble = NotStr(''' + +''') +icon_md_beer = NotStr(''' + +''') +icon_ios_eye_off = NotStr(''' + + + + + + + + + + + + +''') +icon_md_clock = NotStr(''' + + + +''') +icon_md_play = NotStr(''' + +''') +icon_ios_disc = NotStr(''' + + + + +''') +icon_md_hammer = NotStr(''' + +''') +icon_md_heart_empty = NotStr(''' + +''') +icon_ios_school = NotStr(''' + + + + + +''') +icon_md_paper = NotStr(''' + + + + + + + +''') +icon_ios_swap = NotStr(''' + + + + +''') +icon_ios_move = NotStr(''' + +''') +icon_md_close = NotStr(''' + + + + + +''') +icon_md_partly_sunny = NotStr(''' + + + + + + + + + + + +''') +icon_md_beaker = NotStr(''' + + + + +''') +icon_ios_pause = NotStr(''' + + + + +''') +icon_ios_hand = NotStr(''' + +''') +icon_ios_wifi = NotStr(''' + + + + + +''') +icon_ios_albums = NotStr(''' + + + + + +''') +icon_ios_pulse = NotStr(''' + +''') +icon_ios_document = NotStr(''' + + + + +''') +icon_md_document = NotStr(''' + + + +''') +icon_ios_heart_empty = NotStr(''' + +''') +icon_ios_bluetooth = NotStr(''' + +''') +icon_ios_cube = NotStr(''' + + + + + +''') +icon_md_glasses = NotStr(''' + +''') +icon_ios_redo = NotStr(''' + + + +''') +icon_md_clipboard = NotStr(''' + +''') +icon_ios_pie = NotStr(''' + + + + + + +''') +icon_ios_flashlight = NotStr(''' + + + + + +''') +icon_logo_linkedin = NotStr(''' + + + +''') +icon_ios_phone_landscape = NotStr(''' + + + + +''') +icon_md_star_outline = NotStr(''' + +''') +icon_ios_globe = NotStr(''' + +''') +icon_ios_arrow_dropleft_circle = NotStr(''' + + + +''') +icon_md_color_palette = NotStr(''' + + + + + +''') +icon_md_car = NotStr(''' + + + + + +''') +icon_md_battery_full = NotStr(''' + +''') +icon_md_disc = NotStr(''' + +''') +icon_ios_log_in = NotStr(''' + + + + +''') +icon_ios_checkmark_circle_outline = NotStr(''' + + + + + + + + +''') +icon_md_mic = NotStr(''' + + + +''') +icon_md_desktop = NotStr(''' + + + + + +''') +icon_ios_moon = NotStr(''' + +''') +icon_ios_code = NotStr(''' + + + + +''') +icon_ios_home = NotStr(''' + + + + +''') +icon_ios_analytics = NotStr(''' + +''') +icon_ios_information_circle_outline = NotStr(''' + + + + + + + + + + +''') +icon_logo_closed_captioning = NotStr(''' + + + + + + + +''') +icon_md_shuffle = NotStr(''' + +''') +icon_md_school = NotStr(''' + +''') +icon_md_woman = NotStr(''' + + + + +''') +icon_logo_tux = NotStr(''' + +''') +icon_logo_hackernews = NotStr(''' + + + +''') +icon_ios_star_outline = NotStr(''' + +''') +icon_logo_apple = NotStr(''' + + + + +''') +icon_ios_cafe = NotStr(''' + + + + +''') +icon_md_alert = NotStr(''' + + + + + +''') +icon_md_calculator = NotStr(''' + + + +''') +icon_md_code = NotStr(''' + +''') +icon_md_add_circle = NotStr(''' + + + + + +''') +icon_md_square = NotStr(''' + + + + + +''') +icon_md_call = NotStr(''' + +''') +icon_ios_arrow_dropright_circle = NotStr(''' + + + +''') +icon_md_text = NotStr(''' + + + +''') +icon_ios_flame = NotStr(''' + + + +''') +icon_ios_gift = NotStr(''' + + + + + +''') +icon_ios_woman = NotStr(''' + + + + +''') +icon_ios_cloud_upload = NotStr(''' + + + + +''') +icon_ios_chatboxes = NotStr(''' + + + + + + +''') +icon_ios_tennisball = NotStr(''' + + + + + + +''') +icon_ios_send = NotStr(''' + + + +''') +icon_ios_microphone = NotStr(''' + + + + +''') +icon_md_stopwatch = NotStr(''' + + + + + + + + + + + +''') +icon_md_restaurant = NotStr(''' + + + + + + + + +''') +icon_logo_youtube = NotStr(''' + + + +''') +icon_md_arrow_dropleft_circle = NotStr(''' + + + +''') +icon_ios_podium = NotStr(''' + + + + + +''') +icon_md_cloud_outline = NotStr(''' + + + + + + + +''') +icon_ios_shirt = NotStr(''' + + + +''') +icon_ios_arrow_round_down = NotStr(''' + +''') +icon_md_move = NotStr(''' + +''') +icon_md_redo = NotStr(''' + +''') +icon_md_arrow_dropleft = NotStr(''' + + + +''') +icon_ios_brush = NotStr(''' + + + + +''') +icon_md_rocket = NotStr(''' + + + + + + +''') +icon_md_thumbs_up = NotStr(''' + + + + +''') +icon_ios_refresh = NotStr(''' + +''') +icon_ios_checkbox = NotStr(''' + + + +''') +icon_md_tablet_landscape = NotStr(''' + + + +''') +icon_ios_beaker = NotStr(''' + +''') +icon_ios_appstore = NotStr(''' + + + +''') +icon_ios_crop = NotStr(''' + + + + + + +''') +icon_md_bookmarks = NotStr(''' + + + + +''') +icon_ios_tv = NotStr(''' + + + + + +''') +icon_md_body = NotStr(''' + +''') +icon_md_pricetag = NotStr(''' + +''') +icon_md_globe = NotStr(''' + +''') +icon_logo_polymer = NotStr(''' + +''') +icon_md_calendar = NotStr(''' + + + +''') +icon_ios_information_circle = NotStr(''' + + + +''') +icon_ios_basket = NotStr(''' + + + + + + + + + + + + + +''') +icon_ios_bus = NotStr(''' + + + + + +''') +icon_logo_playstation = NotStr(''' + + + + + +''') +icon_md_checkbox = NotStr(''' + + + + + +''') +icon_ios_browsers = NotStr(''' + + + + +''') +icon_ios_pin = NotStr(''' + +''') +icon_md_cloudy_night = NotStr(''' + + + + + + + + + + +''') +icon_ios_stats = NotStr(''' + + + + + + +''') +icon_md_photos = NotStr(''' + + + + + + + + +''') +icon_ios_warning = NotStr(''' + + + +''') +icon_ios_ice_cream = NotStr(''' + + + + + + + + + + + + +''') +icon_ios_wallet = NotStr(''' + + + + + + +''') +icon_md_flag = NotStr(''' + +''') +icon_md_arrow_dropright_circle = NotStr(''' + + + +''') +icon_md_cart = NotStr(''' + + + +''') +icon_md_magnet = NotStr(''' + +''') +icon_ios_car = NotStr(''' + + + + + + + +''') +icon_md_water = NotStr(''' + +''') +icon_ios_easel = NotStr(''' + + + + + + + + + + + + + + +''') +icon_md_hand = NotStr(''' + +''') +icon_md_checkmark = NotStr(''' + + + + + + + +''') +icon_ios_arrow_dropup_circle = NotStr(''' + + + +''') +icon_md_archive = NotStr(''' + + + +''') +icon_md_flame = NotStr(''' + +''') +icon_md_recording = NotStr(''' + + + + + +''') +icon_md_barcode = NotStr(''' + + + + + + + + + + + +''') +icon_ios_arrow_round_back = NotStr(''' + +''') +icon_logo_chrome = NotStr(''' + + + + + + +''') +icon_md_ribbon = NotStr(''' + + + + + + + + + +''') +icon_md_speedometer = NotStr(''' + + + + + +''') +icon_ios_arrow_down = NotStr(''' + +''') +icon_md_subway = NotStr(''' + + + +''') +icon_md_female = NotStr(''' + +''') +icon_md_podium = NotStr(''' + + + + + +''') +icon_ios_call = NotStr(''' + +''') +icon_ios_beer = NotStr(''' + + + + + +''') +icon_md_radio = NotStr(''' + +''') +icon_ios_arrow_dropup = NotStr(''' + + + + +''') +icon_ios_arrow_up = NotStr(''' + +''') +icon_md_mail = NotStr(''' + + + + + +''') +icon_md_help_circle_outline = NotStr(''' + + + + + +''') +icon_md_open = NotStr(''' + +''') +icon_md_cut = NotStr(''' + +''') +icon_ios_contrast = NotStr(''' + +''') +icon_md_happy = NotStr(''' + +''') +icon_md_sync = NotStr(''' + +''') +icon_md_megaphone = NotStr(''' + + + + + +''') +icon_md_film = NotStr(''' + +''') +icon_md_stats = NotStr(''' + + + + + + +''') +icon_ios_radio_button_on = NotStr(''' + + + + + + + + +''') +icon_ios_grid = NotStr(''' + + + + +''') +icon_md_musical_notes = NotStr(''' + +''') +icon_ios_airplane = NotStr(''' + +''') +icon_md_person = NotStr(''' + + + +''') +icon_md_contact = NotStr(''' + + + + + +''') +icon_logo_reddit = NotStr(''' + + + + + + + + +''') +icon_logo_bitbucket = NotStr(''' + +''') +icon_ios_lock = NotStr(''' + + + +''') +icon_md_paper_plane = NotStr(''' + +''') +icon_ios_cloud = NotStr(''' + +''') +icon_ios_download = NotStr(''' + + + + +''') +icon_md_cafe = NotStr(''' + + + + + + +''') +icon_ios_folder_open = NotStr(''' + + + + +''') +icon_md_bug = NotStr(''' + +''') +icon_md_battery_dead = NotStr(''' + +''') +icon_md_add = NotStr(''' + + + + + +''') +icon_ios_ribbon = NotStr(''' + + + + + +''') +icon_md_tv = NotStr(''' + +''') +icon_md_medical = NotStr(''' + +''') +icon_md_trending_down = NotStr(''' + +''') +icon_ios_link = NotStr(''' + + + + +''') +icon_ios_pricetag = NotStr(''' + + + +''') +icon_ios_bulb = NotStr(''' + + + + + +''') +icon_md_add_circle_outline = NotStr(''' + + + + + + + + +''') +icon_md_at = NotStr(''' + + + + +''') +icon_ios_code_download = NotStr(''' + + + + + +''') +icon_md_arrow_round_back = NotStr(''' + +''') +icon_md_contacts = NotStr(''' + + + + + + + + + + + + + + +''') +icon_ios_mic = NotStr(''' + + + + +''') +icon_ios_contract = NotStr(''' + + + + + + +''') +icon_ios_paper_plane = NotStr(''' + +''') +icon_md_trophy = NotStr(''' + +''') +icon_md_appstore = NotStr(''' + + + +''') +icon_ios_magnet = NotStr(''' + +''') +icon_md_thunderstorm = NotStr(''' + + + + +''') +icon_ios_phone_portrait = NotStr(''' + + + +''') +icon_ios_locate = NotStr(''' + + + + +''') +icon_ios_cog = NotStr(''' + +''') +icon_md_star = NotStr(''' + + + +''') +icon_logo_windows = NotStr(''' + + + + + + +''') +icon_md_return_left = NotStr(''' + +''') +icon_ios_camera = NotStr(''' + + + + +''') +icon_ios_contact = NotStr(''' + +''') +icon_ios_reverse_camera = NotStr(''' + + + +''') +icon_md_baseball = NotStr(''' + + + + + +''') +icon_ios_skip_forward = NotStr(''' + +''') +icon_md_information = NotStr(''' + + + + +''') +icon_logo_css3 = NotStr(''' + + + + + + +''') +icon_md_headset = NotStr(''' + +''') +icon_ios_archive = NotStr(''' + + + + + + + + +''') +icon_ios_help = NotStr(''' + + + +''') +icon_md_arrow_round_forward = NotStr(''' + +''') +icon_md_close_circle = NotStr(''' + + + +''') +icon_ios_today = NotStr(''' + + + + + +''') +icon_md_airplane = NotStr(''' + + + + + +''') +icon_ios_water = NotStr(''' + + + +''') +icon_ios_list_box = NotStr(''' + + + +''') +icon_ios_recording = NotStr(''' + +''') +icon_ios_help_circle = NotStr(''' + + + +''') +icon_logo_yahoo = NotStr(''' + +''') +icon_ios_help_buoy = NotStr(''' + +''') +icon_ios_return_right = NotStr(''' + +''') +icon_logo_nodejs = NotStr(''' + + + + + + +''') +icon_logo_google = NotStr(''' + + + +''') +icon_logo_javascript = NotStr(''' + + + + + + +''') +icon_md_chatboxes = NotStr(''' + + + + +''') +icon_ios_square_outline = NotStr(''' + +''') +icon_ios_umbrella = NotStr(''' + +''') +icon_ios_bonfire = NotStr(''' + + + + + + + + + + + + + + + +''') +icon_ios_fitness = NotStr(''' + + + + + + + +''') +icon_md_volume_high = NotStr(''' + +''') +icon_md_cloudy = NotStr(''' + + + + +''') +icon_logo_tumblr = NotStr(''' + +''') +icon_md_sunny = NotStr(''' + + + + + +''') +icon_logo_dropbox = NotStr(''' + + + + + + + +''') +icon_md_business = NotStr(''' + +''') +icon_ios_build = NotStr(''' + + + +''') +icon_logo_slack = NotStr(''' + + + + + + + + + +''') +icon_md_pie = NotStr(''' + + + + +''') +icon_ios_volume_off = NotStr(''' + + + + + + + + + +''') +icon_ios_glasses = NotStr(''' + +''') +icon_md_cloud_upload = NotStr(''' + +''') +icon_ios_keypad = NotStr(''' + + + + + + + + + + + +''') +icon_ios_cloud_done = NotStr(''' + + + +''') +icon_md_volume_mute = NotStr(''' + +''') +icon_ios_mail_open = NotStr(''' + +''') +icon_md_arrow_down = NotStr(''' + + + + + +''') +icon_ios_remove_circle = NotStr(''' + + + +''') +icon_ios_paper = NotStr(''' + +''') +icon_md_transgender = NotStr(''' + +''') +icon_ios_bookmarks = NotStr(''' + +''') +icon_md_bluetooth = NotStr(''' + +''') +icon_ios_arrow_round_forward = NotStr(''' + +''') +icon_md_refresh = NotStr(''' + + + +''') +icon_ios_radio_button_off = NotStr(''' + + + + + +''') +icon_md_chatbubbles = NotStr(''' + + + + +''') +icon_md_color_filter = NotStr(''' + +''') +icon_md_aperture = NotStr(''' + + + + + + + + + + + +''') +icon_ios_transgender = NotStr(''' + +''') +icon_md_tablet_portrait = NotStr(''' + + + +''') +icon_ios_outlet = NotStr(''' + + + +''') +icon_md_qr_scanner = NotStr(''' + + + + + + +''') +icon_ios_flask = NotStr(''' + +''') +icon_md_radio_button_off = NotStr(''' + + + + + +''') +icon_ios_laptop = NotStr(''' + + + + + +''') +icon_ios_star = NotStr(''' + +''') +icon_md_arrow_round_down = NotStr(''' + +''') +icon_ios_star_half = NotStr(''' + +''') +icon_ios_rainy = NotStr(''' + +''') +icon_md_arrow_dropdown = NotStr(''' + + + +''') +icon_ios_book = NotStr(''' + + + + +''') +icon_ios_egg = NotStr(''' + +''') +icon_md_jet = NotStr(''' + +''') +icon_ios_power = NotStr(''' + + + + +''') +icon_md_return_right = NotStr(''' + +''') +icon_ios_megaphone = NotStr(''' + + + + +''') +icon_ios_construct = NotStr(''' + + + + + + + + +''') +icon_md_unlock = NotStr(''' + +''') +icon_ios_bowtie = NotStr(''' + + + + + +''') +icon_ios_female = NotStr(''' + +''') +icon_logo_steam = NotStr(''' + +''') +icon_ios_train = NotStr(''' + + + + + + + + + + + +''') +icon_md_information_circle_outline = NotStr(''' + + + + +''') +icon_md_flash_off = NotStr(''' + + + + +''') +icon_ios_partly_sunny = NotStr(''' + + + + + + + + + + + +''') +icon_ios_exit = NotStr(''' + + + + +''') +icon_ios_walk = NotStr(''' + + + + + + + + + + +''') +icon_ios_sync = NotStr(''' + + + + +''') +icon_ios_tablet_landscape = NotStr(''' + + + + + +''') +icon_ios_arrow_round_up = NotStr(''' + +''') +icon_md_trash = NotStr(''' + + + +''') +icon_md_rewind = NotStr(''' + + + +''') +icon_md_wallet = NotStr(''' + + + + +''') +icon_ios_cart = NotStr(''' + + + + + +''') +icon_logo_instagram = NotStr(''' + + + + + + + +''') +icon_md_wifi = NotStr(''' + +''') +icon_ios_backspace = NotStr(''' + + + +''') +icon_ios_code_working = NotStr(''' + + + + + + + +''') +icon_ios_people = NotStr(''' + + + + + +''') +icon_md_folder_open = NotStr(''' + +''') +icon_md_fitness = NotStr(''' + +''') +icon_md_heart_half = NotStr(''' + +''') +icon_md_contract = NotStr(''' + + + + + +''') +icon_md_arrow_round_up = NotStr(''' + +''') +icon_ios_arrow_forward = NotStr(''' + +''') +icon_ios_cloud_circle = NotStr(''' + + + +''') +icon_logo_foursquare = NotStr(''' + + + + + +''') +icon_logo_game_controller_b = NotStr(''' + + + + +''') +icon_md_time = NotStr(''' + + + + +''') +icon_md_male = NotStr(''' + +''') +icon_md_arrow_up = NotStr(''' + + + + + +''') +icon_md_reorder = NotStr(''' + + + + + + +''') +icon_md_checkmark_circle_outline = NotStr(''' + +''') +icon_ios_barcode = NotStr(''' + + + + + + + + + +''') +icon_ios_calculator = NotStr(''' + +''') +icon_md_create = NotStr(''' + + + + + +''') +icon_ios_pizza = NotStr(''' + +''') +icon_ios_funnel = NotStr(''' + +''') +icon_ios_save = NotStr(''' + + + + + + +''') +icon_ios_infinite = NotStr(''' + +''') +icon_logo_googleplus = NotStr(''' + + + + +''') +icon_md_train = NotStr(''' + + + +''') +icon_md_git_merge = NotStr(''' + +''') +icon_ios_qr_scanner = NotStr(''' + + + + + + +''') +icon_ios_subway = NotStr(''' + + + + + + + + + + +''') +icon_md_easel = NotStr(''' + + + + + + + + +''') +icon_ios_mail = NotStr(''' + + + + +''') +icon_md_undo = NotStr(''' + +''') +icon_md_list = NotStr(''' + + + + + + + + + + +''') +icon_md_medal = NotStr(''' + + + + + + +''') +icon_md_walk = NotStr(''' + + + + +''') +icon_ios_color_filter = NotStr(''' + +''') +icon_ios_switch = NotStr(''' + + + + + + +''') +icon_ios_git_merge = NotStr(''' + +''') +icon_ios_trash = NotStr(''' + + + + + + +''') +icon_md_code_download = NotStr(''' + + + + + + + + +''') +icon_ios_checkmark = NotStr(''' + +''') +icon_ios_options = NotStr(''' + + + + + +''') +icon_ios_shuffle = NotStr(''' + + + + +''') +icon_md_arrow_dropup = NotStr(''' + + + +''') +icon_md_pause = NotStr(''' + +''') +icon_md_reverse_camera = NotStr(''' + + + +''') +icon_ios_eye = NotStr(''' + + + + + + +''') +icon_md_battery_charging = NotStr(''' + +''') +icon_ios_timer = NotStr(''' + + + + + + +''') +icon_md_checkmark_circle = NotStr(''' + +''') +icon_md_notifications_off = NotStr(''' + + + + + +''') +icon_md_phone_landscape = NotStr(''' + + + + + +''') +icon_ios_rose = NotStr(''' + + + + + + +''') +icon_ios_image = NotStr(''' + + + + + + +''') +icon_logo_whatsapp = NotStr(''' + + + +''') +icon_logo_usd = NotStr(''' + + + +''') +icon_ios_close_circle_outline = NotStr(''' + + + + + + + + +''') +icon_ios_add_circle_outline = NotStr(''' + + + + + + + + +''') +icon_md_help_circle = NotStr(''' + + + +''') +icon_md_volume_off = NotStr(''' + + + + + + +''') +icon_md_laptop = NotStr(''' + + + + + +''') +icon_md_information_circle = NotStr(''' + + + +''') +icon_ios_male = NotStr(''' + +''') +icon_ios_clipboard = NotStr(''' + + + + + + + + + +''') +icon_ios_trending_up = NotStr(''' + +''') +icon_ios_close_circle = NotStr(''' + + + +''') +icon_ios_color_palette = NotStr(''' + + + +''') +icon_md_mail_open = NotStr(''' + + + + + + + +''') +icon_ios_thumbs_up = NotStr(''' + +''') +icon_ios_expand = NotStr(''' + + + + + + +''') +icon_ios_battery_charging = NotStr(''' + + + + + +''') +icon_ios_return_left = NotStr(''' + +''') +icon_ios_business = NotStr(''' + + + + +''') +icon_md_expand = NotStr(''' + + + + + + +''') +icon_ios_play_circle = NotStr(''' + + + +''') +icon_md_snow = NotStr(''' + +''') +icon_md_navigate = NotStr(''' + + + + + +''') +icon_ios_briefcase = NotStr(''' + + + + +''') +icon_md_git_pull_request = NotStr(''' + + + + +''') +icon_logo_octocat = NotStr(''' + + + + + +''') +icon_md_bus = NotStr(''' + + + + + + + +''') +icon_ios_print = NotStr(''' + + + + + + + +''') +icon_md_thumbs_down = NotStr(''' + + + + +''') +icon_md_flask = NotStr(''' + +''') +icon_ios_done_all = NotStr(''' + + + + + + + +''') +icon_logo_facebook = NotStr(''' + + + + + + +''') +icon_ios_settings = NotStr(''' + +''') +icon_md_attach = NotStr(''' + + + + + +''') +icon_ios_attach = NotStr(''' + +''') +icon_ios_battery_full = NotStr(''' + + + + + +''') +icon_md_albums = NotStr(''' + + + + + + + + +''') +icon_md_wine = NotStr(''' + + + + + +''') +icon_ios_skip_backward = NotStr(''' + +''') +icon_ios_hourglass = NotStr(''' + +''') +icon_logo_pinterest = NotStr(''' + + + +''') +icon_ios_folder = NotStr(''' + + + + + + +''') +icon_ios_fastforward = NotStr(''' + +''') +icon_md_volume_low = NotStr(''' + +''') +icon_md_remove_circle_outline = NotStr(''' + + + + + + +''') +icon_md_american_football = NotStr(''' + + + + + + + +''') +icon_ios_cloudy_night = NotStr(''' + + + + +''') +icon_ios_nuclear = NotStr(''' + + + + +''') +icon_md_watch = NotStr(''' + + + + + + + +''') +icon_md_cloud = NotStr(''' + +''') +icon_md_pricetags = NotStr(''' + + + + +''') +icon_logo_game_controller_a = NotStr(''' + + + +''') +icon_ios_color_fill = NotStr(''' + + + + +''') +icon_ios_cloud_download = NotStr(''' + + + + +''') +icon_md_switch = NotStr(''' + + + + +''') +icon_ios_baseball = NotStr(''' + + + + + +''') +icon_ios_rewind = NotStr(''' + +''') +icon_md_planet = NotStr(''' + + + + +''') +icon_ios_hammer = NotStr(''' + + + + + + + + +''') +icon_ios_remove_circle_outline = NotStr(''' + + + + + + + + +''') +icon_md_basketball = NotStr(''' + + + + + + + + + + + + +''') +icon_ios_film = NotStr(''' + + + +''') +icon_md_share_alt = NotStr(''' + + + + + +''') +icon_md_basket = NotStr(''' + +''') +icon_md_more = NotStr(''' + +''') +icon_ios_chatbubbles = NotStr(''' + + + + +''') +icon_md_map = NotStr(''' + + + + + + + +''') +icon_ios_heart_dislike = NotStr(''' + + + + + + + +''') +icon_ios_happy = NotStr(''' + + + +''') +icon_ios_cloudy = NotStr(''' + +''') +icon_ios_alarm = NotStr(''' + + + + + + + + + + + + + + + +''') +icon_ios_share = NotStr(''' + + + + +''') +icon_ios_boat = NotStr(''' + + + + + + + + + +''') +icon_md_compass = NotStr(''' + +''') +icon_md_cash = NotStr(''' + + + + +''') +icon_md_refresh_circle = NotStr(''' + + + +''') +icon_md_list_box = NotStr(''' + + + +''') +icon_md_rainy = NotStr(''' + + + + + + + + + + + +''') +icon_ios_thunderstorm = NotStr(''' + + + + +''') +icon_ios_radio = NotStr(''' + + + + + + + + + +''') +icon_ios_play = NotStr(''' + +''') +icon_md_cog = NotStr(''' + + + +''') +icon_ios_stopwatch = NotStr(''' + + + + + +''') +icon_ios_git_network = NotStr(''' + +''') +icon_md_radio_button_on = NotStr(''' + + + + + +''') +icon_ios_desktop = NotStr(''' + + + + + + +''') +icon_logo_model_s = NotStr(''' + +''') +icon_ios_photos = NotStr(''' + + + + + + +''') +icon_ios_create = NotStr(''' + + + + + + + + + +''') +icon_ios_cloud_outline = NotStr(''' + +''') +icon_ios_menu = NotStr(''' + + + + + +''') +icon_md_save = NotStr(''' + + + +''') +icon_ios_information = NotStr(''' + + + +''') +icon_ios_thermometer = NotStr(''' + +''') +icon_ios_mail_unread = NotStr(''' + + + + + + + +''') +icon_md_apps = NotStr(''' + + + + + +''') +icon_ios_trending_down = NotStr(''' + +''') +icon_md_arrow_dropup_circle = NotStr(''' + + + +''') +icon_logo_bitcoin = NotStr(''' + +''') +icon_md_alarm = NotStr(''' + + + + + +''') +icon_md_star_half = NotStr(''' + +''') +icon_md_person_add = NotStr(''' + + + + + + + + + + +''') +icon_md_pulse = NotStr(''' + +''') +icon_md_finger_print = NotStr(''' + + + + + + + +''') +icon_ios_person_add = NotStr(''' + + + + +''') +icon_md_git_compare = NotStr(''' + + + + +''') +icon_md_egg = NotStr(''' + +''') +icon_ios_flash_off = NotStr(''' + + + + + + + +''') +icon_md_arrow_back = NotStr(''' + + + + + +''') +icon_md_mail_unread = NotStr(''' + + + + +''') +icon_ios_flag = NotStr(''' + +''') +icon_logo_codepen = NotStr(''' + + + + + + + + + + +''') +icon_ios_planet = NotStr(''' + + + + +''') +icon_logo_python = NotStr(''' + + + + +''') +icon_md_play_circle = NotStr(''' + +''') +icon_md_resize = NotStr(''' + +''') +icon_ios_headset = NotStr(''' + + + + +''') +icon_md_nuclear = NotStr(''' + +''') +icon_ios_filing = NotStr(''' + + + + + +''') +icon_md_notifications_outline = NotStr(''' + +''') +icon_ios_watch = NotStr(''' + + + + + + + + + + + + +''') +icon_md_flash = NotStr(''' + +''') +icon_ios_thumbs_down = NotStr(''' + +''') +icon_md_gift = NotStr(''' + +''') +icon_md_tennisball = NotStr(''' + + + + + +''') +icon_ios_arrow_dropdown_circle = NotStr(''' + + + +''') diff --git a/src/myfasthtml/icons/ionicons5.py b/src/myfasthtml/icons/ionicons5.py new file mode 100644 index 0000000..31ebe5b --- /dev/null +++ b/src/myfasthtml/icons/ionicons5.py @@ -0,0 +1,5295 @@ +# @sicons/ionicons5 +# +# SVG icons integrated from [`ionicons5`](https://ionicons.com/) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_scale_outline = NotStr(''' + + +''') +icon_radio_button_on_sharp = NotStr(''' + + +''') +icon_walk = NotStr(''' + + + + + +''') +icon_finger_print_outline = NotStr('''''') +icon_flask_sharp = NotStr('''''') +icon_information_sharp = NotStr(''' + + + +''') +icon_mic_off_circle_outline = NotStr(''' + + + + + + +''') +icon_flower_outline = NotStr(''' + + + + + + + + + +''') +icon_toggle_sharp = NotStr('''''') +icon_analytics_outline = NotStr(''' + + + + + + + +''') +icon_play_skip_back_circle = NotStr('''''') +icon_git_merge_outline = NotStr(''' + + + + + +''') +icon_calendar = NotStr(''' + + +''') +icon_toggle_outline = NotStr(''' + + +''') +icon_cog_outline = NotStr('''''') +icon_tablet_portrait = NotStr(''' + + +''') +icon_planet_outline = NotStr(''' + + +''') +icon_add = NotStr(''' + + +''') +icon_return_down_back_sharp = NotStr(''' + + +''') +icon_volume_high = NotStr(''' + + + + +''') +icon_leaf_sharp = NotStr(''' + + +''') +icon_logo_snapchat = NotStr('''''') +icon_arrow_back_circle = NotStr('''''') +icon_chevron_forward_circle = NotStr('''''') +icon_restaurant_sharp = NotStr(''' + + +''') +icon_code_working = NotStr(''' + + + + + +''') +icon_duplicate = NotStr(''' + + +''') +icon_newspaper_sharp = NotStr(''' + + + +''') +icon_battery_half = NotStr(''' + + + +''') +icon_return_down_back_outline = NotStr(''' + + +''') +icon_trash_bin = NotStr(''' + + +''') +icon_receipt_outline = NotStr(''' + + + + +''') +icon_sync_circle = NotStr('''''') +icon_basket = NotStr('''''') +icon_bag_sharp = NotStr('''''') +icon_battery_full_sharp = NotStr(''' + + + +''') +icon_ribbon = NotStr(''' + + + + +''') +icon_logo_figma = NotStr(''' + + +''') +icon_star_outline = NotStr('''''') +icon_bookmarks = NotStr(''' + + +''') +icon_shuffle_outline = NotStr(''' + + + + + +''') +icon_scale = NotStr('''''') +icon_logo_no_smoking = NotStr(''' + + + + + + + +''') +icon_musical_notes_outline = NotStr(''' + + +''') +icon_arrow_up = NotStr(''' + + +''') +icon_document_text_outline = NotStr(''' + + + + +''') +icon_person_remove_outline = NotStr(''' + + + +''') +icon_git_commit_sharp = NotStr('''''') +icon_help_buoy_outline = NotStr(''' + + + + + + + + + + +''') +icon_snow = NotStr('''''') +icon_logo_tableau = NotStr(''' + + + + + + + + +''') +icon_cloud_sharp = NotStr('''''') +icon_aperture_outline = NotStr(''' + + + + + + + + + +''') +icon_chatbubbles_sharp = NotStr(''' + + +''') +icon_cloud_download_sharp = NotStr(''' + + +''') +icon_compass_outline = NotStr(''' + + +''') +icon_rocket_sharp = NotStr(''' + + +''') +icon_text_outline = NotStr(''' + + + + +''') +icon_ban_outline = NotStr(''' + + +''') +icon_cog_sharp = NotStr('''''') +icon_arrow_up_circle = NotStr('''''') +icon_logo_angular = NotStr(''' + + +''') +icon_infinite = NotStr(''' + + +''') +icon_ice_cream_outline = NotStr(''' + + +''') +icon_analytics = NotStr('''''') +icon_aperture_sharp = NotStr(''' + + + + + + + + + +''') +icon_swap_horizontal_sharp = NotStr(''' + + + + +''') +icon_chevron_up_circle_outline = NotStr(''' + + +''') +icon_open_outline = NotStr(''' + + + +''') +icon_accessibility_sharp = NotStr(''' + + +''') +icon_bluetooth_sharp = NotStr('''''') +icon_arrow_up_sharp = NotStr(''' + + +''') +icon_sync_outline = NotStr(''' + + + +''') +icon_pricetags_sharp = NotStr(''' + + +''') +icon_logo_web_component = NotStr(''' + + + + + +''') +icon_play_skip_back_outline = NotStr(''' + + +''') +icon_cloud_upload_outline = NotStr(''' + + + +''') +icon_pricetags = NotStr(''' + + +''') +icon_logo_xing = NotStr(''' + + +''') +icon_funnel = NotStr('''''') +icon_arrow_forward_circle_outline = NotStr(''' + + + +''') +icon_chatbox_ellipses_sharp = NotStr('''''') +icon_cloud_done = NotStr('''''') +icon_arrow_back_outline = NotStr(''' + + +''') +icon_camera_reverse_sharp = NotStr('''''') +icon_globe = NotStr(''' + + + + + + + + + +''') +icon_logo_twitter = NotStr('''''') +icon_code_download_outline = NotStr(''' + + + + +''') +icon_sync = NotStr(''' + + + +''') +icon_close_sharp = NotStr('''''') +icon_brush_sharp = NotStr(''' + + +''') +icon_boat = NotStr(''' + + +''') +icon_contract_sharp = NotStr(''' + + + + + + + + +''') +icon_logo_npm = NotStr(''' + + +''') +icon_play_skip_forward_circle_sharp = NotStr('''''') +icon_cellular = NotStr(''' + + + + +''') +icon_lock_closed = NotStr('''''') +icon_location_outline = NotStr(''' + + +''') +icon_git_commit = NotStr('''''') +icon_navigate_sharp = NotStr('''''') +icon_restaurant = NotStr(''' + + +''') +icon_heart_half_outline = NotStr('''''') +icon_filter_circle = NotStr('''''') +icon_eye_outline = NotStr(''' + + +''') +icon_chatbubble_ellipses = NotStr('''''') +icon_alarm_sharp = NotStr(''' + + + +''') +icon_sparkles_sharp = NotStr(''' + + + +''') +icon_trash = NotStr(''' + + +''') +icon_trophy = NotStr('''''') +icon_location_sharp = NotStr('''''') +icon_ellipse_outline = NotStr('''''') +icon_globe_outline = NotStr(''' + + + + + + +''') +icon_contrast_sharp = NotStr('''''') +icon_skull_outline = NotStr(''' + + + + + + + +''') +icon_return_up_forward_sharp = NotStr(''' + + +''') +icon_logo_wordpress = NotStr(''' + + + + +''') +icon_mic_circle_outline = NotStr(''' + + + + + +''') +icon_school = NotStr(''' + + +''') +icon_play_skip_forward = NotStr('''''') +icon_bulb_outline = NotStr(''' + + + + + +''') +icon_arrow_forward_circle_sharp = NotStr('''''') +icon_navigate = NotStr('''''') +icon_backspace_sharp = NotStr('''''') +icon_time_sharp = NotStr('''''') +icon_chevron_back_circle_sharp = NotStr('''''') +icon_nuclear_outline = NotStr(''' + + + + + + + + +''') +icon_headset_outline = NotStr(''' + + + +''') +icon_logo_android = NotStr('''''') +icon_refresh_circle_sharp = NotStr('''''') +icon_construct_outline = NotStr(''' + + + + +''') +icon_scan_circle_sharp = NotStr('''''') +icon_terminal = NotStr('''''') +icon_color_fill_sharp = NotStr(''' + + +''') +icon_arrow_redo_circle_outline = NotStr(''' + + +''') +icon_logo_stackoverflow = NotStr(''' + + +''') +icon_skull_sharp = NotStr('''''') +icon_git_branch_outline = NotStr(''' + + + + + +''') +icon_mail_open_outline = NotStr(''' + + + + +''') +icon_information = NotStr(''' + + + +''') +icon_folder_outline = NotStr(''' + + +''') +icon_fish = NotStr(''' + + +''') +icon_id_card = NotStr('''''') +icon_bed_sharp = NotStr('''''') +icon_folder_open_sharp = NotStr(''' + + +''') +icon_images_sharp = NotStr(''' + + + +''') +icon_radio_button_on = NotStr(''' + + +''') +icon_color_palette = NotStr('''''') +icon_cloud_circle = NotStr('''''') +icon_ban_sharp = NotStr('''''') +icon_volume_high_outline = NotStr(''' + + + + +''') +icon_settings_sharp = NotStr('''''') +icon_albums_outline = NotStr(''' + + + +''') +icon_fast_food_sharp = NotStr(''' + + + +''') +icon_mic_off_circle = NotStr('''''') +icon_extension_puzzle_outline = NotStr('''''') +icon_pause_sharp = NotStr(''' + + +''') +icon_analytics_sharp = NotStr('''''') +icon_egg_sharp = NotStr('''''') +icon_notifications_off = NotStr(''' + + + + +''') +icon_caret_forward = NotStr('''''') +icon_walk_outline = NotStr(''' + + + + + +''') +icon_ticket = NotStr('''''') +icon_bicycle_outline = NotStr(''' + + + + +''') +icon_lock_open_sharp = NotStr('''''') +icon_remove_circle_outline = NotStr(''' + + +''') +icon_heart_circle_outline = NotStr(''' + + +''') +icon_wine_outline = NotStr(''' + + + + +''') +icon_documents = NotStr(''' + + + + +''') +icon_hardware_chip_sharp = NotStr(''' + + +''') +icon_git_pull_request_outline = NotStr(''' + + + + + + +''') +icon_notifications_outline = NotStr(''' + + +''') +icon_help = NotStr(''' + + +''') +icon_female = NotStr('''''') +icon_pricetag = NotStr('''''') +icon_shield_checkmark = NotStr('''''') +icon_flag = NotStr('''''') +icon_caret_up_circle_sharp = NotStr('''''') +icon_logo_ionic = NotStr(''' + + + +''') +icon_arrow_undo = NotStr('''''') +icon_ellipsis_vertical = NotStr(''' + + + +''') +icon_text_sharp = NotStr(''' + + +''') +icon_trash_sharp = NotStr(''' + + + +''') +icon_push_sharp = NotStr(''' + + +''') +icon_share = NotStr(''' + + +''') +icon_calculator_outline = NotStr(''' + + + + + + + + + + +''') +icon_folder_open_outline = NotStr(''' + + +''') +icon_cloud_offline_outline = NotStr(''' + + + +''') +icon_logo_rss = NotStr(''' + + + +''') +icon_telescope = NotStr(''' + + + +''') +icon_logo_designernews = NotStr(''' + + + +''') +icon_reader_outline = NotStr(''' + + + + +''') +icon_arrow_back = NotStr(''' + + +''') +icon_navigate_circle_sharp = NotStr('''''') +icon_easel_sharp = NotStr(''' + + +''') +icon_today_sharp = NotStr(''' + + +''') +icon_tablet_landscape = NotStr(''' + + +''') +icon_triangle_sharp = NotStr('''''') +icon_pint = NotStr('''''') +icon_chatbox_ellipses_outline = NotStr(''' + + + + +''') +icon_heart_circle_sharp = NotStr('''''') +icon_refresh_circle = NotStr('''''') +icon_thumbs_up_sharp = NotStr('''''') +icon_infinite_outline = NotStr(''' + + +''') +icon_rose = NotStr(''' + + + + +''') +icon_sunny = NotStr(''' + + + + + + + + + +''') +icon_remove = NotStr('''''') +icon_wine_sharp = NotStr('''''') +icon_battery_dead_outline = NotStr(''' + + +''') +icon_finger_print_sharp = NotStr(''' + + + + + +''') +icon_logo_twitch = NotStr(''' + + + +''') +icon_recording_sharp = NotStr('''''') +icon_file_tray_stacked_sharp = NotStr(''' + + +''') +icon_barcode_outline = NotStr(''' + + + + + + + +''') +icon_rose_sharp = NotStr(''' + + + + +''') +icon_color_fill_outline = NotStr(''' + + +''') +icon_hardware_chip = NotStr(''' + + + +''') +icon_phone_landscape_outline = NotStr(''' + + +''') +icon_play_skip_forward_sharp = NotStr('''''') +icon_play_back_circle = NotStr('''''') +icon_battery_charging_outline = NotStr(''' + + + + + + +''') +icon_easel_outline = NotStr(''' + + + + + +''') +icon_alarm = NotStr(''' + + + +''') +icon_egg_outline = NotStr('''''') +icon_backspace = NotStr('''''') +icon_return_up_back_sharp = NotStr(''' + + +''') +icon_disc = NotStr(''' + + +''') +icon_cube_outline = NotStr(''' + + + +''') +icon_warning_outline = NotStr(''' + + + +''') +icon_earth_outline = NotStr(''' + + + + + + +''') +icon_trash_bin_sharp = NotStr(''' + + + + +''') +icon_speedometer = NotStr('''''') +icon_bag_check = NotStr('''''') +icon_fast_food = NotStr(''' + + + + +''') +icon_text = NotStr(''' + + +''') +icon_filter_circle_sharp = NotStr('''''') +icon_scan_outline = NotStr(''' + + + + +''') +icon_nutrition_outline = NotStr(''' + + + + +''') +icon_send = NotStr('''''') +icon_flash_off_outline = NotStr(''' + + + +''') +icon_dice_outline = NotStr(''' + + + + + + + + + + +''') +icon_logo_sass = NotStr('''''') +icon_laptop = NotStr('''''') +icon_ellipsis_vertical_circle = NotStr(''' + + + + +''') +icon_wifi = NotStr(''' + + + + +''') +icon_funnel_sharp = NotStr('''''') +icon_card_outline = NotStr(''' + + + +''') +icon_boat_outline = NotStr(''' + + + + + +''') +icon_triangle_outline = NotStr('''''') +icon_book = NotStr(''' + + +''') +icon_journal_sharp = NotStr(''' + + +''') +icon_logo_docker = NotStr(''' + + + + + + + + + + +''') +icon_return_up_back = NotStr(''' + + +''') +icon_git_compare = NotStr(''' + + +''') +icon_alarm_outline = NotStr(''' + + + + + + +''') +icon_alert_outline = NotStr(''' + + +''') +icon_pause_circle = NotStr('''''') +icon_cloudy_night_sharp = NotStr(''' + + +''') +icon_magnet_sharp = NotStr(''' + + + + + + +''') +icon_logo_stencil = NotStr(''' + + + +''') +icon_filter_outline = NotStr(''' + + + +''') +icon_footsteps_sharp = NotStr(''' + + + + +''') +icon_server = NotStr(''' + + + + +''') +icon_arrow_undo_circle_outline = NotStr(''' + + +''') +icon_home_sharp = NotStr('''''') +icon_male_female = NotStr('''''') +icon_caret_down_circle_sharp = NotStr('''''') +icon_heart_dislike_circle_sharp = NotStr('''''') +icon_timer_outline = NotStr(''' + + +''') +icon_train_sharp = NotStr(''' + + +''') +icon_reload_sharp = NotStr(''' + + +''') +icon_alert = NotStr(''' + + +''') +icon_basketball = NotStr(''' + + + + + + + + +''') +icon_bonfire_outline = NotStr(''' + + + + + + + + +''') +icon_ear_outline = NotStr(''' + + + +''') +icon_arrow_undo_outline = NotStr('''''') +icon_bicycle = NotStr(''' + + + + +''') +icon_bag_add_outline = NotStr(''' + + + + +''') +icon_enter = NotStr(''' + + +''') +icon_caret_back_circle_outline = NotStr(''' + + +''') +icon_trash_outline = NotStr(''' + + + + + + +''') +icon_enter_sharp = NotStr(''' + + +''') +icon_bookmark_outline = NotStr('''''') +icon_git_merge = NotStr('''''') +icon_bag = NotStr('''''') +icon_pizza_outline = NotStr(''' + + + + + +''') +icon_aperture = NotStr(''' + + + + + + + + + +''') +icon_partly_sunny_sharp = NotStr(''' + + + + + + +''') +icon_people_sharp = NotStr(''' + + + + +''') +icon_battery_dead_sharp = NotStr(''' + + +''') +icon_flame = NotStr('''''') +icon_stopwatch_sharp = NotStr('''''') +icon_film_outline = NotStr(''' + + + + + + + + + + + +''') +icon_pint_sharp = NotStr('''''') +icon_sync_sharp = NotStr(''' + + + +''') +icon_male_outline = NotStr(''' + + + +''') +icon_save_sharp = NotStr('''''') +icon_logo_vk = NotStr('''''') +icon_id_card_outline = NotStr(''' + + + + +''') +icon_checkmark_done_sharp = NotStr(''' + + + +''') +icon_logo_euro = NotStr('''''') +icon_calendar_sharp = NotStr(''' + + +''') +icon_reload_circle = NotStr('''''') +icon_options_outline = NotStr(''' + + + + + + + + + +''') +icon_logo_html5 = NotStr('''''') +icon_create_sharp = NotStr(''' + + + + +''') +icon_bag_handle_outline = NotStr(''' + + + +''') +icon_logo_edge = NotStr('''''') +icon_at_sharp = NotStr('''''') +icon_logo_flickr = NotStr('''''') +icon_battery_half_sharp = NotStr(''' + + + +''') +icon_videocam_off = NotStr(''' + + + + +''') +icon_grid_sharp = NotStr(''' + + + + +''') +icon_storefront_outline = NotStr(''' + + + + + + +''') +icon_logo_wechat = NotStr(''' + + +''') +icon_caret_forward_circle_outline = NotStr(''' + + +''') +icon_water_outline = NotStr(''' + + +''') +icon_images_outline = NotStr(''' + + + + + +''') +icon_caret_up_outline = NotStr('''''') +icon_shuffle_sharp = NotStr(''' + + + + + +''') +icon_pricetag_outline = NotStr(''' + + +''') +icon_albums = NotStr(''' + + + +''') +icon_bowling_ball = NotStr('''''') +icon_star_half_outline = NotStr(''' + + +''') +icon_medical = NotStr('''''') +icon_book_outline = NotStr(''' + + +''') +icon_reorder_four_outline = NotStr(''' + + + + +''') +icon_square_outline = NotStr('''''') +icon_footsteps = NotStr(''' + + + + +''') +icon_thumbs_up = NotStr(''' + + + + + +''') +icon_caret_down_sharp = NotStr('''''') +icon_flash = NotStr('''''') +icon_notifications_sharp = NotStr(''' + + +''') +icon_eye_off_outline = NotStr(''' + + + + + +''') +icon_person_circle_outline = NotStr(''' + + +''') +icon_newspaper_outline = NotStr(''' + + + + + + + + +''') +icon_close_circle_outline = NotStr(''' + + + +''') +icon_pin_sharp = NotStr('''''') +icon_logo_github = NotStr('''''') +icon_logo_markdown = NotStr('''''') +icon_help_circle_outline = NotStr(''' + + + +''') +icon_logo_yen = NotStr('''''') +icon_stop_outline = NotStr('''''') +icon_document = NotStr(''' + + +''') +icon_notifications_circle = NotStr('''''') +icon_eye_off = NotStr(''' + + + + + +''') +icon_logo_microsoft = NotStr(''' + + + + +''') +icon_language_sharp = NotStr(''' + + +''') +icon_file_tray_stacked_outline = NotStr(''' + + + + + + + + +''') +icon_logo_tiktok = NotStr('''''') +icon_exit_outline = NotStr(''' + + + +''') +icon_videocam_off_sharp = NotStr(''' + + + +''') +icon_heart_half = NotStr('''''') +icon_code = NotStr(''' + + +''') +icon_pause = NotStr(''' + + +''') +icon_logo_electron = NotStr(''' + + + + + + + +''') +icon_watch_sharp = NotStr(''' + + +''') +icon_key_sharp = NotStr('''''') +icon_create_outline = NotStr(''' + + + +''') +icon_logo_buffer = NotStr(''' + + + +''') +icon_chatbox_ellipses = NotStr('''''') +icon_browsers_sharp = NotStr('''''') +icon_bag_handle_sharp = NotStr('''''') +icon_duplicate_outline = NotStr(''' + + + + +''') +icon_reload_circle_sharp = NotStr('''''') +icon_cube_sharp = NotStr(''' + + + +''') +icon_lock_closed_sharp = NotStr('''''') +icon_mic_off = NotStr(''' + + + + + +''') +icon_rocket = NotStr(''' + + + +''') +icon_mail_outline = NotStr(''' + + +''') +icon_logo_apple_appstore = NotStr('''''') +icon_logo_skype = NotStr('''''') +icon_heart_dislike = NotStr(''' + + + +''') +icon_male_female_sharp = NotStr('''''') +icon_people_circle_sharp = NotStr('''''') +icon_desktop_sharp = NotStr('''''') +icon_flask_outline = NotStr(''' + + + +''') +icon_alert_sharp = NotStr(''' + + +''') +icon_browsers = NotStr('''''') +icon_arrow_redo = NotStr('''''') +icon_transgender_sharp = NotStr('''''') +icon_layers_outline = NotStr(''' + + + +''') +icon_shield = NotStr('''''') +icon_logo_vimeo = NotStr('''''') +icon_wifi_outline = NotStr(''' + + + + +''') +icon_ticket_outline = NotStr(''' + + + + + +''') +icon_bag_add = NotStr('''''') +icon_caret_up_circle = NotStr('''''') +icon_fitness_outline = NotStr(''' + + +''') +icon_medal = NotStr(''' + + + +''') +icon_server_outline = NotStr(''' + + + + +''') +icon_gift_outline = NotStr(''' + + + + + +''') +icon_leaf_outline = NotStr(''' + + +''') +icon_ice_cream = NotStr(''' + + +''') +icon_cafe = NotStr(''' + + +''') +icon_play_forward_circle_outline = NotStr(''' + + +''') +icon_folder_open = NotStr(''' + + +''') +icon_logo_xbox = NotStr(''' + + + + +''') +icon_arrow_forward_circle = NotStr('''''') +icon_people = NotStr(''' + + + + +''') +icon_rainy = NotStr(''' + + + + + +''') +icon_list_sharp = NotStr(''' + + + + + + +''') +icon_reorder_three_sharp = NotStr(''' + + + +''') +icon_baseball = NotStr(''' + + + +''') +icon_woman = NotStr(''' + + +''') +icon_person = NotStr(''' + + +''') +icon_stop_circle = NotStr('''''') +icon_arrow_down_circle_outline = NotStr(''' + + + +''') +icon_logo_ionitron = NotStr(''' + + +''') +icon_warning_sharp = NotStr('''''') +icon_videocam = NotStr(''' + + +''') +icon_print = NotStr(''' + + +''') +icon_logo_laravel = NotStr('''''') +icon_basketball_outline = NotStr(''' + + + + + +''') +icon_logo_dribbble = NotStr('''''') +icon_add_circle = NotStr('''''') +icon_cut_sharp = NotStr(''' + + +''') +icon_arrow_redo_sharp = NotStr('''''') +icon_stats_chart = NotStr(''' + + + + +''') +icon_medal_outline = NotStr(''' + + + + + + +''') +icon_volume_medium_sharp = NotStr(''' + + + +''') +icon_share_social_sharp = NotStr('''''') +icon_notifications_off_circle_outline = NotStr(''' + + + + + +''') +icon_checkmark_circle_sharp = NotStr('''''') +icon_accessibility_outline = NotStr(''' + + +''') +icon_footsteps_outline = NotStr(''' + + + + +''') +icon_images = NotStr(''' + + +''') +icon_chevron_down_sharp = NotStr('''''') +icon_arrow_forward_outline = NotStr(''' + + +''') +icon_disc_outline = NotStr(''' + + + +''') +icon_phone_portrait_outline = NotStr(''' + + +''') +icon_arrow_redo_circle_sharp = NotStr('''''') +icon_share_social = NotStr('''''') +icon_close_circle = NotStr('''''') +icon_pie_chart = NotStr(''' + + +''') +icon_bowling_ball_outline = NotStr(''' + + + + +''') +icon_today_outline = NotStr(''' + + + + + +''') +icon_stopwatch = NotStr(''' + + +''') +icon_trending_down_sharp = NotStr(''' + + +''') +icon_paw_sharp = NotStr(''' + + + + + +''') +icon_invert_mode_sharp = NotStr(''' + + +''') +icon_play_back_sharp = NotStr(''' + + +''') +icon_podium_outline = NotStr(''' + + + +''') +icon_globe_sharp = NotStr(''' + + + + + + +''') +icon_add_circle_sharp = NotStr('''''') +icon_battery_full = NotStr(''' + + + +''') +icon_play_skip_forward_outline = NotStr(''' + + +''') +icon_volume_medium_outline = NotStr(''' + + + +''') +icon_construct_sharp = NotStr(''' + + + +''') +icon_attach = NotStr('''''') +icon_barbell = NotStr('''''') +icon_add_circle_outline = NotStr(''' + + + +''') +icon_trophy_sharp = NotStr('''''') +icon_download_outline = NotStr(''' + + + +''') +icon_phone_portrait = NotStr(''' + + + +''') +icon_thermometer_sharp = NotStr('''''') +icon_checkmark_done_outline = NotStr(''' + + + +''') +icon_log_out_sharp = NotStr(''' + + +''') +icon_at_circle = NotStr(''' + + +''') +icon_person_add_sharp = NotStr(''' + + + +''') +icon_pulse_outline = NotStr(''' + + +''') +icon_notifications_circle_outline = NotStr(''' + + + +''') +icon_journal_outline = NotStr(''' + + +''') +icon_cut = NotStr(''' + + + +''') +icon_nutrition = NotStr(''' + + +''') +icon_caret_forward_outline = NotStr('''''') +icon_pause_circle_sharp = NotStr('''''') +icon_caret_forward_sharp = NotStr('''''') +icon_pin_outline = NotStr(''' + + + +''') +icon_rocket_outline = NotStr(''' + + +''') +icon_person_add_outline = NotStr(''' + + + + +''') +icon_subway = NotStr(''' + + +''') +icon_extension_puzzle = NotStr('''''') +icon_trail_sign_outline = NotStr(''' + + + + + +''') +icon_logo_linkedin = NotStr('''''') +icon_contrast_outline = NotStr(''' + + +''') +icon_play = NotStr('''''') +icon_resize_sharp = NotStr(''' + + + +''') +icon_pencil = NotStr(''' + + +''') +icon_list_circle_sharp = NotStr('''''') +icon_alert_circle_outline = NotStr(''' + + + +''') +icon_archive = NotStr(''' + + +''') +icon_tennisball_sharp = NotStr(''' + + + +''') +icon_battery_charging = NotStr(''' + + + + + + +''') +icon_man_outline = NotStr(''' + + + + +''') +icon_toggle = NotStr('''''') +icon_medical_outline = NotStr('''''') +icon_document_attach = NotStr(''' + + +''') +icon_sunny_outline = NotStr(''' + + + + + + + + + +''') +icon_information_circle = NotStr('''''') +icon_color_palette_outline = NotStr(''' + + + + + + +''') +icon_arrow_back_sharp = NotStr(''' + + +''') +icon_wallet_sharp = NotStr(''' + + + +''') +icon_at = NotStr(''' + + +''') +icon_copy_outline = NotStr(''' + + +''') +icon_color_wand_sharp = NotStr(''' + + + + + + + +''') +icon_logo_closed_captioning = NotStr(''' + + + +''') +icon_ellipsis_horizontal_circle_sharp = NotStr('''''') +icon_color_palette_sharp = NotStr('''''') +icon_log_out = NotStr(''' + + +''') +icon_cloud_upload = NotStr(''' + + +''') +icon_square = NotStr('''''') +icon_play_forward_circle = NotStr('''''') +icon_log_in = NotStr(''' + + +''') +icon_megaphone_outline = NotStr(''' + + + + + + +''') +icon_film_sharp = NotStr('''''') +icon_hourglass_outline = NotStr(''' + + +''') +icon_logo_tux = NotStr('''''') +icon_layers_sharp = NotStr(''' + + + +''') +icon_key_outline = NotStr('''''') +icon_calendar_clear_outline = NotStr(''' + + + + +''') +icon_cloud_done_outline = NotStr(''' + + +''') +icon_logo_hackernews = NotStr('''''') +icon_scan_circle = NotStr('''''') +icon_trail_sign_sharp = NotStr('''''') +icon_reader = NotStr('''''') +icon_cloudy_night_outline = NotStr(''' + + +''') +icon_logo_apple = NotStr(''' + + +''') +icon_pencil_sharp = NotStr(''' + + +''') +icon_battery_dead = NotStr(''' + + +''') +icon_bluetooth = NotStr('''''') +icon_moon_sharp = NotStr('''''') +icon_basket_outline = NotStr(''' + + +''') +icon_repeat_outline = NotStr(''' + + + + +''') +icon_barbell_outline = NotStr(''' + + + + + +''') +icon_send_outline = NotStr('''''') +icon_water_sharp = NotStr('''''') +icon_build_sharp = NotStr('''''') +icon_shield_half_outline = NotStr(''' + + +''') +icon_nuclear = NotStr('''''') +icon_medical_sharp = NotStr('''''') +icon_checkmark_done_circle_outline = NotStr(''' + + + + +''') +icon_logo_firebase = NotStr('''''') +icon_thumbs_down_outline = NotStr(''' + + + + + +''') +icon_open_sharp = NotStr(''' + + +''') +icon_bar_chart = NotStr(''' + + + + +''') +icon_bookmark_sharp = NotStr('''''') +icon_heart_dislike_circle_outline = NotStr(''' + + + + +''') +icon_body_sharp = NotStr(''' + + +''') +icon_backspace_outline = NotStr(''' + + + + + +''') +icon_camera = NotStr(''' + + +''') +icon_radio_button_on_outline = NotStr(''' + + +''') +icon_cloud_offline_sharp = NotStr(''' + + + +''') +icon_mic_circle = NotStr('''''') +icon_basketball_sharp = NotStr(''' + + + + + + + + +''') +icon_attach_sharp = NotStr('''''') +icon_business = NotStr(''' + + + + + + + +''') +icon_document_lock = NotStr(''' + + + +''') +icon_radio_button_off_outline = NotStr('''''') +icon_bookmark = NotStr('''''') +icon_code_working_outline = NotStr(''' + + + + + +''') +icon_sunny_sharp = NotStr(''' + + + + + + + + + +''') +icon_volume_off_outline = NotStr('''''') +icon_help_sharp = NotStr(''' + + +''') +icon_hand_right_sharp = NotStr('''''') +icon_expand_outline = NotStr(''' + + + + + + + + +''') +icon_logo_youtube = NotStr('''''') +icon_ellipsis_vertical_circle_outline = NotStr(''' + + + + +''') +icon_list = NotStr(''' + + + + + + +''') +icon_paw_outline = NotStr(''' + + + + + +''') +icon_bonfire = NotStr(''' + + + + + + + + +''') +icon_sad_outline = NotStr(''' + + + + +''') +icon_document_lock_outline = NotStr(''' + + + + +''') +icon_help_circle = NotStr('''''') +icon_caret_up_circle_outline = NotStr(''' + + +''') +icon_notifications_off_sharp = NotStr(''' + + + + +''') +icon_basket_sharp = NotStr(''' + + +''') +icon_locate = NotStr(''' + + + + + +''') +icon_chevron_down = NotStr('''''') +icon_telescope_outline = NotStr(''' + + + + + +''') +icon_clipboard = NotStr('''''') +icon_return_down_forward_outline = NotStr(''' + + +''') +icon_arrow_up_outline = NotStr(''' + + +''') +icon_calendar_number_sharp = NotStr(''' + + +''') +icon_camera_reverse = NotStr('''''') +icon_lock_closed_outline = NotStr(''' + + +''') +icon_call_sharp = NotStr('''''') +icon_volume_low_sharp = NotStr(''' + + +''') +icon_duplicate_sharp = NotStr(''' + + +''') +icon_home = NotStr(''' + + +''') +icon_color_filter_outline = NotStr(''' + + + +''') +icon_code_slash_outline = NotStr(''' + + + +''') +icon_briefcase_outline = NotStr(''' + + + + +''') +icon_earth = NotStr('''''') +icon_logo_deviantart = NotStr('''''') +icon_happy_outline = NotStr(''' + + + + +''') +icon_bonfire_sharp = NotStr(''' + + + + + + + + +''') +icon_color_filter = NotStr(''' + + + + + + + +''') +icon_timer = NotStr('''''') +icon_caret_forward_circle_sharp = NotStr('''''') +icon_language = NotStr(''' + + +''') +icon_swap_vertical_sharp = NotStr(''' + + + + +''') +icon_ice_cream_sharp = NotStr(''' + + +''') +icon_flask = NotStr('''''') +icon_cloud_upload_sharp = NotStr(''' + + +''') +icon_document_attach_outline = NotStr(''' + + + +''') +icon_woman_sharp = NotStr(''' + + +''') +icon_at_outline = NotStr(''' + + +''') +icon_document_outline = NotStr(''' + + +''') +icon_trophy_outline = NotStr(''' + + + + + +''') +icon_caret_down_outline = NotStr('''''') +icon_brush_outline = NotStr(''' + + +''') +icon_document_lock_sharp = NotStr(''' + + + +''') +icon_shield_sharp = NotStr('''''') +icon_calendar_outline = NotStr(''' + + + + + + + + + + + + + +''') +icon_remove_sharp = NotStr('''''') +icon_logo_venmo = NotStr('''''') +icon_code_slash_sharp = NotStr(''' + + + +''') +icon_fish_outline = NotStr(''' + + + +''') +icon_transgender = NotStr('''''') +icon_swap_vertical = NotStr(''' + + + + +''') +icon_ellipsis_vertical_sharp = NotStr(''' + + + +''') +icon_flash_outline = NotStr('''''') +icon_ellipsis_horizontal_outline = NotStr(''' + + + +''') +icon_logo_pwa = NotStr(''' + + +''') +icon_eyedrop = NotStr('''''') +icon_female_sharp = NotStr('''''') +icon_wifi_sharp = NotStr(''' + + + + +''') +icon_document_text = NotStr(''' + + +''') +icon_ellipsis_horizontal_circle_outline = NotStr(''' + + + + +''') +icon_umbrella_outline = NotStr(''' + + + +''') +icon_link_sharp = NotStr(''' + + + +''') +icon_logo_playstation = NotStr(''' + + + +''') +icon_hammer_sharp = NotStr(''' + + +''') +icon_share_sharp = NotStr(''' + + +''') +icon_arrow_down_outline = NotStr(''' + + +''') +icon_git_compare_outline = NotStr(''' + + + + + + +''') +icon_heart = NotStr('''''') +icon_documents_sharp = NotStr(''' + + + + +''') +icon_eyedrop_sharp = NotStr('''''') +icon_trending_down_outline = NotStr(''' + + +''') +icon_caret_up = NotStr('''''') +icon_bed = NotStr(''' + + +''') +icon_trending_up = NotStr(''' + + +''') +icon_stop_circle_sharp = NotStr('''''') +icon_thunderstorm_outline = NotStr(''' + + + + + + +''') +icon_shield_outline = NotStr('''''') +icon_terminal_sharp = NotStr('''''') +icon_easel = NotStr(''' + + +''') +icon_water = NotStr('''''') +icon_card = NotStr(''' + + +''') +icon_document_attach_sharp = NotStr(''' + + +''') +icon_shirt = NotStr(''' + + +''') +icon_hand_left_outline = NotStr(''' + + + + + +''') +icon_volume_medium = NotStr(''' + + + +''') +icon_tablet_landscape_sharp = NotStr('''''') +icon_qr_code = NotStr(''' + + + + + + + + +''') +icon_library_sharp = NotStr(''' + + + + + + +''') +icon_notifications_off_circle = NotStr('''''') +icon_battery_half_outline = NotStr(''' + + + +''') +icon_football = NotStr('''''') +icon_return_up_back_outline = NotStr(''' + + +''') +icon_scale_sharp = NotStr('''''') +icon_unlink = NotStr(''' + + +''') +icon_medal_sharp = NotStr(''' + + + +''') +icon_caret_back_sharp = NotStr('''''') +icon_documents_outline = NotStr(''' + + + + +''') +icon_git_merge_sharp = NotStr('''''') +icon_beaker_outline = NotStr(''' + + +''') +icon_pulse = NotStr('''''') +icon_extension_puzzle_sharp = NotStr('''''') +icon_contrast = NotStr('''''') +icon_bag_remove_sharp = NotStr('''''') +icon_rainy_outline = NotStr(''' + + + + + +''') +icon_phone_portrait_sharp = NotStr('''''') +icon_flag_outline = NotStr('''''') +icon_radio_sharp = NotStr(''' + + + + + + + +''') +icon_chatbubble_outline = NotStr('''''') +icon_logo_chrome = NotStr(''' + + + + +''') +icon_cloud_download_outline = NotStr(''' + + + +''') +icon_cloudy = NotStr('''''') +icon_mail_unread_sharp = NotStr(''' + + +''') +icon_git_network_outline = NotStr(''' + + + + + + +''') +icon_warning = NotStr('''''') +icon_tennisball_outline = NotStr(''' + + + +''') +icon_desktop = NotStr(''' + + +''') +icon_shapes_sharp = NotStr(''' + + +''') +icon_checkmark_outline = NotStr('''''') +icon_ellipse_sharp = NotStr('''''') +icon_grid = NotStr(''' + + + + +''') +icon_golf_sharp = NotStr(''' + + +''') +icon_exit = NotStr(''' + + +''') +icon_earth_sharp = NotStr(''' + + + + + + + +''') +icon_wallet = NotStr(''' + + + +''') +icon_pie_chart_outline = NotStr(''' + + +''') +icon_triangle = NotStr('''''') +icon_car = NotStr('''''') +icon_bluetooth_outline = NotStr('''''') +icon_invert_mode_outline = NotStr(''' + + + +''') +icon_logo_discord = NotStr(''' + + + +''') +icon_log_in_sharp = NotStr(''' + + +''') +icon_chevron_up_circle = NotStr('''''') +icon_watch_outline = NotStr(''' + + + +''') +icon_download = NotStr(''' + + +''') +icon_crop = NotStr(''' + + +''') +icon_albums_sharp = NotStr(''' + + + +''') +icon_cart_sharp = NotStr(''' + + + +''') +icon_apps_sharp = NotStr(''' + + + + + + + + + +''') +icon_reorder_two_outline = NotStr(''' + + +''') +icon_business_outline = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_link = NotStr(''' + + + +''') +icon_mail_unread = NotStr(''' + + +''') +icon_play_forward_outline = NotStr(''' + + +''') +icon_stats_chart_sharp = NotStr(''' + + + + +''') +icon_trending_up_outline = NotStr(''' + + +''') +icon_sad_sharp = NotStr('''''') +icon_business_sharp = NotStr(''' + + + + +''') +icon_radio = NotStr(''' + + + + + + + +''') +icon_subway_outline = NotStr(''' + + + + + + + + +''') +icon_football_outline = NotStr(''' + + + + + + + + + + + + +''') +icon_train_outline = NotStr(''' + + + + +''') +icon_thermometer_outline = NotStr(''' + + + +''') +icon_shield_checkmark_outline = NotStr(''' + + +''') +icon_logo_reddit = NotStr(''' + + + + +''') +icon_bowling_ball_sharp = NotStr('''''') +icon_flag_sharp = NotStr('''''') +icon_logo_bitbucket = NotStr('''''') +icon_heart_circle = NotStr('''''') +icon_chatbox_sharp = NotStr('''''') +icon_search_circle_sharp = NotStr(''' + + +''') +icon_play_back = NotStr('''''') +icon_egg = NotStr('''''') +icon_contract = NotStr(''' + + + + + + + + +''') +icon_cafe_sharp = NotStr(''' + + +''') +icon_camera_reverse_outline = NotStr(''' + + + + + +''') +icon_airplane_outline = NotStr('''''') +icon_heart_half_sharp = NotStr('''''') +icon_swap_vertical_outline = NotStr(''' + + + + +''') +icon_chevron_forward_outline = NotStr('''''') +icon_medkit_outline = NotStr(''' + + + + +''') +icon_diamond_outline = NotStr(''' + + + + + + +''') +icon_tv_outline = NotStr(''' + + +''') +icon_body = NotStr(''' + + +''') +icon_color_filter_sharp = NotStr(''' + + + + + + + +''') +icon_chevron_down_outline = NotStr('''''') +icon_book_sharp = NotStr(''' + + +''') +icon_exit_sharp = NotStr(''' + + +''') +icon_bug_sharp = NotStr(''' + + +''') +icon_keypad_sharp = NotStr(''' + + + + + + + + + + +''') +icon_arrow_forward_sharp = NotStr(''' + + +''') +icon_bandage_outline = NotStr(''' + + + + + + +''') +icon_chevron_back_outline = NotStr('''''') +icon_infinite_sharp = NotStr('''''') +icon_mic_off_circle_sharp = NotStr('''''') +icon_caret_forward_circle = NotStr('''''') +icon_film = NotStr('''''') +icon_bag_remove_outline = NotStr(''' + + + +''') +icon_gift_sharp = NotStr(''' + + + + + +''') +icon_chevron_back = NotStr('''''') +icon_call = NotStr('''''') +icon_shirt_sharp = NotStr(''' + + +''') +icon_print_sharp = NotStr(''' + + + + +''') +icon_cart = NotStr(''' + + + +''') +icon_pricetags_outline = NotStr(''' + + + +''') +icon_stop = NotStr('''''') +icon_finger_print = NotStr(''' + + + + + +''') +icon_snow_outline = NotStr(''' + + + + + + + + + +''') +icon_ticket_sharp = NotStr('''''') +icon_pin = NotStr('''''') +icon_boat_sharp = NotStr(''' + + +''') +icon_arrow_undo_circle = NotStr('''''') +icon_car_sport = NotStr('''''') +icon_magnet_outline = NotStr(''' + + + + + + + + + +''') +icon_mic_sharp = NotStr(''' + + + + +''') +icon_return_up_forward = NotStr(''' + + +''') +icon_crop_sharp = NotStr(''' + + +''') +icon_build = NotStr('''''') +icon_magnet = NotStr(''' + + + + + + +''') +icon_heart_dislike_outline = NotStr(''' + + + +''') +icon_play_back_circle_sharp = NotStr('''''') +icon_heart_dislike_circle = NotStr('''''') +icon_contract_outline = NotStr(''' + + + + + + + + +''') +icon_eye = NotStr(''' + + +''') +icon_podium_sharp = NotStr(''' + + + +''') +icon_bus_sharp = NotStr(''' + + +''') +icon_pencil_outline = NotStr(''' + + +''') +icon_refresh_outline = NotStr(''' + + +''') +icon_build_outline = NotStr(''' + + +''') +icon_chevron_forward_circle_sharp = NotStr('''''') +icon_american_football = NotStr(''' + + + +''') +icon_arrow_redo_outline = NotStr('''''') +icon_reorder_two = NotStr(''' + + +''') +icon_recording = NotStr('''''') +icon_play_skip_forward_circle = NotStr('''''') +icon_glasses_sharp = NotStr('''''') +icon_battery_full_outline = NotStr(''' + + + +''') +icon_arrow_down_circle = NotStr('''''') +icon_hardware_chip_outline = NotStr(''' + + + + + + + + + + + + + + +''') +icon_caret_down = NotStr('''''') +icon_help_circle_sharp = NotStr(''' + + +''') +icon_lock_open_outline = NotStr(''' + + +''') +icon_gift = NotStr(''' + + + + + +''') +icon_logo_amplify = NotStr('''''') +icon_color_wand = NotStr(''' + + + + + + + +''') +icon_enter_outline = NotStr(''' + + + +''') +icon_apps = NotStr(''' + + + + + + + + + +''') +icon_logo_alipay = NotStr('''''') +icon_caret_back_circle_sharp = NotStr('''''') +icon_git_pull_request = NotStr(''' + + +''') +icon_add_outline = NotStr(''' + + +''') +icon_tablet_portrait_outline = NotStr('''''') +icon_notifications_off_circle_sharp = NotStr('''''') +icon_megaphone_sharp = NotStr(''' + + + +''') +icon_checkmark_circle_outline = NotStr(''' + + +''') +icon_caret_up_sharp = NotStr('''''') +icon_logo_windows = NotStr(''' + + + + +''') +icon_calculator = NotStr('''''') +icon_partly_sunny = NotStr(''' + + + + + + +''') +icon_cloudy_night = NotStr(''' + + +''') +icon_ellipsis_horizontal = NotStr(''' + + + +''') +icon_ellipse = NotStr('''''') +icon_checkmark_circle = NotStr('''''') +icon_medkit_sharp = NotStr(''' + + +''') +icon_planet_sharp = NotStr(''' + + +''') +icon_ribbon_outline = NotStr(''' + + + + +''') +icon_arrow_down_sharp = NotStr(''' + + +''') +icon_airplane_sharp = NotStr('''''') +icon_cloud_outline = NotStr('''''') +icon_logo_css3 = NotStr('''''') +icon_reorder_four = NotStr(''' + + + + +''') +icon_options = NotStr(''' + + + +''') +icon_flash_off = NotStr(''' + + + +''') +icon_phone_landscape_sharp = NotStr('''''') +icon_fitness_sharp = NotStr(''' + + + + +''') +icon_clipboard_sharp = NotStr('''''') +icon_logo_amazon = NotStr(''' + + + +''') +icon_radio_outline = NotStr(''' + + + + + + + +''') +icon_volume_mute_sharp = NotStr(''' + + + + + + +''') +icon_accessibility = NotStr(''' + + +''') +icon_person_remove = NotStr(''' + + + +''') +icon_nuclear_sharp = NotStr(''' + + + +''') +icon_hand_left_sharp = NotStr('''''') +icon_bag_remove = NotStr('''''') +icon_close = NotStr('''''') +icon_thumbs_down_sharp = NotStr(''' + + + + +''') +icon_invert_mode = NotStr(''' + + + +''') +icon_git_compare_sharp = NotStr(''' + + +''') +icon_help_outline = NotStr(''' + + +''') +icon_copy_sharp = NotStr(''' + + +''') +icon_remove_circle_sharp = NotStr('''''') +icon_at_circle_sharp = NotStr(''' + + +''') +icon_star = NotStr('''''') +icon_cloud_offline = NotStr(''' + + + +''') +icon_recording_outline = NotStr(''' + + + +''') +icon_chevron_forward_sharp = NotStr('''''') +icon_play_back_outline = NotStr(''' + + +''') +icon_bulb = NotStr(''' + + + +''') +icon_reader_sharp = NotStr('''''') +icon_logo_yahoo = NotStr('''''') +icon_checkbox = NotStr('''''') +icon_train = NotStr(''' + + + +''') +icon_male_sharp = NotStr('''''') +icon_beer_outline = NotStr(''' + + + + + + + + +''') +icon_sad = NotStr('''''') +icon_logo_nodejs = NotStr(''' + + +''') +icon_sync_circle_sharp = NotStr('''''') +icon_logo_google = NotStr('''''') +icon_headset_sharp = NotStr('''''') +icon_person_add = NotStr(''' + + + +''') +icon_logo_javascript = NotStr('''''') +icon_ribbon_sharp = NotStr(''' + + + + +''') +icon_chevron_up_circle_sharp = NotStr('''''') +icon_videocam_off_outline = NotStr(''' + + + + +''') +icon_barbell_sharp = NotStr('''''') +icon_mic = NotStr(''' + + + + +''') +icon_paper_plane_sharp = NotStr('''''') +icon_move_sharp = NotStr(''' + + + + + + +''') +icon_play_forward = NotStr('''''') +icon_logo_tumblr = NotStr('''''') +icon_prism_outline = NotStr(''' + + +''') +icon_document_sharp = NotStr(''' + + +''') +icon_notifications_off_outline = NotStr(''' + + + + +''') +icon_logo_dropbox = NotStr('''''') +icon_calendar_number = NotStr(''' + + +''') +icon_heart_dislike_sharp = NotStr(''' + + + +''') +icon_logo_slack = NotStr(''' + + + + + + + + +''') +icon_game_controller = NotStr('''''') +icon_balloon_sharp = NotStr('''''') +icon_cellular_sharp = NotStr(''' + + + + +''') +icon_caret_down_circle_outline = NotStr(''' + + +''') +icon_bus = NotStr('''''') +icon_musical_notes = NotStr('''''') +icon_compass_sharp = NotStr(''' + + +''') +icon_browsers_outline = NotStr(''' + + +''') +icon_send_sharp = NotStr('''''') +icon_camera_sharp = NotStr(''' + + +''') +icon_play_circle_sharp = NotStr('''''') +icon_cash = NotStr(''' + + + + + + + + +''') +icon_save_outline = NotStr('''''') +icon_grid_outline = NotStr(''' + + + + +''') +icon_speedometer_outline = NotStr(''' + + + + + + + +''') +icon_image = NotStr('''''') +icon_chatbubble_sharp = NotStr('''''') +icon_reorder_two_sharp = NotStr(''' + + +''') +icon_return_up_forward_outline = NotStr(''' + + +''') +icon_ban = NotStr(''' + + +''') +icon_call_outline = NotStr('''''') +icon_stop_circle_outline = NotStr(''' + + +''') +icon_musical_note = NotStr('''''') +icon_bandage = NotStr(''' + + + + + + +''') +icon_pie_chart_sharp = NotStr(''' + + +''') +icon_repeat = NotStr(''' + + + + +''') +icon_cash_outline = NotStr(''' + + + + + + + + +''') +icon_qr_code_outline = NotStr(''' + + + + + + + + + + + +''') +icon_compass = NotStr(''' + + +''') +icon_play_forward_circle_sharp = NotStr('''''') +icon_share_outline = NotStr(''' + + + +''') +icon_file_tray_full_outline = NotStr(''' + + + + + + +''') +icon_navigate_circle = NotStr('''''') +icon_umbrella_sharp = NotStr(''' + + + +''') +icon_paper_plane = NotStr('''''') +icon_cloud = NotStr('''''') +icon_tv = NotStr(''' + + +''') +icon_settings_outline = NotStr('''''') +icon_happy_sharp = NotStr('''''') +icon_play_skip_back_sharp = NotStr('''''') +icon_arrow_undo_circle_sharp = NotStr('''''') +icon_school_outline = NotStr(''' + + + + +''') +icon_code_download_sharp = NotStr(''' + + + + +''') +icon_mail_open_sharp = NotStr('''''') +icon_flame_sharp = NotStr('''''') +icon_crop_outline = NotStr(''' + + + + +''') +icon_color_fill = NotStr(''' + + +''') +icon_search = NotStr('''''') +icon_information_circle_sharp = NotStr('''''') +icon_code_sharp = NotStr(''' + + +''') +icon_file_tray_outline = NotStr(''' + + + + +''') +icon_language_outline = NotStr(''' + + + + + + +''') +icon_cut_outline = NotStr(''' + + + + + + +''') +icon_paper_plane_outline = NotStr(''' + + +''') +icon_search_circle = NotStr(''' + + +''') +icon_arrow_forward = NotStr(''' + + +''') +icon_chevron_back_sharp = NotStr('''''') +icon_baseball_outline = NotStr(''' + + + + + + + + + + + +''') +icon_diamond_sharp = NotStr(''' + + + + + + + + +''') +icon_cellular_outline = NotStr(''' + + + + +''') +icon_person_outline = NotStr(''' + + +''') +icon_dice = NotStr(''' + + + +''') +icon_balloon_outline = NotStr(''' + + + + +''') +icon_sync_circle_outline = NotStr(''' + + + + +''') +icon_watch = NotStr(''' + + +''') +icon_unlink_sharp = NotStr(''' + + +''') +icon_cloud_circle_outline = NotStr(''' + + +''') +icon_storefront_sharp = NotStr(''' + + +''') +icon_key = NotStr('''''') +icon_remove_circle = NotStr('''''') +icon_help_buoy = NotStr('''''') +icon_eye_off_sharp = NotStr(''' + + + + + +''') +icon_time_outline = NotStr(''' + + +''') +icon_mic_off_sharp = NotStr(''' + + + + + +''') +icon_list_outline = NotStr(''' + + + + + + +''') +icon_flashlight_outline = NotStr(''' + + + +''') +icon_help_buoy_sharp = NotStr('''''') +icon_ellipsis_horizontal_circle = NotStr(''' + + + + +''') +icon_flower_sharp = NotStr(''' + + +''') +icon_folder_sharp = NotStr(''' + + +''') +icon_volume_off_sharp = NotStr('''''') +icon_qr_code_sharp = NotStr(''' + + + + + + + + + + + +''') +icon_mail_sharp = NotStr('''''') +icon_ellipsis_vertical_outline = NotStr(''' + + + +''') +icon_star_half = NotStr(''' + + +''') +icon_play_forward_sharp = NotStr(''' + + +''') +icon_person_circle_sharp = NotStr('''''') +icon_chatbubble = NotStr('''''') +icon_mail_unread_outline = NotStr(''' + + + + +''') +icon_prism = NotStr('''''') +icon_pint_outline = NotStr(''' + + +''') +icon_flashlight_sharp = NotStr(''' + + + +''') +icon_bookmarks_sharp = NotStr(''' + + +''') +icon_arrow_redo_circle = NotStr('''''') +icon_logo_steam = NotStr('''''') +icon_briefcase_sharp = NotStr(''' + + +''') +icon_male_female_outline = NotStr(''' + + + + + +''') +icon_camera_outline = NotStr(''' + + + +''') +icon_git_pull_request_sharp = NotStr(''' + + +''') +icon_trash_bin_outline = NotStr(''' + + + + +''') +icon_map = NotStr(''' + + + +''') +icon_wallet_outline = NotStr(''' + + + +''') +icon_shapes = NotStr(''' + + +''') +icon_planet = NotStr(''' + + +''') +icon_filter_circle_outline = NotStr(''' + + + + +''') +icon_caret_back_circle = NotStr('''''') +icon_flash_off_sharp = NotStr(''' + + + +''') +icon_git_network_sharp = NotStr('''''') +icon_chevron_forward_circle_outline = NotStr(''' + + +''') +icon_filter_sharp = NotStr(''' + + + +''') +icon_push = NotStr(''' + + +''') +icon_rose_outline = NotStr(''' + + + + +''') +icon_videocam_sharp = NotStr('''''') +icon_caret_back_outline = NotStr('''''') +icon_file_tray_stacked = NotStr(''' + + +''') +icon_arrow_up_circle_outline = NotStr(''' + + + +''') +icon_people_circle_outline = NotStr(''' + + + + + +''') +icon_document_text_sharp = NotStr(''' + + +''') +icon_cloud_download = NotStr(''' + + +''') +icon_radio_button_off_sharp = NotStr('''''') +icon_bookmarks_outline = NotStr(''' + + +''') +icon_radio_button_off = NotStr('''''') +icon_volume_mute = NotStr(''' + + + + + + +''') +icon_archive_outline = NotStr(''' + + + + +''') +icon_logo_capacitor = NotStr(''' + + +''') +icon_hand_right = NotStr('''''') +icon_newspaper = NotStr(''' + + +''') +icon_checkmark_sharp = NotStr('''''') +icon_wine = NotStr('''''') +icon_remove_outline = NotStr('''''') +icon_settings = NotStr(''' + + +''') +icon_thunderstorm = NotStr(''' + + + + + +''') +icon_logo_instagram = NotStr(''' + + + +''') +icon_beer_sharp = NotStr('''''') +icon_chatbubbles_outline = NotStr(''' + + +''') +icon_beaker_sharp = NotStr('''''') +icon_volume_off = NotStr('''''') +icon_file_tray_full_sharp = NotStr(''' + + + +''') +icon_git_branch = NotStr('''''') +icon_play_circle_outline = NotStr(''' + + +''') +icon_pizza = NotStr(''' + + +''') +icon_volume_low_outline = NotStr(''' + + +''') +icon_checkbox_outline = NotStr(''' + + +''') +icon_disc_sharp = NotStr(''' + + +''') +icon_receipt_sharp = NotStr(''' + + +''') +icon_golf_outline = NotStr(''' + + +''') +icon_mail_open = NotStr('''''') +icon_time = NotStr('''''') +icon_apps_outline = NotStr(''' + + + + + + + + + +''') +icon_search_sharp = NotStr('''''') +icon_ellipsis_vertical_circle_sharp = NotStr('''''') +icon_american_football_outline = NotStr(''' + + + + + + + +''') +icon_paw = NotStr(''' + + + + + +''') +icon_construct = NotStr(''' + + + +''') +icon_cloud_done_sharp = NotStr('''''') +icon_logo_foursquare = NotStr('''''') +icon_golf = NotStr(''' + + +''') +icon_list_circle_outline = NotStr(''' + + + + + + + +''') +icon_podium = NotStr(''' + + + +''') +icon_prism_sharp = NotStr('''''') +icon_logo_paypal = NotStr(''' + + +''') +icon_play_back_circle_outline = NotStr(''' + + +''') +icon_glasses = NotStr('''''') +icon_speedometer_sharp = NotStr('''''') +icon_telescope_sharp = NotStr(''' + + + +''') +icon_cloudy_outline = NotStr('''''') +icon_walk_sharp = NotStr(''' + + + + + +''') +icon_locate_sharp = NotStr(''' + + + + + +''') +icon_calendar_clear_sharp = NotStr(''' + + +''') +icon_power_outline = NotStr(''' + + +''') +icon_people_outline = NotStr(''' + + + + +''') +icon_library = NotStr(''' + + + + + + +''') +icon_chevron_back_circle_outline = NotStr(''' + + +''') +icon_resize_outline = NotStr(''' + + + +''') +icon_diamond = NotStr(''' + + + + + + + +''') +icon_lock_open = NotStr('''''') +icon_location = NotStr(''' + + +''') +icon_airplane = NotStr('''''') +icon_ear = NotStr('''''') +icon_search_outline = NotStr(''' + + +''') +icon_videocam_outline = NotStr(''' + + +''') +icon_calendar_number_outline = NotStr(''' + + + + + + + +''') +icon_mic_circle_sharp = NotStr('''''') +icon_hammer = NotStr(''' + + +''') +icon_refresh_circle_outline = NotStr(''' + + + +''') +icon_return_down_forward_sharp = NotStr(''' + + +''') +icon_flashlight = NotStr(''' + + +''') +icon_expand_sharp = NotStr(''' + + + + + + + + +''') +icon_timer_sharp = NotStr('''''') +icon_shield_half = NotStr(''' + + +''') +icon_at_circle_outline = NotStr(''' + + +''') +icon_nutrition_sharp = NotStr(''' + + +''') +icon_man_sharp = NotStr(''' + + +''') +icon_tennisball = NotStr(''' + + + +''') +icon_school_sharp = NotStr(''' + + +''') +icon_today = NotStr(''' + + +''') +icon_notifications_circle_sharp = NotStr(''' + + + + +''') +icon_musical_notes_sharp = NotStr('''''') +icon_barcode = NotStr('''''') +icon_map_sharp = NotStr('''''') +icon_shield_checkmark_sharp = NotStr('''''') +icon_copy = NotStr(''' + + +''') +icon_stopwatch_outline = NotStr(''' + + + + + +''') +icon_color_wand_outline = NotStr(''' + + + + + + + +''') +icon_hourglass = NotStr('''''') +icon_image_outline = NotStr(''' + + + + +''') +icon_shield_half_sharp = NotStr('''''') +icon_bicycle_sharp = NotStr(''' + + + + +''') +icon_link_outline = NotStr(''' + + + +''') +icon_moon = NotStr('''''') +icon_push_outline = NotStr(''' + + + +''') +icon_logo_google_playstore = NotStr(''' + + + + +''') +icon_happy = NotStr('''''') +icon_repeat_sharp = NotStr(''' + + + + +''') +icon_fitness = NotStr(''' + + + + +''') +icon_moon_outline = NotStr('''''') +icon_reorder_three = NotStr(''' + + + +''') +icon_caret_down_circle = NotStr('''''') +icon_hand_left = NotStr('''''') +icon_map_outline = NotStr(''' + + + +''') +icon_checkbox_sharp = NotStr('''''') +icon_play_sharp = NotStr('''''') +icon_medkit = NotStr(''' + + +''') +icon_chatbox = NotStr('''''') +icon_logo_firefox = NotStr('''''') +icon_arrow_up_circle_sharp = NotStr('''''') +icon_umbrella = NotStr('''''') +icon_bar_chart_outline = NotStr(''' + + + + +''') +icon_logo_whatsapp = NotStr('''''') +icon_logo_usd = NotStr('''''') +icon_volume_low = NotStr(''' + + +''') +icon_server_sharp = NotStr(''' + + + + +''') +icon_storefront = NotStr(''' + + +''') +icon_checkmark_done_circle = NotStr('''''') +icon_heart_sharp = NotStr('''''') +icon_create = NotStr(''' + + + +''') +icon_square_sharp = NotStr('''''') +icon_football_sharp = NotStr('''''') +icon_alert_circle = NotStr('''''') +icon_laptop_outline = NotStr(''' + + +''') +icon_chevron_down_circle_sharp = NotStr('''''') +icon_people_circle = NotStr(''' + + + + + + + + + + + + + + + + + + + + + +''') +icon_laptop_sharp = NotStr('''''') +icon_trending_up_sharp = NotStr(''' + + +''') +icon_eye_sharp = NotStr(''' + + +''') +icon_search_circle_outline = NotStr(''' + + + +''') +icon_logo_mastodon = NotStr('''''') +icon_musical_note_sharp = NotStr('''''') +icon_cloud_circle_sharp = NotStr('''''') +icon_thunderstorm_sharp = NotStr(''' + + + + + +''') +icon_log_in_outline = NotStr(''' + + + +''') +icon_locate_outline = NotStr(''' + + + + + +''') +icon_git_network = NotStr('''''') +icon_add_sharp = NotStr(''' + + +''') +icon_chevron_back_circle = NotStr('''''') +icon_library_outline = NotStr(''' + + + + + + +''') +icon_game_controller_sharp = NotStr('''''') +icon_car_outline = NotStr(''' + + + + + + +''') +icon_bed_outline = NotStr(''' + + + + + +''') +icon_trending_down = NotStr(''' + + +''') +icon_ellipsis_horizontal_sharp = NotStr(''' + + + +''') +icon_refresh = NotStr(''' + + +''') +icon_scan_sharp = NotStr(''' + + + + +''') +icon_information_circle_outline = NotStr(''' + + + + +''') +icon_logo_medium = NotStr('''''') +icon_flash_sharp = NotStr('''''') +icon_refresh_sharp = NotStr(''' + + +''') +icon_dice_sharp = NotStr(''' + + + +''') +icon_receipt = NotStr(''' + + +''') +icon_logo_apple_ar = NotStr(''' + + + + + + + + + + + + + + +''') +icon_arrow_back_circle_sharp = NotStr('''''') +icon_folder = NotStr(''' + + +''') +icon_pulse_sharp = NotStr('''''') +icon_bar_chart_sharp = NotStr(''' + + + + +''') +icon_fish_sharp = NotStr(''' + + +''') +icon_musical_note_outline = NotStr('''''') +icon_eyedrop_outline = NotStr(''' + + + + +''') +icon_close_circle_sharp = NotStr('''''') +icon_arrow_down = NotStr(''' + + +''') +icon_checkmark_done_circle_sharp = NotStr('''''') +icon_hammer_outline = NotStr(''' + + +''') +icon_bus_outline = NotStr(''' + + + + + + + + + + +''') +icon_balloon = NotStr('''''') +icon_briefcase = NotStr(''' + + + +''') +icon_options_sharp = NotStr(''' + + + +''') +icon_file_tray_full = NotStr(''' + + + +''') +icon_reload = NotStr(''' + + +''') +icon_arrow_down_circle_sharp = NotStr('''''') +icon_glasses_outline = NotStr(''' + + + + + +''') +icon_chevron_up_outline = NotStr('''''') +icon_stats_chart_outline = NotStr(''' + + + + +''') +icon_reorder_three_outline = NotStr(''' + + + +''') +icon_checkmark_done = NotStr(''' + + + +''') +icon_person_circle = NotStr('''''') +icon_person_remove_sharp = NotStr(''' + + + +''') +icon_fast_food_outline = NotStr(''' + + + + + + + + +''') +icon_woman_outline = NotStr(''' + + + + + +''') +icon_mic_outline = NotStr(''' + + + + +''') +icon_headset = NotStr('''''') +icon_swap_horizontal = NotStr(''' + + + + +''') +icon_bag_handle = NotStr('''''') +icon_arrow_back_circle_outline = NotStr(''' + + + +''') +icon_female_outline = NotStr(''' + + + +''') +icon_code_outline = NotStr(''' + + +''') +icon_snow_sharp = NotStr('''''') +icon_logo_octocat = NotStr(''' + + + +''') +icon_shirt_outline = NotStr(''' + + +''') +icon_home_outline = NotStr(''' + + + +''') +icon_code_download = NotStr(''' + + + + +''') +icon_battery_charging_sharp = NotStr(''' + + + + + + +''') +icon_power = NotStr(''' + + +''') +icon_logo_facebook = NotStr('''''') +icon_attach_outline = NotStr('''''') +icon_thumbs_up_outline = NotStr(''' + + + + + +''') +icon_terminal_outline = NotStr(''' + + + +''') +icon_return_down_back = NotStr(''' + + +''') +icon_log_out_outline = NotStr(''' + + + +''') +icon_trail_sign = NotStr('''''') +icon_move_outline = NotStr(''' + + + + + + +''') +icon_male = NotStr('''''') +icon_game_controller_outline = NotStr(''' + + + + + + + +''') +icon_tablet_portrait_sharp = NotStr('''''') +icon_pause_circle_outline = NotStr(''' + + + +''') +icon_calculator_sharp = NotStr('''''') +icon_bag_check_sharp = NotStr('''''') +icon_stop_sharp = NotStr('''''') +icon_chatbubble_ellipses_sharp = NotStr('''''') +icon_cube = NotStr(''' + + + +''') +icon_keypad = NotStr(''' + + + + + + + + + + +''') +icon_star_sharp = NotStr('''''') +icon_logo_pinterest = NotStr('''''') +icon_american_football_sharp = NotStr(''' + + + +''') +icon_cafe_outline = NotStr(''' + + + +''') +icon_tv_sharp = NotStr(''' + + +''') +icon_bandage_sharp = NotStr(''' + + + +''') +icon_unlink_outline = NotStr(''' + + +''') +icon_play_skip_forward_circle_outline = NotStr(''' + + +''') +icon_megaphone = NotStr(''' + + + +''') +icon_filter = NotStr(''' + + + +''') +icon_phone_landscape = NotStr(''' + + + +''') +icon_bug = NotStr(''' + + +''') +icon_logo_gitlab = NotStr('''''') +icon_rainy_sharp = NotStr(''' + + + + + +''') +icon_image_sharp = NotStr('''''') +icon_checkmark = NotStr('''''') +icon_notifications = NotStr(''' + + +''') +icon_beaker = NotStr('''''') +icon_bag_outline = NotStr(''' + + +''') +icon_pause_outline = NotStr(''' + + +''') +icon_play_skip_back_circle_outline = NotStr(''' + + +''') +icon_tablet_landscape_outline = NotStr('''''') +icon_bag_check_outline = NotStr(''' + + + +''') +icon_arrow_undo_sharp = NotStr('''''') +icon_download_sharp = NotStr(''' + + +''') +icon_volume_mute_outline = NotStr(''' + + + + + + +''') +icon_menu = NotStr(''' + + + +''') +icon_sparkles_outline = NotStr(''' + + + +''') +icon_reorder_four_sharp = NotStr(''' + + + + +''') +icon_expand = NotStr(''' + + + + + + + + +''') +icon_partly_sunny_outline = NotStr(''' + + + + + + +''') +icon_swap_horizontal_outline = NotStr(''' + + + + +''') +icon_chevron_up_sharp = NotStr('''''') +icon_body_outline = NotStr(''' + + +''') +icon_calendar_clear = NotStr(''' + + +''') +icon_car_sharp = NotStr('''''') +icon_chatbox_outline = NotStr('''''') +icon_thumbs_down = NotStr(''' + + + + + +''') +icon_bulb_sharp = NotStr(''' + + + +''') +icon_sparkles = NotStr(''' + + + +''') +icon_move = NotStr(''' + + + + + + +''') +icon_car_sport_sharp = NotStr('''''') +icon_cart_outline = NotStr(''' + + + + +''') +icon_hand_right_outline = NotStr(''' + + + + + +''') +icon_baseball_sharp = NotStr(''' + + + +''') +icon_flame_outline = NotStr(''' + + +''') +icon_scan_circle_outline = NotStr(''' + + + + + +''') +icon_return_down_forward = NotStr(''' + + +''') +icon_power_sharp = NotStr(''' + + +''') +icon_beer = NotStr('''''') +icon_shapes_outline = NotStr(''' + + +''') +icon_play_skip_back = NotStr('''''') +icon_play_outline = NotStr('''''') +icon_scan = NotStr(''' + + + + +''') +icon_id_card_sharp = NotStr('''''') +icon_volume_high_sharp = NotStr(''' + + + + +''') +icon_keypad_outline = NotStr(''' + + + + + + + + + + +''') +icon_hourglass_sharp = NotStr('''''') +icon_journal = NotStr(''' + + +''') +icon_file_tray = NotStr('''''') +icon_man = NotStr(''' + + +''') +icon_restaurant_outline = NotStr(''' + + + + + +''') +icon_navigate_outline = NotStr('''''') +icon_information_outline = NotStr(''' + + + +''') +icon_menu_outline = NotStr(''' + + + +''') +icon_chevron_up = NotStr('''''') +icon_reload_circle_outline = NotStr(''' + + + +''') +icon_navigate_circle_outline = NotStr(''' + + +''') +icon_play_skip_back_circle_sharp = NotStr('''''') +icon_chatbubbles = NotStr(''' + + + +''') +icon_mic_off_outline = NotStr(''' + + + + + +''') +icon_brush = NotStr(''' + + +''') +icon_code_slash = NotStr(''' + + + +''') +icon_menu_sharp = NotStr('''''') +icon_git_commit_outline = NotStr(''' + + + +''') +icon_archive_sharp = NotStr(''' + + +''') +icon_skull = NotStr('''''') +icon_pizza_sharp = NotStr(''' + + + + + +''') +icon_open = NotStr(''' + + +''') +icon_transgender_outline = NotStr(''' + + + + + + + + +''') +icon_mail = NotStr('''''') +icon_bug_outline = NotStr(''' + + + + + + + + + +''') +icon_list_circle = NotStr('''''') +icon_chevron_down_circle_outline = NotStr(''' + + +''') +icon_star_half_sharp = NotStr('''''') +icon_ear_sharp = NotStr('''''') +icon_logo_vue = NotStr(''' + + +''') +icon_flower = NotStr(''' + + +''') +icon_cog = NotStr('''''') +icon_person_sharp = NotStr('''''') +icon_logo_bitcoin = NotStr('''''') +icon_desktop_outline = NotStr(''' + + + + +''') +icon_code_working_sharp = NotStr(''' + + + + + +''') +icon_shuffle = NotStr(''' + + + + + +''') +icon_caret_back = NotStr('''''') +icon_alert_circle_sharp = NotStr(''' + + +''') +icon_file_tray_sharp = NotStr('''''') +icon_cash_sharp = NotStr(''' + + + + + + + + +''') +icon_close_outline = NotStr(''' + + +''') +icon_card_sharp = NotStr(''' + + +''') +icon_git_branch_sharp = NotStr('''''') +icon_chevron_forward = NotStr('''''') +icon_logo_react = NotStr(''' + + +''') +icon_logo_vercel = NotStr('''''') +icon_layers = NotStr(''' + + + +''') +icon_bag_add_sharp = NotStr('''''') +icon_reload_outline = NotStr(''' + + +''') +icon_logo_codepen = NotStr(''' + + + + + + + + +''') +icon_logo_python = NotStr(''' + + +''') +icon_thermometer = NotStr('''''') +icon_car_sport_outline = NotStr(''' + + + + + + + + + +''') +icon_print_outline = NotStr(''' + + + + +''') +icon_funnel_outline = NotStr('''''') +icon_heart_outline = NotStr('''''') +icon_barcode_sharp = NotStr(''' + + + + + + + +''') +icon_resize = NotStr(''' + + + +''') +icon_logo_behance = NotStr(''' + + + + +''') +icon_pricetag_sharp = NotStr('''''') +icon_chevron_down_circle = NotStr('''''') +icon_share_social_outline = NotStr(''' + + + + + +''') +icon_play_circle = NotStr('''''') +icon_cloudy_sharp = NotStr('''''') +icon_leaf = NotStr(''' + + +''') +icon_clipboard_outline = NotStr(''' + + +''') +icon_subway_sharp = NotStr(''' + + +''') +icon_chatbubble_ellipses_outline = NotStr(''' + + + + +''') +icon_logo_soundcloud = NotStr(''' + + + + + + + + + + + + + + +''') +icon_save = NotStr(''' + + +''') diff --git a/src/myfasthtml/icons/material.py b/src/myfasthtml/icons/material.py new file mode 100644 index 0000000..c96ed5e --- /dev/null +++ b/src/myfasthtml/icons/material.py @@ -0,0 +1,19062 @@ +# @sicons/material +# +# SVG icons integrated from [`material-design-icons`](https://github.com/google/material-design-icons) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_motorcycle_outlined = NotStr('''''') +icon_done_outline_filled = NotStr('''''') +icon_no_photography_sharp = NotStr('''''') +icon_ev_station_outlined = NotStr('''''') +icon_cancel_presentation_twotone = NotStr(''' + + +''') +icon_signal_cellular2_bar_sharp = NotStr(''' + + +''') +icon_queue_play_next_outlined = NotStr('''''') +icon_swipe_up_alt_filled = NotStr('''''') +icon_system_update_alt_twotone = NotStr('''''') +icon_restore_from_trash_outlined = NotStr('''''') +icon_stay_current_portrait_outlined = NotStr('''''') +icon_sensors_off_twotone = NotStr('''''') +icon_playlist_add_outlined = NotStr('''''') +icon_bus_alert_round = NotStr(''' + + +''') +icon_try_outlined = NotStr(''' + + +''') +icon_looks_one_round = NotStr('''''') +icon_monetization_on_filled = NotStr('''''') +icon_local_grocery_store_sharp = NotStr('''''') +icon_report_problem_round = NotStr('''''') +icon_home_work_filled = NotStr(''' + + +''') +icon_hdr_auto_twotone = NotStr(''' + + + + +''') +icon_label_sharp = NotStr('''''') +icon_connecting_airports_filled = NotStr('''''') +icon_md7_k_plus_twotone = NotStr(''' + + + +''') +icon_bluetooth_searching_outlined = NotStr('''''') +icon_downhill_skiing_sharp = NotStr('''''') +icon_transit_enterexit_outlined = NotStr('''''') +icon_stadium_sharp = NotStr('''''') +icon_add_moderator_sharp = NotStr(''' + + +''') +icon_bluetooth_connected_twotone = NotStr('''''') +icon_hdr_on_select_sharp = NotStr('''''') +icon_bedtime_filled = NotStr('''''') +icon_md30_fps_sharp = NotStr('''''') +icon_edit_location_outlined = NotStr('''''') +icon_favorite_filled = NotStr('''''') +icon_low_priority_filled = NotStr('''''') +icon_local_car_wash_round = NotStr('''''') +icon_sentiment_neutral_round = NotStr(''' + + + + +''') +icon_event_available_sharp = NotStr('''''') +icon_divide_twotone = NotStr(''' + + + + +''') +icon_star_outline_outlined = NotStr('''''') +icon_css_round = NotStr('''''') +icon_mark_chat_unread_twotone = NotStr(''' + + +''') +icon_md123_round = NotStr('''''') +icon_iso_outlined = NotStr('''''') +icon_library_add_outlined = NotStr('''''') +icon_source_round = NotStr('''''') +icon_swipe_left_alt_sharp = NotStr('''''') +icon_filter9_filled = NotStr('''''') +icon_blender_outlined = NotStr(''' + + +''') +icon_sports_soccer_outlined = NotStr('''''') +icon_api_twotone = NotStr('''''') +icon_mobiledata_off_filled = NotStr('''''') +icon_pin_filled = NotStr('''''') +icon_two_wheeler_twotone = NotStr('''''') +icon_nightlight_filled = NotStr('''''') +icon_deck_outlined = NotStr(''' + + +''') +icon_find_replace_filled = NotStr('''''') +icon_format_align_center_filled = NotStr('''''') +icon_signal_wifi1_bar_lock_sharp = NotStr(''' + + + +''') +icon_filter3_filled = NotStr('''''') +icon_smart_button_outlined = NotStr('''''') +icon_add_comment_round = NotStr('''''') +icon_title_filled = NotStr('''''') +icon_edit_note_filled = NotStr('''''') +icon_bluetooth_audio_outlined = NotStr('''''') +icon_crop169_sharp = NotStr('''''') +icon_escalator_warning_twotone = NotStr('''''') +icon_fastfood_twotone = NotStr(''' + + + +''') +icon_filter_vintage_filled = NotStr('''''') +icon_app_blocking_twotone = NotStr(''' + + + +''') +icon_south_america_filled = NotStr('''''') +icon_tablet_mac_outlined = NotStr('''''') +icon_hourglass_bottom_outlined = NotStr('''''') +icon_hotel_round = NotStr('''''') +icon_cloud_upload_filled = NotStr('''''') +icon_nat_round = NotStr(''' + + +''') +icon_outdoor_grill_filled = NotStr('''''') +icon_md7_k_sharp = NotStr('''''') +icon_panorama_wide_angle_select_filled = NotStr('''''') +icon_follow_the_signs_sharp = NotStr('''''') +icon_sports_esports_outlined = NotStr(''' + + + + +''') +icon_dashboard_twotone = NotStr(''' + + +''') +icon_closed_caption_off_outlined = NotStr(''' + + +''') +icon_grid_goldenratio_sharp = NotStr('''''') +icon_perm_phone_msg_round = NotStr('''''') +icon_production_quantity_limits_twotone = NotStr('''''') +icon_domain_verification_twotone = NotStr(''' + + + +''') +icon_mark_chat_read_round = NotStr('''''') +icon_open_with_sharp = NotStr('''''') +icon_speaker_round = NotStr('''''') +icon_tour_round = NotStr('''''') +icon_do_disturb_alt_filled = NotStr('''''') +icon_lens_round = NotStr('''''') +icon_real_estate_agent_outlined = NotStr('''''') +icon_wordpress_sharp = NotStr('''''') +icon_play_lesson_outlined = NotStr('''''') +icon_data_exploration_outlined = NotStr('''''') +icon_perm_camera_mic_sharp = NotStr('''''') +icon_doorbell_twotone = NotStr(''' + + + +''') +icon_currency_franc_twotone = NotStr('''''') +icon_sync_disabled_outlined = NotStr('''''') +icon_moving_filled = NotStr('''''') +icon_format_color_fill_filled = NotStr('''''') +icon_chat_filled = NotStr('''''') +icon_percentage_round = NotStr('''''') +icon_wifi1_bar_twotone = NotStr('''''') +icon_question_answer_outlined = NotStr('''''') +icon_face_retouching_off_twotone = NotStr(''' + + +''') +icon_featured_play_list_sharp = NotStr('''''') +icon_toggle_off_filled = NotStr('''''') +icon_close_fullscreen_filled = NotStr('''''') +icon_accessible_forward_round = NotStr(''' + + +''') +icon_stay_primary_landscape_round = NotStr('''''') +icon_phone_disabled_twotone = NotStr('''''') +icon_thermostat_auto_filled = NotStr('''''') +icon_settings_remote_twotone = NotStr(''' + + + + +''') +icon_panorama_outlined = NotStr('''''') +icon_swipe_right_alt_round = NotStr('''''') +icon_signal_wifi_statusbar4_bar_outlined = NotStr('''''') +icon_keyboard_hide_sharp = NotStr('''''') +icon_nat_outlined = NotStr(''' + + +''') +icon_colorize_round = NotStr('''''') +icon_music_off_filled = NotStr('''''') +icon_admin_panel_settings_round = NotStr(''' + + +''') +icon_help_filled = NotStr('''''') +icon_meeting_room_outlined = NotStr('''''') +icon_report_gmailerrorred_filled = NotStr(''' + + +''') +icon_thumb_up_outlined = NotStr('''''') +icon_live_help_sharp = NotStr('''''') +icon_no_meals_outlined = NotStr('''''') +icon_volunteer_activism_filled = NotStr('''''') +icon_wine_bar_twotone = NotStr(''' + + +''') +icon_no_food_twotone = NotStr(''' + + +''') +icon_update_filled = NotStr('''''') +icon_headset_off_round = NotStr('''''') +icon_call_missed_outgoing_filled = NotStr('''''') +icon_flight_land_sharp = NotStr('''''') +icon_system_security_update_warning_filled = NotStr(''' + + +''') +icon_border_top_sharp = NotStr('''''') +icon_flare_outlined = NotStr('''''') +icon_php_twotone = NotStr('''''') +icon_toys_round = NotStr('''''') +icon_train_round = NotStr('''''') +icon_mood_round = NotStr('''''') +icon_content_copy_filled = NotStr('''''') +icon_art_track_twotone = NotStr('''''') +icon_compress_filled = NotStr('''''') +icon_keyboard_control_key_round = NotStr('''''') +icon_folder_zip_outlined = NotStr('''''') +icon_align_horizontal_left_sharp = NotStr('''''') +icon_cruelty_free_outlined = NotStr('''''') +icon_cottage_filled = NotStr('''''') +icon_queue_music_filled = NotStr('''''') +icon_content_paste_search_outlined = NotStr(''' + + +''') +icon_shield_filled = NotStr('''''') +icon_border_horizontal_filled = NotStr('''''') +icon_call_received_twotone = NotStr('''''') +icon_whatshot_outlined = NotStr('''''') +icon_notifications_none_round = NotStr('''''') +icon_build_outlined = NotStr('''''') +icon_e_mobiledata_twotone = NotStr('''''') +icon_sms_filled = NotStr('''''') +icon_log_out_outlined = NotStr(''' + + +''') +icon_copyright_sharp = NotStr('''''') +icon_crop_original_filled = NotStr('''''') +icon_keyboard_alt_round = NotStr('''''') +icon_layers_clear_sharp = NotStr('''''') +icon_do_not_disturb_on_round = NotStr('''''') +icon_local_printshop_round = NotStr('''''') +icon_md9_k_plus_round = NotStr('''''') +icon_restaurant_sharp = NotStr('''''') +icon_stars_twotone = NotStr(''' + + +''') +icon_wb_cloudy_round = NotStr('''''') +icon_toc_round = NotStr('''''') +icon_flutter_dash_twotone = NotStr(''' + + +''') +icon_subtitles_off_round = NotStr('''''') +icon_apartment_sharp = NotStr('''''') +icon_report_gmailerrorred_sharp = NotStr(''' + + + +''') +icon_rounded_corner_filled = NotStr('''''') +icon_superscript_twotone = NotStr('''''') +icon_group_outlined = NotStr('''''') +icon_newspaper_sharp = NotStr('''''') +icon_health_and_safety_filled = NotStr('''''') +icon_schedule_send_twotone = NotStr(''' + + + +''') +icon_present_to_all_sharp = NotStr('''''') +icon_precision_manufacturing_outlined = NotStr('''''') +icon_watch_off_outlined = NotStr('''''') +icon_search_off_sharp = NotStr(''' + + +''') +icon_radio_button_unchecked_sharp = NotStr('''''') +icon_bookmark_add_filled = NotStr('''''') +icon_sim_card_sharp = NotStr('''''') +icon_clear_all_round = NotStr('''''') +icon_publish_outlined = NotStr('''''') +icon_mic_external_on_round = NotStr('''''') +icon_arrow_downward_round = NotStr('''''') +icon_description_outlined = NotStr('''''') +icon_surfing_outlined = NotStr('''''') +icon_add_shopping_cart_filled = NotStr('''''') +icon_table_view_outlined = NotStr('''''') +icon_restaurant_menu_sharp = NotStr('''''') +icon_replay10_sharp = NotStr('''''') +icon_chalet_filled = NotStr('''''') +icon_sentiment_dissatisfied_twotone = NotStr(''' + + + + +''') +icon_leak_add_round = NotStr('''''') +icon_add_link_sharp = NotStr('''''') +icon_pause_presentation_sharp = NotStr('''''') +icon_format_list_numbered_rtl_sharp = NotStr('''''') +icon_local_cafe_outlined = NotStr('''''') +icon_arrow_drop_down_circle_round = NotStr('''''') +icon_watch_later_twotone = NotStr(''' + + +''') +icon_md8_k_plus_round = NotStr(''' + + +''') +icon_view_cozy_sharp = NotStr('''''') +icon_card_giftcard_sharp = NotStr('''''') +icon_media_bluetooth_off_filled = NotStr('''''') +icon_signal_wifi3_bar_lock_sharp = NotStr(''' + + +''') +icon_diamond_round = NotStr('''''') +icon_note_outlined = NotStr('''''') +icon_local_bar_round = NotStr('''''') +icon_wash_twotone = NotStr(''' + + +''') +icon_file_download_round = NotStr('''''') +icon_sensor_door_outlined = NotStr('''''') +icon_menu_filled = NotStr('''''') +icon_flight_land_outlined = NotStr('''''') +icon_phone_android_sharp = NotStr('''''') +icon_join_inner_twotone = NotStr(''' + + +''') +icon_not_started_round = NotStr('''''') +icon_all_inbox_filled = NotStr('''''') +icon_volume_up_twotone = NotStr(''' + + +''') +icon_quiz_round = NotStr(''' + + +''') +icon_unfold_less_outlined = NotStr('''''') +icon_live_tv_sharp = NotStr('''''') +icon_directions_railway_outlined = NotStr('''''') +icon_battery_full_sharp = NotStr('''''') +icon_currency_ruble_twotone = NotStr('''''') +icon_check_box_twotone = NotStr(''' + + +''') +icon_branding_watermark_twotone = NotStr(''' + + +''') +icon_no_luggage_twotone = NotStr(''' + + +''') +icon_data_saver_off_twotone = NotStr('''''') +icon_keyboard_capslock_filled = NotStr('''''') +icon_play_disabled_outlined = NotStr('''''') +icon_bolt_round = NotStr('''''') +icon_cancel_presentation_filled = NotStr(''' + + +''') +icon_volume_up_round = NotStr('''''') +icon_warning_round = NotStr('''''') +icon_door_sliding_twotone = NotStr(''' + + + +''') +icon_screen_lock_landscape_filled = NotStr('''''') +icon_new_releases_round = NotStr('''''') +icon_power_off_outlined = NotStr('''''') +icon_airline_seat_legroom_reduced_twotone = NotStr('''''') +icon_quickreply_outlined = NotStr(''' + + +''') +icon_adjust_twotone = NotStr('''''') +icon_video_settings_twotone = NotStr(''' + + +''') +icon_arrow_drop_up_round = NotStr('''''') +icon_align_vertical_top_outlined = NotStr('''''') +icon_car_crash_twotone = NotStr(''' + + +''') +icon_flashlight_on_sharp = NotStr('''''') +icon_expand_more_twotone = NotStr('''''') +icon_bathroom_twotone = NotStr(''' + + + + + + + + + +''') +icon_real_estate_agent_round = NotStr('''''') +icon_north_west_twotone = NotStr('''''') +icon_looks_two_sharp = NotStr('''''') +icon_speaker_notes_off_outlined = NotStr('''''') +icon_swap_vertical_circle_outlined = NotStr('''''') +icon_spatial_audio_twotone = NotStr(''' + + + + +''') +icon_unsubscribe_round = NotStr('''''') +icon_branding_watermark_sharp = NotStr('''''') +icon_public_sharp = NotStr('''''') +icon_snapchat_round = NotStr('''''') +icon_md16_mp_outlined = NotStr(''' + + + +''') +icon_data_saver_on_round = NotStr('''''') +icon_join_full_sharp = NotStr(''' + + +''') +icon_mp_outlined = NotStr(''' + + +''') +icon_download_done_round = NotStr('''''') +icon_heart_broken_outlined = NotStr('''''') +icon_cloud_round = NotStr('''''') +icon_girl_outlined = NotStr('''''') +icon_camera_alt_filled = NotStr(''' + + +''') +icon_cloud_done_round = NotStr('''''') +icon_home_mini_round = NotStr('''''') +icon_hevc_outlined = NotStr('''''') +icon_legend_toggle_round = NotStr('''''') +icon_workspace_premium_sharp = NotStr('''''') +icon_align_vertical_top_twotone = NotStr('''''') +icon_announcement_sharp = NotStr('''''') +icon_cached_outlined = NotStr('''''') +icon_border_all_twotone = NotStr('''''') +icon_rocket_launch_twotone = NotStr(''' + + +''') +icon_emoji_flags_filled = NotStr('''''') +icon_balance_round = NotStr('''''') +icon_flip_to_front_filled = NotStr('''''') +icon_md10_k_round = NotStr('''''') +icon_straight_filled = NotStr('''''') +icon_touch_app_outlined = NotStr('''''') +icon_door_back_round = NotStr('''''') +icon_bubble_chart_filled = NotStr(''' + + + +''') +icon_unpublished_round = NotStr('''''') +icon_stop_screen_share_outlined = NotStr('''''') +icon_phone_callback_twotone = NotStr(''' + + +''') +icon_gradient_outlined = NotStr('''''') +icon_keyboard_arrow_down_twotone = NotStr('''''') +icon_panorama_wide_angle_twotone = NotStr(''' + + +''') +icon_crop_din_outlined = NotStr('''''') +icon_crop_rotate_twotone = NotStr('''''') +icon_church_twotone = NotStr(''' + + + +''') +icon_repeat_one_on_twotone = NotStr('''''') +icon_signal_cellular_connected_no_internet3_bar_sharp = NotStr(''' + + +''') +icon_kayaking_round = NotStr('''''') +icon_filter_list_off_round = NotStr('''''') +icon_density_medium_twotone = NotStr('''''') +icon_facebook_outlined = NotStr('''''') +icon_wb_auto_twotone = NotStr(''' + + +''') +icon_video_call_round = NotStr('''''') +icon_wash_outlined = NotStr('''''') +icon_thunderstorm_twotone = NotStr(''' + + +''') +icon_noise_aware_outlined = NotStr(''' + + +''') +icon_spoke_outlined = NotStr('''''') +icon_disc_full_filled = NotStr('''''') +icon_filter_drama_filled = NotStr('''''') +icon_no_stroller_outlined = NotStr('''''') +icon_explore_off_filled = NotStr('''''') +icon_monetization_on_round = NotStr('''''') +icon_temple_buddhist_round = NotStr(''' + + + +''') +icon_door_back_filled = NotStr('''''') +icon_do_not_disturb_on_total_silence_sharp = NotStr('''''') +icon_turn_sharp_left_round = NotStr('''''') +icon_add_business_sharp = NotStr(''' + + +''') +icon_settings_cell_sharp = NotStr('''''') +icon_brightness1_round = NotStr('''''') +icon_swap_calls_sharp = NotStr('''''') +icon_outlined_flag_twotone = NotStr('''''') +icon_man_twotone = NotStr(''' + + +''') +icon_turn_right_twotone = NotStr('''''') +icon_screen_rotation_alt_sharp = NotStr('''''') +icon_hide_source_round = NotStr('''''') +icon_bakery_dining_round = NotStr('''''') +icon_bluetooth_filled = NotStr('''''') +icon_mic_filled = NotStr('''''') +icon_remove_red_eye_sharp = NotStr('''''') +icon_network_ping_sharp = NotStr('''''') +icon_desktop_windows_round = NotStr('''''') +icon_loop_sharp = NotStr('''''') +icon_supervised_user_circle_sharp = NotStr('''''') +icon_brightness6_sharp = NotStr('''''') +icon_voicemail_filled = NotStr('''''') +icon_gite_outlined = NotStr('''''') +icon_book_outlined = NotStr('''''') +icon_perm_phone_msg_outlined = NotStr('''''') +icon_flourescent_round = NotStr('''''') +icon_smartphone_sharp = NotStr('''''') +icon_plumbing_sharp = NotStr(''' + + +''') +icon_timeline_twotone = NotStr('''''') +icon_battery2_bar_filled = NotStr('''''') +icon_euro_sharp = NotStr('''''') +icon_vertical_distribute_round = NotStr('''''') +icon_pending_sharp = NotStr('''''') +icon_battery30_outlined = NotStr(''' + + +''') +icon_battery2_bar_outlined = NotStr('''''') +icon_swipe_up_sharp = NotStr('''''') +icon_cloud_sharp = NotStr('''''') +icon_person_pin_outlined = NotStr('''''') +icon_party_mode_round = NotStr('''''') +icon_account_balance_wallet_twotone = NotStr(''' + + + +''') +icon_fire_extinguisher_twotone = NotStr('''''') +icon_hot_tub_twotone = NotStr(''' + + +''') +icon_camera_outdoor_filled = NotStr('''''') +icon_smart_button_twotone = NotStr('''''') +icon_kitchen_round = NotStr('''''') +icon_notes_round = NotStr('''''') +icon_calendar_view_week_twotone = NotStr(''' + + +''') +icon_md12_mp_round = NotStr(''' + + +''') +icon_md2_k_plus_round = NotStr('''''') +icon_music_off_twotone = NotStr(''' + + +''') +icon_brightness5_filled = NotStr('''''') +icon_today_twotone = NotStr(''' + + +''') +icon_chat_twotone = NotStr(''' + + +''') +icon_attach_money_outlined = NotStr('''''') +icon_access_alarms_round = NotStr('''''') +icon_md1_k_plus_outlined = NotStr(''' + + +''') +icon_class_twotone = NotStr(''' + + +''') +icon_recommend_twotone = NotStr(''' + + + +''') +icon_fact_check_twotone = NotStr(''' + + + +''') +icon_battery_charging30_filled = NotStr(''' + + +''') +icon_no_luggage_filled = NotStr('''''') +icon_alarm_filled = NotStr('''''') +icon_cloud_download_sharp = NotStr('''''') +icon_delete_sweep_twotone = NotStr(''' + + +''') +icon_sort_twotone = NotStr('''''') +icon_near_me_disabled_filled = NotStr('''''') +icon_add_to_queue_twotone = NotStr(''' + + +''') +icon_legend_toggle_sharp = NotStr('''''') +icon_bike_scooter_filled = NotStr(''' + + +''') +icon_power_input_outlined = NotStr('''''') +icon_explore_outlined = NotStr('''''') +icon_flip_to_back_twotone = NotStr('''''') +icon_laptop_mac_sharp = NotStr('''''') +icon_switch_video_filled = NotStr('''''') +icon_phone_locked_sharp = NotStr(''' + + +''') +icon_attach_email_filled = NotStr(''' + + +''') +icon_auto_stories_round = NotStr('''''') +icon_delete_forever_twotone = NotStr(''' + + +''') +icon_exposure_plus2_twotone = NotStr('''''') +icon_h_mobiledata_sharp = NotStr('''''') +icon_broken_image_twotone = NotStr(''' + + +''') +icon_emoji_events_filled = NotStr('''''') +icon_playlist_add_circle_filled = NotStr('''''') +icon_send_and_archive_outlined = NotStr(''' + + +''') +icon_assured_workload_round = NotStr('''''') +icon_fence_round = NotStr('''''') +icon_book_online_twotone = NotStr(''' + + +''') +icon_playlist_add_check_circle_outlined = NotStr('''''') +icon_cell_wifi_outlined = NotStr('''''') +icon_emergency_share_filled = NotStr('''''') +icon_send_round = NotStr('''''') +icon_photo_camera_front_filled = NotStr('''''') +icon_zoom_in_filled = NotStr(''' + + +''') +icon_md6_k_outlined = NotStr(''' + + +''') +icon_image_search_outlined = NotStr('''''') +icon_rocket_sharp = NotStr('''''') +icon_shutter_speed_sharp = NotStr('''''') +icon_block_round = NotStr('''''') +icon_warehouse_filled = NotStr('''''') +icon_directions_boat_twotone = NotStr(''' + + +''') +icon_comment_twotone = NotStr(''' + + +''') +icon_alt_route_twotone = NotStr('''''') +icon_local_laundry_service_twotone = NotStr(''' + + + + + +''') +icon_filter_drama_round = NotStr('''''') +icon_mode_of_travel_twotone = NotStr('''''') +icon_md4_g_mobiledata_round = NotStr('''''') +icon_foundation_outlined = NotStr('''''') +icon_shield_twotone = NotStr(''' + + +''') +icon_flip_round = NotStr('''''') +icon_settings_bluetooth_twotone = NotStr('''''') +icon_qr_code_scanner_sharp = NotStr('''''') +icon_schedule_send_outlined = NotStr(''' + + +''') +icon_connected_tv_filled = NotStr('''''') +icon_aod_round = NotStr('''''') +icon_miscellaneous_services_round = NotStr('''''') +icon_saved_search_filled = NotStr('''''') +icon_hdr_on_select_filled = NotStr('''''') +icon_wifi_tethering_error_rounded_sharp = NotStr('''''') +icon_pie_chart_twotone = NotStr(''' + + +''') +icon_arrow_back_ios_new_filled = NotStr('''''') +icon_open_in_browser_outlined = NotStr('''''') +icon_strikethrough_s_outlined = NotStr('''''') +icon_tire_repair_twotone = NotStr(''' + + +''') +icon_send_filled = NotStr('''''') +icon_airline_seat_recline_normal_sharp = NotStr('''''') +icon_toc_twotone = NotStr('''''') +icon_signal_cellular_connected_no_internet2_bar_filled = NotStr(''' + + +''') +icon_book_filled = NotStr('''''') +icon_md7_k_filled = NotStr('''''') +icon_title_outlined = NotStr('''''') +icon_ramp_right_filled = NotStr('''''') +icon_notifications_active_twotone = NotStr(''' + + +''') +icon_battery5_bar_twotone = NotStr(''' + + +''') +icon_art_track_filled = NotStr('''''') +icon_doorbell_round = NotStr('''''') +icon_insert_photo_filled = NotStr('''''') +icon_landscape_outlined = NotStr('''''') +icon_arrow_drop_up_sharp = NotStr('''''') +icon_star_half_filled = NotStr('''''') +icon_gite_twotone = NotStr(''' + + +''') +icon_on_device_training_twotone = NotStr(''' + + + + +''') +icon_video_label_filled = NotStr('''''') +icon_text_decrease_outlined = NotStr('''''') +icon_person_add_disabled_round = NotStr('''''') +icon_panorama_photosphere_sharp = NotStr('''''') +icon_grid3_x3_filled = NotStr('''''') +icon_badge_sharp = NotStr('''''') +icon_sports_handball_twotone = NotStr(''' + + +''') +icon_airplanemode_inactive_twotone = NotStr('''''') +icon_contacts_round = NotStr('''''') +icon_document_scanner_round = NotStr('''''') +icon_airline_seat_legroom_reduced_round = NotStr('''''') +icon_view_quilt_filled = NotStr('''''') +icon_shopify_twotone = NotStr('''''') +icon_headset_mic_twotone = NotStr(''' + + +''') +icon_calculate_outlined = NotStr(''' + + +''') +icon_shopping_basket_round = NotStr('''''') +icon_auto_fix_high_twotone = NotStr(''' + + +''') +icon_list_round = NotStr('''''') +icon_build_round = NotStr('''''') +icon_check_box_round = NotStr('''''') +icon_foundation_filled = NotStr('''''') +icon_calendar_view_day_filled = NotStr('''''') +icon_expand_more_filled = NotStr('''''') +icon_sos_twotone = NotStr('''''') +icon_gif_twotone = NotStr('''''') +icon_keyboard_option_key_outlined = NotStr('''''') +icon_paypal_twotone = NotStr(''' + + +''') +icon_scanner_sharp = NotStr('''''') +icon_call_missed_twotone = NotStr('''''') +icon_support_outlined = NotStr('''''') +icon_subtitles_off_filled = NotStr('''''') +icon_phone_outlined = NotStr('''''') +icon_play_for_work_twotone = NotStr('''''') +icon_sensors_round = NotStr('''''') +icon_signal_cellular1_bar_filled = NotStr(''' + + +''') +icon_file_download_twotone = NotStr(''' + + +''') +icon_group_work_round = NotStr('''''') +icon_movie_sharp = NotStr('''''') +icon_signal_wifi_connected_no_internet4_filled = NotStr('''''') +icon_shop_two_filled = NotStr('''''') +icon_mobile_screen_share_filled = NotStr('''''') +icon_airline_seat_legroom_normal_twotone = NotStr('''''') +icon_doorbell_outlined = NotStr('''''') +icon_thumb_down_alt_outlined = NotStr('''''') +icon_not_listed_location_outlined = NotStr('''''') +icon_raw_on_sharp = NotStr('''''') +icon_hive_outlined = NotStr('''''') +icon_wifi_lock_outlined = NotStr(''' + + +''') +icon_battery6_bar_outlined = NotStr('''''') +icon_file_download_off_twotone = NotStr(''' + + +''') +icon_sd_storage_filled = NotStr('''''') +icon_screen_lock_landscape_outlined = NotStr('''''') +icon_format_indent_decrease_outlined = NotStr('''''') +icon_electrical_services_sharp = NotStr(''' + + +''') +icon_wifi_password_outlined = NotStr('''''') +icon_diamond_outlined = NotStr('''''') +icon_md3_mp_round = NotStr(''' + + +''') +icon_deselect_round = NotStr('''''') +icon_factory_filled = NotStr('''''') +icon_snowshoeing_filled = NotStr('''''') +icon_local_hospital_round = NotStr('''''') +icon_monitor_filled = NotStr('''''') +icon_noise_control_off_outlined = NotStr('''''') +icon_horizontal_rule_round = NotStr('''''') +icon_wb_twilight_sharp = NotStr('''''') +icon_coffee_outlined = NotStr('''''') +icon_cached_twotone = NotStr('''''') +icon_live_tv_outlined = NotStr('''''') +icon_bungalow_round = NotStr('''''') +icon_insert_drive_file_outlined = NotStr('''''') +icon_backup_table_round = NotStr(''' + + +''') +icon_save_alt_twotone = NotStr('''''') +icon_thumb_down_alt_sharp = NotStr('''''') +icon_texture_sharp = NotStr('''''') +icon_ramp_left_twotone = NotStr('''''') +icon_contact_support_filled = NotStr('''''') +icon_sledding_twotone = NotStr('''''') +icon_md4_g_plus_mobiledata_filled = NotStr('''''') +icon_local_play_outlined = NotStr('''''') +icon_catching_pokemon_twotone = NotStr(''' + + +''') +icon_folder_off_twotone = NotStr(''' + + +''') +icon_mic_external_off_filled = NotStr('''''') +icon_hotel_class_sharp = NotStr('''''') +icon_move_down_sharp = NotStr('''''') +icon_photo_size_select_small_filled = NotStr('''''') +icon_person_pin_circle_round = NotStr('''''') +icon_add_to_home_screen_twotone = NotStr('''''') +icon_message_sharp = NotStr('''''') +icon_summarize_round = NotStr('''''') +icon_bedroom_parent_twotone = NotStr(''' + + + +''') +icon_read_more_twotone = NotStr('''''') +icon_send_twotone = NotStr(''' + + +''') +icon_drive_file_move_rtl_round = NotStr('''''') +icon_content_cut_round = NotStr('''''') +icon_textsms_twotone = NotStr(''' + + +''') +icon_construction_sharp = NotStr('''''') +icon_superscript_sharp = NotStr('''''') +icon_hourglass_empty_outlined = NotStr('''''') +icon_scanner_twotone = NotStr(''' + + +''') +icon_spatial_tracking_round = NotStr(''' + + +''') +icon_wifi_find_outlined = NotStr(''' + + +''') +icon_traffic_round = NotStr('''''') +icon_mode_comment_twotone = NotStr(''' + + +''') +icon_sms_sharp = NotStr('''''') +icon_pending_actions_filled = NotStr('''''') +icon_send_to_mobile_twotone = NotStr(''' + + +''') +icon_record_voice_over_twotone = NotStr(''' + + + +''') +icon_edit_location_alt_sharp = NotStr('''''') +icon_notifications_round = NotStr('''''') +icon_location_off_round = NotStr('''''') +icon_rtt_twotone = NotStr('''''') +icon_accessibility_sharp = NotStr('''''') +icon_md7_k_plus_round = NotStr('''''') +icon_text_decrease_twotone = NotStr('''''') +icon_table_view_round = NotStr('''''') +icon_outbox_filled = NotStr('''''') +icon_settings_remote_round = NotStr(''' + + +''') +icon_wifi1_bar_outlined = NotStr('''''') +icon_bluetooth_twotone = NotStr('''''') +icon_access_alarms_filled = NotStr('''''') +icon_subject_sharp = NotStr('''''') +icon_format_align_right_twotone = NotStr('''''') +icon_md23_mp_round = NotStr(''' + + +''') +icon_contact_phone_outlined = NotStr('''''') +icon_crop_free_twotone = NotStr('''''') +icon_bakery_dining_sharp = NotStr('''''') +icon_line_axis_outlined = NotStr('''''') +icon_social_distance_twotone = NotStr('''''') +icon_view_timeline_outlined = NotStr(''' + + +''') +icon_camera_outdoor_twotone = NotStr('''''') +icon_sort_outlined = NotStr('''''') +icon_cameraswitch_filled = NotStr(''' + + +''') +icon_stop_circle_filled = NotStr('''''') +icon_send_time_extension_outlined = NotStr(''' + + +''') +icon_tag_outlined = NotStr('''''') +icon_keyboard_round = NotStr('''''') +icon_md3_g_mobiledata_filled = NotStr('''''') +icon_brightness1_twotone = NotStr(''' + + +''') +icon_autofps_select_outlined = NotStr(''' + + +''') +icon_lock_open_outlined = NotStr('''''') +icon_gpp_good_twotone = NotStr(''' + + +''') +icon_card_travel_twotone = NotStr(''' + + +''') +icon_replay30_filled = NotStr(''' + + +''') +icon_bluetooth_sharp = NotStr('''''') +icon_attachment_round = NotStr('''''') +icon_replay30_twotone = NotStr('''''') +icon_md13_mp_filled = NotStr('''''') +icon_spatial_audio_off_outlined = NotStr(''' + + +''') +icon_emoji_transportation_round = NotStr(''' + + + +''') +icon_bluetooth_audio_twotone = NotStr('''''') +icon_person_add_alt1_filled = NotStr('''''') +icon_density_large_twotone = NotStr('''''') +icon_add_task_round = NotStr('''''') +icon_south_west_outlined = NotStr('''''') +icon_person_outline_round = NotStr('''''') +icon_inventory_filled = NotStr('''''') +icon_people_alt_filled = NotStr(''' + + + +''') +icon_strikethrough_s_filled = NotStr('''''') +icon_card_travel_sharp = NotStr('''''') +icon_download_done_outlined = NotStr('''''') +icon_change_history_round = NotStr('''''') +icon_gpp_good_filled = NotStr('''''') +icon_dvr_round = NotStr('''''') +icon_work_outline_twotone = NotStr('''''') +icon_lightbulb_twotone = NotStr(''' + + +''') +icon_keyboard_double_arrow_up_outlined = NotStr(''' + + +''') +icon_settings_system_daydream_round = NotStr('''''') +icon_file_present_outlined = NotStr('''''') +icon_request_page_sharp = NotStr('''''') +icon_mobile_off_filled = NotStr('''''') +icon_arrow_back_ios_twotone = NotStr('''''') +icon_whatsapp_round = NotStr('''''') +icon_history_toggle_off_sharp = NotStr('''''') +icon_no_stroller_twotone = NotStr(''' + + +''') +icon_saved_search_sharp = NotStr(''' + + +''') +icon_open_with_twotone = NotStr('''''') +icon_directions_car_twotone = NotStr(''' + + + + +''') +icon_corporate_fare_twotone = NotStr(''' + + +''') +icon_announcement_twotone = NotStr(''' + + +''') +icon_slow_motion_video_sharp = NotStr('''''') +icon_crop_din_filled = NotStr('''''') +icon_log_out_round = NotStr(''' + + +''') +icon_exit_to_app_outlined = NotStr('''''') +icon_table_bar_round = NotStr('''''') +icon_credit_score_sharp = NotStr('''''') +icon_draw_outlined = NotStr('''''') +icon_data_exploration_round = NotStr('''''') +icon_blur_on_outlined = NotStr('''''') +icon_mode_of_travel_outlined = NotStr('''''') +icon_lightbulb_outlined = NotStr('''''') +icon_r_mobiledata_outlined = NotStr('''''') +icon_north_sharp = NotStr('''''') +icon_history_toggle_off_outlined = NotStr('''''') +icon_sports_martial_arts_round = NotStr(''' + + +''') +icon_public_outlined = NotStr('''''') +icon_draw_sharp = NotStr('''''') +icon_toc_filled = NotStr('''''') +icon_mosque_outlined = NotStr('''''') +icon_podcasts_twotone = NotStr('''''') +icon_local_atm_filled = NotStr('''''') +icon_navigation_outlined = NotStr('''''') +icon_south_america_twotone = NotStr(''' + + +''') +icon_anchor_sharp = NotStr('''''') +icon_book_online_sharp = NotStr('''''') +icon_stay_current_portrait_round = NotStr('''''') +icon_backpack_sharp = NotStr('''''') +icon_rice_bowl_sharp = NotStr('''''') +icon_ad_units_sharp = NotStr(''' + + +''') +icon_play_disabled_filled = NotStr('''''') +icon_dock_round = NotStr('''''') +icon_paypal_sharp = NotStr(''' + + +''') +icon_wash_sharp = NotStr('''''') +icon_smart_toy_round = NotStr('''''') +icon_check_circle_outline_filled = NotStr('''''') +icon_video_file_outlined = NotStr('''''') +icon_add_card_filled = NotStr('''''') +icon_thumb_up_sharp = NotStr('''''') +icon_arrow_back_ios_new_sharp = NotStr('''''') +icon_ring_volume_filled = NotStr('''''') +icon_local_bar_sharp = NotStr('''''') +icon_castle_twotone = NotStr(''' + + + +''') +icon_sports_golf_sharp = NotStr(''' + + + + + +''') +icon_youtube_searched_for_outlined = NotStr('''''') +icon_roundabout_right_filled = NotStr('''''') +icon_query_stats_round = NotStr('''''') +icon_crop75_twotone = NotStr('''''') +icon_photo_twotone = NotStr(''' + + +''') +icon_currency_yen_twotone = NotStr('''''') +icon_hexagon_filled = NotStr('''''') +icon_arrow_downward_outlined = NotStr('''''') +icon_not_interested_twotone = NotStr('''''') +icon_my_location_twotone = NotStr(''' + + + +''') +icon_view_comfy_alt_filled = NotStr('''''') +icon_mark_unread_chat_alt_outlined = NotStr(''' + + + +''') +icon_numbers_sharp = NotStr('''''') +icon_person_remove_alt1_twotone = NotStr(''' + + + +''') +icon_code_filled = NotStr('''''') +icon_edit_calendar_outlined = NotStr('''''') +icon_invert_colors_off_sharp = NotStr('''''') +icon_switch_camera_outlined = NotStr(''' + + +''') +icon_picture_in_picture_alt_outlined = NotStr('''''') +icon_emergency_recording_sharp = NotStr('''''') +icon_face_retouching_natural_sharp = NotStr(''' + + + + +''') +icon_tune_round = NotStr('''''') +icon_clean_hands_twotone = NotStr(''' + + +''') +icon_hive_twotone = NotStr(''' + + +''') +icon_md14_mp_sharp = NotStr(''' + + +''') +icon_alarm_add_sharp = NotStr('''''') +icon_casino_outlined = NotStr(''' + + + + + + +''') +icon_sell_round = NotStr('''''') +icon_barcode_round = NotStr('''''') +icon_picture_in_picture_alt_round = NotStr('''''') +icon_browser_not_supported_round = NotStr('''''') +icon_phonelink_setup_twotone = NotStr('''''') +icon_play_disabled_sharp = NotStr('''''') +icon_bento_twotone = NotStr(''' + + +''') +icon_wb_incandescent_sharp = NotStr('''''') +icon_phone_bluetooth_speaker_round = NotStr('''''') +icon_border_all_outlined = NotStr('''''') +icon_airlines_sharp = NotStr('''''') +icon_md11_mp_sharp = NotStr(''' + + +''') +icon_signal_cellular_connected_no_internet1_bar_filled = NotStr(''' + + +''') +icon_swap_horizontal_circle_filled = NotStr('''''') +icon_fork_right_outlined = NotStr('''''') +icon_bookmark_add_round = NotStr('''''') +icon_flood_round = NotStr('''''') +icon_euro_symbol_round = NotStr('''''') +icon_signal_wifi1_bar_lock_filled = NotStr(''' + + + +''') +icon_screen_rotation_round = NotStr('''''') +icon_egg_alt_outlined = NotStr(''' + + +''') +icon_insert_drive_file_filled = NotStr('''''') +icon_handyman_sharp = NotStr(''' + + +''') +icon_fiber_manual_record_round = NotStr('''''') +icon_paypal_round = NotStr(''' + + +''') +icon_security_round = NotStr('''''') +icon_castle_sharp = NotStr('''''') +icon_wifi_tethering_error_rounded_twotone = NotStr('''''') +icon_credit_score_filled = NotStr('''''') +icon_blur_on_twotone = NotStr(''' + + + + + + + + + + + + + + + + + + + + + +''') +icon_data_thresholding_round = NotStr('''''') +icon_near_me_disabled_round = NotStr('''''') +icon_close_sharp = NotStr('''''') +icon_emoji_flags_sharp = NotStr('''''') +icon_brush_sharp = NotStr('''''') +icon_phone_round = NotStr('''''') +icon_gif_sharp = NotStr('''''') +icon_border_clear_round = NotStr('''''') +icon_panorama_photosphere_outlined = NotStr('''''') +icon_earbuds_outlined = NotStr('''''') +icon_touch_app_round = NotStr('''''') +icon_brightness7_round = NotStr('''''') +icon_image_aspect_ratio_twotone = NotStr(''' + + +''') +icon_cloud_queue_twotone = NotStr(''' + + +''') +icon_no_luggage_round = NotStr('''''') +icon_video_settings_filled = NotStr(''' + + +''') +icon_battery80_filled = NotStr(''' + + +''') +icon_invert_colors_sharp = NotStr('''''') +icon_switch_access_shortcut_sharp = NotStr('''''') +icon_crop32_twotone = NotStr('''''') +icon_filter9_plus_twotone = NotStr(''' + + + + +''') +icon_upcoming_round = NotStr('''''') +icon_texture_outlined = NotStr('''''') +icon_sports_score_outlined = NotStr('''''') +icon_grading_twotone = NotStr('''''') +icon_storefront_twotone = NotStr(''' + + +''') +icon_dangerous_filled = NotStr('''''') +icon_mode_night_twotone = NotStr(''' + + +''') +icon_ad_units_round = NotStr(''' + + +''') +icon_mobile_screen_share_outlined = NotStr('''''') +icon_save_alt_outlined = NotStr('''''') +icon_system_security_update_warning_outlined = NotStr(''' + + +''') +icon_photo_filter_twotone = NotStr('''''') +icon_roundabout_right_sharp = NotStr('''''') +icon_format_textdirection_l_to_r_outlined = NotStr('''''') +icon_stream_outlined = NotStr(''' + + + + + +''') +icon_signal_cellular0_bar_filled = NotStr('''''') +icon_sync_alt_twotone = NotStr('''''') +icon_image_aspect_ratio_round = NotStr('''''') +icon_nearby_off_round = NotStr('''''') +icon_help_center_filled = NotStr('''''') +icon_format_indent_increase_sharp = NotStr('''''') +icon_shop_two_sharp = NotStr('''''') +icon_swipe_vertical_filled = NotStr('''''') +icon_score_outlined = NotStr('''''') +icon_compare_arrows_sharp = NotStr('''''') +icon_facebook_round = NotStr('''''') +icon_shopping_basket_twotone = NotStr(''' + + +''') +icon_calendar_today_sharp = NotStr('''''') +icon_ballot_outlined = NotStr('''''') +icon_motion_photos_auto_round = NotStr('''''') +icon_event_note_outlined = NotStr('''''') +icon_md24_mp_filled = NotStr('''''') +icon_hdr_auto_filled = NotStr(''' + + +''') +icon_u_turn_left_sharp = NotStr('''''') +icon_assignment_late_sharp = NotStr('''''') +icon_blender_sharp = NotStr('''''') +icon_equals_round = NotStr('''''') +icon_battery1_bar_round = NotStr('''''') +icon_percent_sharp = NotStr('''''') +icon_nat_filled = NotStr(''' + + +''') +icon_collections_bookmark_twotone = NotStr(''' + + +''') +icon_brightness_medium_filled = NotStr('''''') +icon_local_hotel_sharp = NotStr('''''') +icon_dashboard_filled = NotStr('''''') +icon_youtube_searched_for_sharp = NotStr('''''') +icon_md9_k_round = NotStr('''''') +icon_self_improvement_sharp = NotStr(''' + + +''') +icon_insert_chart_round = NotStr('''''') +icon_battery_saver_outlined = NotStr('''''') +icon_phonelink_setup_sharp = NotStr('''''') +icon_thermostat_auto_sharp = NotStr('''''') +icon_md3_d_rotation_sharp = NotStr('''''') +icon_qr_code_round = NotStr('''''') +icon_wifi_tethering_error_rounded_round = NotStr('''''') +icon_mp_sharp = NotStr('''''') +icon_route_twotone = NotStr(''' + + + +''') +icon_plus_round = NotStr('''''') +icon_rsvp_round = NotStr('''''') +icon_person_add_twotone = NotStr(''' + + + +''') +icon_turn_right_round = NotStr('''''') +icon_rss_feed_sharp = NotStr(''' + + +''') +icon_vibration_twotone = NotStr(''' + + +''') +icon_arrow_right_twotone = NotStr('''''') +icon_co_present_twotone = NotStr(''' + + + + +''') +icon_format_paint_sharp = NotStr('''''') +icon_calendar_month_sharp = NotStr('''''') +icon_snowboarding_filled = NotStr('''''') +icon_radio_twotone = NotStr(''' + + + +''') +icon_door_sliding_filled = NotStr('''''') +icon_architecture_twotone = NotStr('''''') +icon_grid_view_filled = NotStr('''''') +icon_local_car_wash_outlined = NotStr(''' + + + +''') +icon_question_answer_filled = NotStr('''''') +icon_mark_as_unread_outlined = NotStr(''' + + +''') +icon_public_off_filled = NotStr('''''') +icon_turned_in_sharp = NotStr('''''') +icon_ramp_left_sharp = NotStr('''''') +icon_filter2_outlined = NotStr('''''') +icon_question_mark_sharp = NotStr('''''') +icon_recycling_sharp = NotStr('''''') +icon_auto_delete_twotone = NotStr(''' + + + +''') +icon_rule_twotone = NotStr('''''') +icon_mode_comment_sharp = NotStr('''''') +icon_railway_alert_twotone = NotStr(''' + + + + +''') +icon_signal_cellular_alt2_bar_round = NotStr('''''') +icon_local_post_office_round = NotStr('''''') +icon_spoke_filled = NotStr('''''') +icon_alarm_sharp = NotStr('''''') +icon_business_center_sharp = NotStr('''''') +icon_insert_comment_round = NotStr('''''') +icon_precision_manufacturing_round = NotStr('''''') +icon_remove_moderator_outlined = NotStr('''''') +icon_assignment_returned_round = NotStr('''''') +icon_access_time_filled_twotone = NotStr('''''') +icon_emoji_transportation_twotone = NotStr(''' + + + +''') +icon_hourglass_full_filled = NotStr('''''') +icon_missed_video_call_sharp = NotStr('''''') +icon_precision_manufacturing_filled = NotStr('''''') +icon_add_location_sharp = NotStr('''''') +icon_md18_mp_round = NotStr(''' + + + +''') +icon_restore_twotone = NotStr('''''') +icon_format_textdirection_l_to_r_filled = NotStr('''''') +icon_add_moderator_filled = NotStr('''''') +icon_rotate_left_outlined = NotStr('''''') +icon_wysiwyg_filled = NotStr('''''') +icon_keyboard_arrow_down_filled = NotStr('''''') +icon_garage_sharp = NotStr(''' + + + + +''') +icon_maximize_filled = NotStr('''''') +icon_airline_seat_legroom_normal_sharp = NotStr('''''') +icon_tag_faces_sharp = NotStr('''''') +icon_precision_manufacturing_sharp = NotStr('''''') +icon_battery_alert_twotone = NotStr('''''') +icon_security_update_warning_sharp = NotStr(''' + + +''') +icon_outlet_sharp = NotStr('''''') +icon_wifi_tethering_off_twotone = NotStr('''''') +icon_casino_sharp = NotStr('''''') +icon_contacts_outlined = NotStr('''''') +icon_view_column_twotone = NotStr(''' + + +''') +icon_keyboard_alt_twotone = NotStr(''' + + + +''') +icon_battery3_bar_round = NotStr('''''') +icon_hevc_twotone = NotStr('''''') +icon_rule_folder_twotone = NotStr(''' + + +''') +icon_railway_alert_round = NotStr(''' + + +''') +icon_document_scanner_filled = NotStr('''''') +icon_md4_g_plus_mobiledata_twotone = NotStr('''''') +icon_light_twotone = NotStr(''' + + +''') +icon_signal_wifi4_bar_lock_filled = NotStr(''' + + +''') +icon_color_lens_filled = NotStr('''''') +icon_swap_vert_round = NotStr('''''') +icon_calendar_month_twotone = NotStr(''' + + +''') +icon_grain_round = NotStr('''''') +icon_ad_units_twotone = NotStr(''' + + + +''') +icon_spatial_audio_round = NotStr(''' + + + +''') +icon_waves_sharp = NotStr('''''') +icon_scoreboard_sharp = NotStr('''''') +icon_pattern_outlined = NotStr('''''') +icon_north_west_filled = NotStr('''''') +icon_photo_size_select_actual_filled = NotStr('''''') +icon_rule_folder_outlined = NotStr('''''') +icon_filter8_sharp = NotStr('''''') +icon_door_front_outlined = NotStr('''''') +icon_camera_enhance_sharp = NotStr('''''') +icon_height_filled = NotStr('''''') +icon_javascript_round = NotStr('''''') +icon_bubble_chart_sharp = NotStr(''' + + + +''') +icon_how_to_vote_twotone = NotStr(''' + + + + +''') +icon_contrast_sharp = NotStr('''''') +icon_bedtime_outlined = NotStr('''''') +icon_flip_to_back_sharp = NotStr('''''') +icon_swipe_right_round = NotStr('''''') +icon_multiline_chart_filled = NotStr('''''') +icon_call_filled = NotStr('''''') +icon_south_west_twotone = NotStr('''''') +icon_add_to_photos_twotone = NotStr(''' + + +''') +icon_network_locked_outlined = NotStr('''''') +icon_md7_k_outlined = NotStr(''' + + +''') +icon_network_check_outlined = NotStr('''''') +icon_fiber_smart_record_sharp = NotStr(''' + + +''') +icon_widgets_round = NotStr('''''') +icon_local_activity_round = NotStr('''''') +icon_interests_outlined = NotStr('''''') +icon_cameraswitch_sharp = NotStr(''' + + +''') +icon_snowboarding_sharp = NotStr('''''') +icon_timer_off_twotone = NotStr(''' + + + +''') +icon_volunteer_activism_outlined = NotStr('''''') +icon_font_download_sharp = NotStr('''''') +icon_hd_sharp = NotStr('''''') +icon_holiday_village_sharp = NotStr('''''') +icon_airport_shuttle_twotone = NotStr(''' + + +''') +icon_bedroom_child_outlined = NotStr('''''') +icon_join_full_round = NotStr(''' + + +''') +icon_text_fields_sharp = NotStr('''''') +icon_rotate_right_round = NotStr('''''') +icon_local_pizza_sharp = NotStr('''''') +icon_media_bluetooth_off_sharp = NotStr('''''') +icon_workspace_premium_twotone = NotStr(''' + + +''') +icon_view_list_twotone = NotStr(''' + + +''') +icon_sim_card_twotone = NotStr(''' + + +''') +icon_hail_outlined = NotStr('''''') +icon_filter_vintage_outlined = NotStr('''''') +icon_markunread_twotone = NotStr(''' + + +''') +icon_done_outline_outlined = NotStr('''''') +icon_gesture_twotone = NotStr('''''') +icon_battery0_bar_filled = NotStr('''''') +icon_lan_sharp = NotStr('''''') +icon_tungsten_filled = NotStr('''''') +icon_snapchat_filled = NotStr('''''') +icon_folder_special_round = NotStr('''''') +icon_pool_outlined = NotStr(''' + + +''') +icon_keyboard_voice_outlined = NotStr('''''') +icon_https_round = NotStr('''''') +icon_lens_blur_round = NotStr('''''') +icon_screenshot_outlined = NotStr('''''') +icon_motion_photos_pause_round = NotStr('''''') +icon_directions_railway_filled_outlined = NotStr(''' + + +''') +icon_kitchen_outlined = NotStr('''''') +icon_perm_identity_outlined = NotStr('''''') +icon_forward_filled = NotStr('''''') +icon_flight_class_twotone = NotStr(''' + + +''') +icon_navigation_filled = NotStr('''''') +icon_cloud_upload_outlined = NotStr('''''') +icon_signal_cellular_alt_sharp = NotStr('''''') +icon_format_align_right_round = NotStr('''''') +icon_nightlight_round_sharp = NotStr('''''') +icon_local_drink_sharp = NotStr('''''') +icon_nfc_round = NotStr('''''') +icon_square_foot_outlined = NotStr('''''') +icon_keyboard_hide_filled = NotStr('''''') +icon_format_quote_sharp = NotStr('''''') +icon_call_outlined = NotStr('''''') +icon_md6_k_plus_filled = NotStr('''''') +icon_device_unknown_round = NotStr('''''') +icon_undo_round = NotStr('''''') +icon_do_not_disturb_off_filled = NotStr('''''') +icon_transform_filled = NotStr('''''') +icon_chevron_right_round = NotStr('''''') +icon_wrong_location_filled = NotStr(''' + + +''') +icon_border_bottom_outlined = NotStr('''''') +icon_chat_round = NotStr('''''') +icon_view_comfy_sharp = NotStr('''''') +icon_md3_mp_sharp = NotStr(''' + + +''') +icon_source_filled = NotStr('''''') +icon_remove_done_outlined = NotStr('''''') +icon_checklist_rtl_sharp = NotStr('''''') +icon_notes_filled = NotStr('''''') +icon_video_library_round = NotStr('''''') +icon_skateboarding_twotone = NotStr('''''') +icon_punch_clock_outlined = NotStr(''' + + + +''') +icon_no_drinks_filled = NotStr('''''') +icon_price_check_sharp = NotStr('''''') +icon_text_rotation_angleup_outlined = NotStr('''''') +icon_md12_mp_sharp = NotStr(''' + + +''') +icon_fiber_smart_record_filled = NotStr(''' + + +''') +icon_settings_power_twotone = NotStr('''''') +icon_hide_image_outlined = NotStr('''''') +icon_feed_outlined = NotStr('''''') +icon_view_week_sharp = NotStr('''''') +icon_sim_card_download_sharp = NotStr('''''') +icon_toggle_off_sharp = NotStr('''''') +icon_filter4_filled = NotStr('''''') +icon_backspace_sharp = NotStr('''''') +icon_explore_off_sharp = NotStr('''''') +icon_menu_book_round = NotStr(''' + + +''') +icon_markunread_sharp = NotStr('''''') +icon_photo_camera_sharp = NotStr(''' + + +''') +icon_check_outlined = NotStr('''''') +icon_library_add_round = NotStr('''''') +icon_camera_roll_round = NotStr('''''') +icon_control_camera_twotone = NotStr(''' + + +''') +icon_directions_bus_outlined = NotStr(''' + + + +''') +icon_subdirectory_arrow_left_filled = NotStr('''''') +icon_wc_filled = NotStr('''''') +icon_query_builder_filled = NotStr(''' + + +''') +icon_recent_actors_twotone = NotStr(''' + + + + +''') +icon_difference_outlined = NotStr('''''') +icon_single_bed_round = NotStr('''''') +icon_lock_round = NotStr('''''') +icon_join_right_sharp = NotStr(''' + + +''') +icon_camera_indoor_outlined = NotStr('''''') +icon_filter_list_off_filled = NotStr('''''') +icon_sports_outlined = NotStr(''' + + +''') +icon_flash_on_outlined = NotStr('''''') +icon_replay5_outlined = NotStr('''''') +icon_expand_less_outlined = NotStr('''''') +icon_adf_scanner_outlined = NotStr(''' + + +''') +icon_file_present_sharp = NotStr('''''') +icon_directions_bus_filled_filled = NotStr('''''') +icon_dialpad_filled = NotStr('''''') +icon_pentagon_filled = NotStr('''''') +icon_stop_circle_twotone = NotStr(''' + + +''') +icon_text_increase_twotone = NotStr('''''') +icon_satellite_alt_round = NotStr('''''') +icon_zoom_in_map_outlined = NotStr('''''') +icon_signal_wifi4_bar_lock_twotone = NotStr(''' + + +''') +icon_list_alt_twotone = NotStr(''' + + +''') +icon_fast_forward_round = NotStr('''''') +icon_brightness_auto_round = NotStr('''''') +icon_room_filled = NotStr('''''') +icon_connected_tv_round = NotStr('''''') +icon_assured_workload_twotone = NotStr(''' + + +''') +icon_weekend_sharp = NotStr('''''') +icon_local_car_wash_sharp = NotStr('''''') +icon_roofing_sharp = NotStr('''''') +icon_notifications_paused_twotone = NotStr(''' + + +''') +icon_reset_tv_outlined = NotStr('''''') +icon_food_bank_sharp = NotStr('''''') +icon_format_color_text_filled = NotStr('''''') +icon_rate_review_filled = NotStr('''''') +icon_grass_sharp = NotStr('''''') +icon_outbond_round = NotStr('''''') +icon_high_quality_filled = NotStr('''''') +icon_connected_tv_sharp = NotStr(''' + + + +''') +icon_dashboard_customize_round = NotStr('''''') +icon_network_wifi3_bar_filled = NotStr('''''') +icon_auto_awesome_motion_outlined = NotStr('''''') +icon_watch_twotone = NotStr(''' + + +''') +icon_bathtub_round = NotStr(''' + + +''') +icon_crop_twotone = NotStr('''''') +icon_domain_sharp = NotStr('''''') +icon_scale_outlined = NotStr('''''') +icon_looks3_round = NotStr('''''') +icon_sim_card_alert_round = NotStr('''''') +icon_privacy_tip_sharp = NotStr('''''') +icon_toggle_off_outlined = NotStr('''''') +icon_bento_outlined = NotStr('''''') +icon_note_alt_twotone = NotStr(''' + + + +''') +icon_tiktok_twotone = NotStr('''''') +icon_carpenter_twotone = NotStr(''' + + +''') +icon_devices_other_filled = NotStr('''''') +icon_arrow_downward_twotone = NotStr('''''') +icon_question_answer_twotone = NotStr(''' + + +''') +icon_closed_caption_off_filled = NotStr('''''') +icon_brightness_auto_sharp = NotStr('''''') +icon_dynamic_feed_filled = NotStr(''' + + +''') +icon_call_round = NotStr('''''') +icon_dock_twotone = NotStr(''' + + +''') +icon_note_alt_filled = NotStr('''''') +icon_local_hospital_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet0_bar_twotone = NotStr('''''') +icon_mouse_outlined = NotStr('''''') +icon_code_twotone = NotStr('''''') +icon_ev_station_twotone = NotStr(''' + + +''') +icon_battery80_round = NotStr(''' + + +''') +icon_interpreter_mode_outlined = NotStr('''''') +icon_feedback_twotone = NotStr(''' + + +''') +icon_collections_bookmark_outlined = NotStr('''''') +icon_pest_control_sharp = NotStr('''''') +icon_sort_by_alpha_filled = NotStr('''''') +icon_grid_on_twotone = NotStr(''' + + +''') +icon_turn_left_sharp = NotStr('''''') +icon_signal_wifi2_bar_lock_round = NotStr(''' + + +''') +icon_format_align_right_sharp = NotStr('''''') +icon_receipt_round = NotStr('''''') +icon_health_and_safety_sharp = NotStr('''''') +icon_md123_sharp = NotStr('''''') +icon_do_not_disturb_off_round = NotStr('''''') +icon_drag_handle_round = NotStr('''''') +icon_air_outlined = NotStr('''''') +icon_calendar_today_filled = NotStr('''''') +icon_church_outlined = NotStr(''' + + +''') +icon_takeout_dining_filled = NotStr('''''') +icon_chair_alt_sharp = NotStr('''''') +icon_details_twotone = NotStr(''' + + +''') +icon_wb_sunny_twotone = NotStr(''' + + +''') +icon_switch_right_filled = NotStr('''''') +icon_sensor_door_twotone = NotStr(''' + + +''') +icon_hourglass_bottom_sharp = NotStr('''''') +icon_md20_mp_outlined = NotStr(''' + + + +''') +icon_no_stroller_round = NotStr('''''') +icon_home_mini_sharp = NotStr('''''') +icon_construction_filled = NotStr('''''') +icon_mms_filled = NotStr('''''') +icon_short_text_sharp = NotStr('''''') +icon_crop_portrait_outlined = NotStr('''''') +icon_hourglass_empty_filled = NotStr('''''') +icon_insights_sharp = NotStr(''' + + +''') +icon_emoji_emotions_outlined = NotStr(''' + + + + +''') +icon_air_twotone = NotStr('''''') +icon_person_twotone = NotStr(''' + + + +''') +icon_sms_outlined = NotStr('''''') +icon_quiz_outlined = NotStr('''''') +icon_print_disabled_sharp = NotStr('''''') +icon_create_new_folder_twotone = NotStr(''' + + +''') +icon_font_download_outlined = NotStr('''''') +icon_lte_plus_mobiledata_twotone = NotStr('''''') +icon_done_outline_twotone = NotStr('''''') +icon_bolt_sharp = NotStr('''''') +icon_filter7_twotone = NotStr(''' + + +''') +icon_temple_hindu_outlined = NotStr('''''') +icon_cases_filled = NotStr('''''') +icon_tips_and_updates_filled = NotStr('''''') +icon_md18_mp_outlined = NotStr(''' + + + +''') +icon_cast_twotone = NotStr('''''') +icon_amp_stories_outlined = NotStr('''''') +icon_gps_not_fixed_filled = NotStr('''''') +icon_location_disabled_outlined = NotStr('''''') +icon_phone_android_filled = NotStr('''''') +icon_beach_access_twotone = NotStr(''' + + +''') +icon_forward_sharp = NotStr('''''') +icon_swipe_left_filled = NotStr('''''') +icon_all_inbox_round = NotStr('''''') +icon_document_scanner_twotone = NotStr(''' + + +''') +icon_smartphone_round = NotStr('''''') +icon_power_filled = NotStr('''''') +icon_plus_minus_alt_round = NotStr('''''') +icon_verified_outlined = NotStr(''' + + +''') +icon_flood_filled = NotStr('''''') +icon_price_check_round = NotStr('''''') +icon_balcony_twotone = NotStr(''' + + +''') +icon_privacy_tip_twotone = NotStr(''' + + +''') +icon_local_offer_twotone = NotStr(''' + + + +''') +icon_gpp_good_sharp = NotStr('''''') +icon_electric_rickshaw_filled = NotStr('''''') +icon_keyboard_sharp = NotStr('''''') +icon_remove_from_queue_sharp = NotStr('''''') +icon_deck_sharp = NotStr(''' + + +''') +icon_noise_control_off_sharp = NotStr('''''') +icon_hexagon_sharp = NotStr('''''') +icon_room_service_filled = NotStr('''''') +icon_camera_indoor_filled = NotStr('''''') +icon_cast_connected_filled = NotStr('''''') +icon_co2_filled = NotStr('''''') +icon_bed_sharp = NotStr('''''') +icon_my_location_filled = NotStr('''''') +icon_sort_by_alpha_twotone = NotStr('''''') +icon_biotech_sharp = NotStr(''' + + + +''') +icon_g_mobiledata_sharp = NotStr('''''') +icon_security_update_warning_outlined = NotStr(''' + + +''') +icon_satellite_alt_twotone = NotStr(''' + + +''') +icon_subscriptions_round = NotStr('''''') +icon_md17_mp_twotone = NotStr(''' + + + + + +''') +icon_privacy_tip_filled = NotStr('''''') +icon_coronavirus_sharp = NotStr('''''') +icon_maps_home_work_outlined = NotStr(''' + + +''') +icon_format_underlined_sharp = NotStr('''''') +icon_view_day_outlined = NotStr('''''') +icon_battery_charging50_twotone = NotStr(''' + + +''') +icon_upload_file_outlined = NotStr('''''') +icon_folder_open_sharp = NotStr('''''') +icon_comment_sharp = NotStr('''''') +icon_movie_filled = NotStr('''''') +icon_emoji_flags_outlined = NotStr('''''') +icon_language_outlined = NotStr('''''') +icon_currency_exchange_round = NotStr('''''') +icon_sentiment_satisfied_alt_filled = NotStr(''' + + + + + +''') +icon_picture_as_pdf_outlined = NotStr('''''') +icon_star_rate_sharp = NotStr('''''') +icon_headphones_filled = NotStr('''''') +icon_abc_filled = NotStr('''''') +icon_fact_check_filled = NotStr('''''') +icon_sentiment_dissatisfied_round = NotStr(''' + + + +''') +icon_forest_round = NotStr(''' + + +''') +icon_photo_size_select_actual_outlined = NotStr('''''') +icon_cottage_round = NotStr('''''') +icon_videogame_asset_round = NotStr('''''') +icon_md4_g_plus_mobiledata_sharp = NotStr('''''') +icon_loop_outlined = NotStr('''''') +icon_app_shortcut_filled = NotStr(''' + + +''') +icon_bluetooth_outlined = NotStr('''''') +icon_flash_on_sharp = NotStr('''''') +icon_view_list_outlined = NotStr('''''') +icon_request_page_filled = NotStr('''''') +icon_airline_seat_flat_twotone = NotStr(''' + + +''') +icon_enhanced_encryption_filled = NotStr('''''') +icon_cast_connected_outlined = NotStr('''''') +icon_co_present_outlined = NotStr(''' + + +''') +icon_event_repeat_outlined = NotStr('''''') +icon_ev_station_round = NotStr('''''') +icon_person_remove_outlined = NotStr('''''') +icon_lock_clock_filled = NotStr('''''') +icon_arrow_circle_up_outlined = NotStr('''''') +icon_accessible_forward_twotone = NotStr(''' + + +''') +icon_bathtub_sharp = NotStr(''' + + +''') +icon_move_down_filled = NotStr('''''') +icon_domain_disabled_twotone = NotStr(''' + + +''') +icon_calendar_view_month_sharp = NotStr('''''') +icon_exposure_neg2_outlined = NotStr('''''') +icon_cloud_done_outlined = NotStr('''''') +icon_assignment_outlined = NotStr('''''') +icon_verified_sharp = NotStr('''''') +icon_align_horizontal_left_filled = NotStr('''''') +icon_icecream_round = NotStr('''''') +icon_system_security_update_outlined = NotStr('''''') +icon_keyboard_double_arrow_left_filled = NotStr(''' + + +''') +icon_playlist_add_circle_round = NotStr('''''') +icon_leak_remove_filled = NotStr('''''') +icon_mail_outline_twotone = NotStr('''''') +icon_terrain_round = NotStr('''''') +icon_money_sharp = NotStr('''''') +icon_child_care_twotone = NotStr(''' + + + + +''') +icon_attach_email_sharp = NotStr(''' + + +''') +icon_tips_and_updates_sharp = NotStr('''''') +icon_forward30_filled = NotStr(''' + + +''') +icon_content_cut_filled = NotStr('''''') +icon_chair_alt_round = NotStr('''''') +icon_mode_night_outlined = NotStr('''''') +icon_photo_camera_front_outlined = NotStr(''' + + + +''') +icon_video_camera_back_round = NotStr('''''') +icon_settings_sharp = NotStr('''''') +icon_density_medium_round = NotStr('''''') +icon_photo_size_select_large_twotone = NotStr('''''') +icon_vignette_filled = NotStr('''''') +icon_visibility_sharp = NotStr('''''') +icon_watch_off_twotone = NotStr(''' + + +''') +icon_crop169_filled = NotStr('''''') +icon_switch_left_round = NotStr('''''') +icon_linked_camera_sharp = NotStr(''' + + +''') +icon_settings_input_composite_filled = NotStr('''''') +icon_brightness2_filled = NotStr('''''') +icon_add_business_outlined = NotStr(''' + + +''') +icon_grass_twotone = NotStr('''''') +icon_border_style_outlined = NotStr('''''') +icon_sports_rugby_sharp = NotStr('''''') +icon_people_alt_round = NotStr(''' + + + +''') +icon_branding_watermark_round = NotStr('''''') +icon_nights_stay_round = NotStr(''' + + +''') +icon_school_outlined = NotStr('''''') +icon_nightlight_round_outlined = NotStr('''''') +icon_grade_sharp = NotStr('''''') +icon_sd_sharp = NotStr('''''') +icon_person_outlined = NotStr('''''') +icon_laptop_round = NotStr('''''') +icon_md30_fps_filled = NotStr('''''') +icon_bookmark_remove_sharp = NotStr('''''') +icon_flaky_outlined = NotStr('''''') +icon_device_unknown_sharp = NotStr('''''') +icon_payment_filled = NotStr('''''') +icon_phonelink_lock_filled = NotStr('''''') +icon_personal_video_twotone = NotStr(''' + + +''') +icon_local_offer_round = NotStr('''''') +icon_safety_divider_round = NotStr('''''') +icon_format_indent_increase_round = NotStr('''''') +icon_fence_filled = NotStr('''''') +icon_star_border_purple500_twotone = NotStr('''''') +icon_track_changes_sharp = NotStr('''''') +icon_settings_input_antenna_twotone = NotStr('''''') +icon_bed_outlined = NotStr('''''') +icon_business_outlined = NotStr('''''') +icon_maps_ugc_filled = NotStr('''''') +icon_usb_sharp = NotStr('''''') +icon_cancel_schedule_send_twotone = NotStr(''' + + + +''') +icon_meeting_room_round = NotStr('''''') +icon_style_round = NotStr('''''') +icon_fiber_manual_record_outlined = NotStr('''''') +icon_movie_creation_filled = NotStr('''''') +icon_offline_pin_outlined = NotStr('''''') +icon_star_half_twotone = NotStr('''''') +icon_strikethrough_s_twotone = NotStr('''''') +icon_backup_round = NotStr('''''') +icon_minus_sharp = NotStr('''''') +icon_md9_k_plus_sharp = NotStr('''''') +icon_sort_round = NotStr('''''') +icon_align_vertical_center_outlined = NotStr('''''') +icon_details_round = NotStr('''''') +icon_loop_twotone = NotStr('''''') +icon_network_locked_twotone = NotStr('''''') +icon_unpublished_filled = NotStr('''''') +icon_bug_report_sharp = NotStr('''''') +icon_swipe_round = NotStr(''' + + +''') +icon_hub_filled = NotStr('''''') +icon_rounded_corner_outlined = NotStr('''''') +icon_pause_sharp = NotStr('''''') +icon_turn_left_twotone = NotStr('''''') +icon_mode_night_filled = NotStr('''''') +icon_analytics_sharp = NotStr('''''') +icon_mobile_off_round = NotStr('''''') +icon_delete_outlined = NotStr('''''') +icon_perm_media_round = NotStr(''' + + +''') +icon_do_disturb_off_sharp = NotStr('''''') +icon_store_mall_directory_sharp = NotStr('''''') +icon_insert_chart_filled = NotStr('''''') +icon_sports_score_sharp = NotStr('''''') +icon_vertical_align_bottom_twotone = NotStr('''''') +icon_private_connectivity_round = NotStr('''''') +icon_play_circle_filled_white_round = NotStr('''''') +icon_bedtime_off_round = NotStr('''''') +icon_explore_filled = NotStr('''''') +icon_pattern_sharp = NotStr('''''') +icon_egg_sharp = NotStr('''''') +icon_man_outlined = NotStr(''' + + +''') +icon_movie_creation_twotone = NotStr(''' + + +''') +icon_shopify_outlined = NotStr('''''') +icon_emoji_symbols_sharp = NotStr(''' + + + + +''') +icon_video_library_twotone = NotStr(''' + + +''') +icon_music_off_outlined = NotStr('''''') +icon_cleaning_services_round = NotStr('''''') +icon_star_outline_sharp = NotStr('''''') +icon_group_work_sharp = NotStr('''''') +icon_cleaning_services_sharp = NotStr('''''') +icon_closed_caption_disabled_outlined = NotStr('''''') +icon_filter_none_sharp = NotStr('''''') +icon_settings_brightness_filled = NotStr('''''') +icon_keyboard_command_key_sharp = NotStr('''''') +icon_battery5_bar_filled = NotStr('''''') +icon_lte_mobiledata_sharp = NotStr('''''') +icon_compare_arrows_outlined = NotStr('''''') +icon_map_filled = NotStr('''''') +icon_local_atm_outlined = NotStr('''''') +icon_assignment_late_round = NotStr('''''') +icon_signal_wifi_off_filled = NotStr('''''') +icon_space_dashboard_round = NotStr('''''') +icon_compare_twotone = NotStr(''' + + +''') +icon_wine_bar_filled = NotStr('''''') +icon_piano_off_round = NotStr('''''') +icon_shop_two_outlined = NotStr('''''') +icon_directions_car_sharp = NotStr('''''') +icon_looks4_twotone = NotStr(''' + + +''') +icon_md4_k_plus_filled = NotStr('''''') +icon_local_hotel_round = NotStr('''''') +icon_star_border_sharp = NotStr('''''') +icon_account_tree_round = NotStr('''''') +icon_lock_open_sharp = NotStr('''''') +icon_museum_filled = NotStr('''''') +icon_rsvp_twotone = NotStr('''''') +icon_other_houses_sharp = NotStr('''''') +icon_keyboard_command_key_twotone = NotStr('''''') +icon_auto_awesome_outlined = NotStr('''''') +icon_phonelink_erase_sharp = NotStr('''''') +icon_house_siding_outlined = NotStr('''''') +icon_flash_off_filled = NotStr('''''') +icon_arrow_back_ios_new_round = NotStr('''''') +icon_dvr_sharp = NotStr('''''') +icon_window_outlined = NotStr('''''') +icon_battery_unknown_sharp = NotStr('''''') +icon_add_box_round = NotStr('''''') +icon_dialpad_sharp = NotStr('''''') +icon_md4_g_plus_mobiledata_round = NotStr('''''') +icon_table_rows_sharp = NotStr('''''') +icon_swap_calls_filled = NotStr('''''') +icon_museum_twotone = NotStr(''' + + + +''') +icon_all_inclusive_round = NotStr('''''') +icon_visibility_outlined = NotStr('''''') +icon_groups_filled = NotStr('''''') +icon_drive_eta_sharp = NotStr('''''') +icon_add_business_round = NotStr(''' + + +''') +icon_apps_outage_filled = NotStr('''''') +icon_keyboard_double_arrow_down_filled = NotStr(''' + + +''') +icon_stacked_line_chart_filled = NotStr('''''') +icon_push_pin_sharp = NotStr('''''') +icon_delete_outline_twotone = NotStr('''''') +icon_notifications_active_sharp = NotStr('''''') +icon_plus_minus_sharp = NotStr('''''') +icon_cleaning_services_outlined = NotStr('''''') +icon_flashlight_on_round = NotStr('''''') +icon_ramp_left_round = NotStr('''''') +icon_circle_outlined = NotStr('''''') +icon_log_in_twotone = NotStr(''' + + +''') +icon_local_activity_filled = NotStr('''''') +icon_unpublished_twotone = NotStr(''' + + +''') +icon_adb_outlined = NotStr('''''') +icon_money_off_csred_filled = NotStr('''''') +icon_panorama_fish_eye_sharp = NotStr('''''') +icon_router_filled = NotStr('''''') +icon_camera_enhance_filled = NotStr(''' + + +''') +icon_settings_input_component_sharp = NotStr('''''') +icon_settings_cell_outlined = NotStr('''''') +icon_hdr_weak_outlined = NotStr('''''') +icon_kayaking_twotone = NotStr('''''') +icon_settings_phone_outlined = NotStr('''''') +icon_sick_round = NotStr('''''') +icon_person_search_filled = NotStr(''' + + +''') +icon_analytics_filled = NotStr('''''') +icon_heart_broken_filled = NotStr('''''') +icon_local_taxi_sharp = NotStr('''''') +icon_timer3_filled = NotStr('''''') +icon_pin_off_round = NotStr(''' + + +''') +icon_satellite_alt_sharp = NotStr('''''') +icon_featured_video_filled = NotStr('''''') +icon_follow_the_signs_round = NotStr('''''') +icon_bubble_chart_outlined = NotStr('''''') +icon_content_paste_off_filled = NotStr('''''') +icon_turn_sharp_right_outlined = NotStr('''''') +icon_view_column_round = NotStr('''''') +icon_hdr_on_filled = NotStr('''''') +icon_home_repair_service_round = NotStr('''''') +icon_tv_off_twotone = NotStr(''' + + +''') +icon_drive_file_move_sharp = NotStr('''''') +icon_multiple_stop_outlined = NotStr('''''') +icon_quora_outlined = NotStr('''''') +icon_vaccines_sharp = NotStr('''''') +icon_color_lens_twotone = NotStr(''' + + + + + + +''') +icon_warehouse_twotone = NotStr('''''') +icon_cottage_twotone = NotStr(''' + + +''') +icon_view_agenda_filled = NotStr('''''') +icon_settings_backup_restore_outlined = NotStr('''''') +icon_north_east_twotone = NotStr('''''') +icon_usb_off_round = NotStr('''''') +icon_free_cancellation_outlined = NotStr('''''') +icon_usb_off_filled = NotStr('''''') +icon_fiber_dvr_round = NotStr('''''') +icon_battery90_filled = NotStr(''' + + +''') +icon_play_disabled_round = NotStr('''''') +icon_important_devices_sharp = NotStr('''''') +icon_discord_twotone = NotStr('''''') +icon_nights_stay_outlined = NotStr(''' + + +''') +icon_personal_injury_outlined = NotStr('''''') +icon_format_list_numbered_outlined = NotStr('''''') +icon_local_cafe_twotone = NotStr(''' + + +''') +icon_remove_circle_outline_outlined = NotStr('''''') +icon_switch_right_round = NotStr('''''') +icon_arrow_downward_filled = NotStr('''''') +icon_wifi_tethering_error_round = NotStr('''''') +icon_lightbulb_circle_round = NotStr('''''') +icon_md13_mp_twotone = NotStr(''' + + + + + + + +''') +icon_launch_outlined = NotStr('''''') +icon_done_all_twotone = NotStr('''''') +icon_mobiledata_off_sharp = NotStr('''''') +icon_add_alert_round = NotStr('''''') +icon_thumb_down_filled = NotStr('''''') +icon_network_wifi_twotone = NotStr('''''') +icon_trending_up_twotone = NotStr('''''') +icon_settings_bluetooth_outlined = NotStr('''''') +icon_panorama_round = NotStr('''''') +icon_filter9_plus_outlined = NotStr('''''') +icon_settings_remote_sharp = NotStr('''''') +icon_emergency_share_round = NotStr('''''') +icon_remove_done_sharp = NotStr('''''') +icon_wifi_password_round = NotStr('''''') +icon_pinch_filled = NotStr('''''') +icon_vape_free_outlined = NotStr('''''') +icon_hub_twotone = NotStr(''' + + +''') +icon_plus_one_outlined = NotStr('''''') +icon_keyboard_control_key_outlined = NotStr('''''') +icon_ads_click_round = NotStr('''''') +icon_g_mobiledata_filled = NotStr('''''') +icon_emoji_symbols_outlined = NotStr(''' + + + + +''') +icon_wb_shade_round = NotStr('''''') +icon_wifi_lock_twotone = NotStr(''' + + +''') +icon_crop_original_round = NotStr('''''') +icon_shower_sharp = NotStr(''' + + + + + + + +''') +icon_social_distance_round = NotStr('''''') +icon_graphic_eq_outlined = NotStr('''''') +icon_sync_problem_sharp = NotStr('''''') +icon_more_time_filled = NotStr(''' + + + +''') +icon_md20_mp_sharp = NotStr(''' + + + +''') +icon_format_shapes_filled = NotStr('''''') +icon_playlist_remove_outlined = NotStr('''''') +icon_do_disturb_off_round = NotStr('''''') +icon_photo_library_twotone = NotStr(''' + + +''') +icon_person_off_sharp = NotStr('''''') +icon_build_filled = NotStr('''''') +icon_bookmark_twotone = NotStr(''' + + +''') +icon_edit_note_twotone = NotStr('''''') +icon_device_hub_sharp = NotStr('''''') +icon_do_not_step_filled = NotStr('''''') +icon_domain_round = NotStr('''''') +icon_settings_input_hdmi_sharp = NotStr('''''') +icon_phone_callback_sharp = NotStr('''''') +icon_psychology_round = NotStr(''' + + +''') +icon_rotate90_degrees_cw_sharp = NotStr(''' + + +''') +icon_stairs_round = NotStr('''''') +icon_phonelink_off_sharp = NotStr('''''') +icon_directions_car_filled = NotStr('''''') +icon_grid3_x3_round = NotStr('''''') +icon_settings_overscan_filled = NotStr('''''') +icon_push_pin_twotone = NotStr(''' + + +''') +icon_movie_creation_sharp = NotStr('''''') +icon_sentiment_very_satisfied_twotone = NotStr(''' + + +''') +icon_my_location_sharp = NotStr('''''') +icon_looks_filled = NotStr('''''') +icon_wifi_calling_round = NotStr(''' + + +''') +icon_electric_bike_filled = NotStr('''''') +icon_panorama_photosphere_select_filled = NotStr('''''') +icon_forward30_outlined = NotStr('''''') +icon_remove_round = NotStr('''''') +icon_filter7_sharp = NotStr('''''') +icon_note_add_outlined = NotStr('''''') +icon_military_tech_round = NotStr('''''') +icon_battery2_bar_twotone = NotStr(''' + + +''') +icon_nights_stay_twotone = NotStr(''' + + + +''') +icon_mode_standby_round = NotStr('''''') +icon_import_contacts_twotone = NotStr(''' + + +''') +icon_video_stable_outlined = NotStr('''''') +icon_outbond_filled = NotStr('''''') +icon_border_all_sharp = NotStr('''''') +icon_signal_cellular_null_filled = NotStr('''''') +icon_assignment_round = NotStr('''''') +icon_not_started_sharp = NotStr('''''') +icon_healing_outlined = NotStr('''''') +icon_snooze_round = NotStr('''''') +icon_hevc_round = NotStr('''''') +icon_crop54_sharp = NotStr('''''') +icon_stay_current_portrait_sharp = NotStr('''''') +icon_directions_bus_filled_round = NotStr('''''') +icon_phonelink_lock_twotone = NotStr('''''') +icon_battery_std_filled = NotStr('''''') +icon_greater_than_equal_filled = NotStr(''' + + +''') +icon_bluetooth_searching_filled = NotStr('''''') +icon_outbound_twotone = NotStr(''' + + +''') +icon_navigate_next_outlined = NotStr('''''') +icon_rotate_left_round = NotStr('''''') +icon_battery80_sharp = NotStr(''' + + +''') +icon_generating_tokens_sharp = NotStr('''''') +icon_ballot_twotone = NotStr(''' + + +''') +icon_manage_history_outlined = NotStr('''''') +icon_photo_library_round = NotStr('''''') +icon_flip_camera_ios_filled = NotStr('''''') +icon_grain_filled = NotStr('''''') +icon_car_repair_filled = NotStr('''''') +icon_rocket_launch_outlined = NotStr('''''') +icon_report_gmailerrorred_twotone = NotStr(''' + + + +''') +icon_bookmark_remove_outlined = NotStr('''''') +icon_md7_k_plus_filled = NotStr('''''') +icon_exposure_neg1_sharp = NotStr('''''') +icon_meeting_room_twotone = NotStr(''' + + +''') +icon_hls_twotone = NotStr('''''') +icon_sip_twotone = NotStr(''' + + + + + +''') +icon_note_alt_sharp = NotStr('''''') +icon_approval_twotone = NotStr(''' + + +''') +icon_today_sharp = NotStr('''''') +icon_watch_later_sharp = NotStr('''''') +icon_analytics_twotone = NotStr(''' + + + +''') +icon_voicemail_twotone = NotStr('''''') +icon_back_hand_filled = NotStr('''''') +icon_article_outlined = NotStr(''' + + +''') +icon_tag_faces_round = NotStr('''''') +icon_https_outlined = NotStr('''''') +icon_airport_shuttle_filled = NotStr('''''') +icon_h_plus_mobiledata_twotone = NotStr('''''') +icon_visibility_twotone = NotStr(''' + + +''') +icon_nightlife_outlined = NotStr('''''') +icon_html_filled = NotStr('''''') +icon_perm_media_sharp = NotStr('''''') +icon_new_label_sharp = NotStr('''''') +icon_md2_k_plus_twotone = NotStr(''' + + + +''') +icon_fiber_new_sharp = NotStr('''''') +icon_hdr_auto_outlined = NotStr('''''') +icon_bloodtype_twotone = NotStr(''' + + + +''') +icon_exposure_zero_outlined = NotStr('''''') +icon_child_friendly_sharp = NotStr('''''') +icon_signal_wifi3_bar_sharp = NotStr(''' + + +''') +icon_border_clear_outlined = NotStr('''''') +icon_south_america_round = NotStr('''''') +icon_md14_mp_round = NotStr(''' + + +''') +icon_workspaces_round = NotStr('''''') +icon_video_camera_back_filled = NotStr('''''') +icon_handyman_round = NotStr(''' + + +''') +icon_drive_file_move_filled = NotStr('''''') +icon_bolt_filled = NotStr('''''') +icon_policy_outlined = NotStr('''''') +icon_beach_access_sharp = NotStr('''''') +icon_rocket_round = NotStr('''''') +icon_md3_mp_twotone = NotStr(''' + + + + + +''') +icon_icecream_filled = NotStr('''''') +icon_tag_sharp = NotStr('''''') +icon_mic_external_off_twotone = NotStr(''' + + +''') +icon_star_purple500_filled = NotStr('''''') +icon_sip_round = NotStr(''' + + +''') +icon_attribution_round = NotStr(''' + + +''') +icon_gpp_bad_outlined = NotStr('''''') +icon_signal_cellular_nodata_sharp = NotStr('''''') +icon_atm_sharp = NotStr('''''') +icon_data_saver_on_twotone = NotStr('''''') +icon_pets_sharp = NotStr(''' + + + + + +''') +icon_php_sharp = NotStr('''''') +icon_no_drinks_outlined = NotStr('''''') +icon_disabled_by_default_outlined = NotStr('''''') +icon_sticky_note2_outlined = NotStr('''''') +icon_report_problem_twotone = NotStr(''' + + +''') +icon_sanitizer_twotone = NotStr(''' + + +''') +icon_liquor_outlined = NotStr('''''') +icon_settings_input_component_filled = NotStr('''''') +icon_transit_enterexit_twotone = NotStr('''''') +icon_clean_hands_filled = NotStr('''''') +icon_rtt_round = NotStr('''''') +icon_looks5_twotone = NotStr(''' + + +''') +icon_switch_camera_twotone = NotStr(''' + + +''') +icon_auto_graph_outlined = NotStr('''''') +icon_local_bar_outlined = NotStr('''''') +icon_arrow_upward_filled = NotStr('''''') +icon_wallpaper_round = NotStr('''''') +icon_less_than_round = NotStr('''''') +icon_not_interested_round = NotStr('''''') +icon_gradient_sharp = NotStr('''''') +icon_volume_mute_twotone = NotStr(''' + + +''') +icon_subway_outlined = NotStr('''''') +icon_screenshot_twotone = NotStr(''' + + +''') +icon_king_bed_filled = NotStr('''''') +icon_dialer_sip_filled = NotStr('''''') +icon_smart_toy_filled = NotStr('''''') +icon_fiber_dvr_sharp = NotStr('''''') +icon_upload_twotone = NotStr(''' + + +''') +icon_filter6_outlined = NotStr('''''') +icon_snippet_folder_twotone = NotStr(''' + + +''') +icon_phone_iphone_twotone = NotStr(''' + + +''') +icon_edgesensor_high_sharp = NotStr('''''') +icon_pause_outlined = NotStr('''''') +icon_check_sharp = NotStr('''''') +icon_topic_outlined = NotStr('''''') +icon_blur_circular_sharp = NotStr('''''') +icon_join_right_filled = NotStr(''' + + +''') +icon_history_edu_filled = NotStr('''''') +icon_shop_round = NotStr('''''') +icon_local_phone_twotone = NotStr(''' + + +''') +icon_all_out_sharp = NotStr('''''') +icon_rotate_left_filled = NotStr('''''') +icon_blur_linear_filled = NotStr('''''') +icon_inventory2_twotone = NotStr(''' + + + +''') +icon_start_sharp = NotStr('''''') +icon_lunch_dining_filled = NotStr('''''') +icon_broken_image_filled = NotStr('''''') +icon_auto_delete_sharp = NotStr(''' + + +''') +icon_file_download_done_sharp = NotStr('''''') +icon_navigate_next_filled = NotStr('''''') +icon_turn_slight_left_filled = NotStr('''''') +icon_east_round = NotStr('''''') +icon_md9_mp_round = NotStr(''' + + + +''') +icon_system_security_update_twotone = NotStr(''' + + +''') +icon_local_see_outlined = NotStr('''''') +icon_check_filled = NotStr('''''') +icon_switch_account_filled = NotStr('''''') +icon_female_filled = NotStr('''''') +icon_file_download_off_filled = NotStr('''''') +icon_border_right_sharp = NotStr('''''') +icon_engineering_sharp = NotStr('''''') +icon_south_west_sharp = NotStr('''''') +icon_power_input_sharp = NotStr('''''') +icon_functions_sharp = NotStr('''''') +icon_open_in_full_round = NotStr('''''') +icon_scatter_plot_round = NotStr(''' + + + +''') +icon_other_houses_filled = NotStr('''''') +icon_picture_in_picture_outlined = NotStr('''''') +icon_filter_alt_twotone = NotStr(''' + + +''') +icon_biotech_round = NotStr(''' + + + +''') +icon_input_twotone = NotStr('''''') +icon_style_filled = NotStr('''''') +icon_bookmark_added_sharp = NotStr('''''') +icon_multiline_chart_round = NotStr('''''') +icon_smart_button_filled = NotStr('''''') +icon_battery4_bar_sharp = NotStr('''''') +icon_md14_mp_filled = NotStr('''''') +icon_local_pizza_round = NotStr('''''') +icon_lens_blur_filled = NotStr('''''') +icon_layers_outlined = NotStr('''''') +icon_loupe_outlined = NotStr('''''') +icon_add_alert_filled = NotStr('''''') +icon_kebab_dining_twotone = NotStr(''' + + +''') +icon_keyboard_arrow_left_outlined = NotStr('''''') +icon_sports_football_twotone = NotStr(''' + + + +''') +icon_sports_hockey_filled = NotStr('''''') +icon_tour_twotone = NotStr(''' + + +''') +icon_star_outlined = NotStr('''''') +icon_arrow_right_alt_twotone = NotStr('''''') +icon_exposure_plus1_filled = NotStr('''''') +icon_schema_twotone = NotStr(''' + + +''') +icon_high_quality_sharp = NotStr('''''') +icon_settings_overscan_round = NotStr('''''') +icon_motion_photos_off_twotone = NotStr('''''') +icon_swipe_filled = NotStr(''' + + +''') +icon_edit_twotone = NotStr(''' + + +''') +icon_security_update_warning_round = NotStr(''' + + + +''') +icon_ondemand_video_filled = NotStr('''''') +icon_signal_cellular_off_sharp = NotStr('''''') +icon_https_twotone = NotStr(''' + + +''') +icon_mms_sharp = NotStr('''''') +icon_log_out_filled = NotStr(''' + + +''') +icon_home_mini_twotone = NotStr(''' + + +''') +icon_light_round = NotStr('''''') +icon_emoji_emotions_sharp = NotStr('''''') +icon_fastfood_sharp = NotStr('''''') +icon_directions_transit_filled_filled = NotStr('''''') +icon_data_saver_on_outlined = NotStr('''''') +icon_insert_drive_file_round = NotStr('''''') +icon_output_filled = NotStr(''' + + +''') +icon_privacy_tip_round = NotStr('''''') +icon_notifications_off_round = NotStr('''''') +icon_airplane_ticket_sharp = NotStr('''''') +icon_electric_car_round = NotStr('''''') +icon_museum_outlined = NotStr(''' + + +''') +icon_md6_k_sharp = NotStr('''''') +icon_sports_cricket_round = NotStr(''' + + +''') +icon_sign_language_twotone = NotStr(''' + + +''') +icon_eject_outlined = NotStr('''''') +icon_battery50_sharp = NotStr(''' + + +''') +icon_free_breakfast_sharp = NotStr('''''') +icon_battery20_filled = NotStr(''' + + +''') +icon_apple_outlined = NotStr('''''') +icon_browse_gallery_twotone = NotStr(''' + + + +''') +icon_hdr_on_sharp = NotStr('''''') +icon_local_laundry_service_round = NotStr('''''') +icon_videocam_off_outlined = NotStr('''''') +icon_alternate_email_sharp = NotStr('''''') +icon_computer_outlined = NotStr('''''') +icon_highlight_alt_twotone = NotStr('''''') +icon_blur_off_sharp = NotStr(''' + + + + + + + + + + + + + +''') +icon_currency_rupee_twotone = NotStr('''''') +icon_flash_on_filled = NotStr('''''') +icon_home_work_twotone = NotStr(''' + + + + +''') +icon_crisis_alert_outlined = NotStr('''''') +icon_filter9_sharp = NotStr('''''') +icon_near_me_twotone = NotStr(''' + + +''') +icon_report_gmailerrorred_round = NotStr(''' + + + +''') +icon_audiotrack_filled = NotStr('''''') +icon_liquor_filled = NotStr('''''') +icon_do_not_disturb_twotone = NotStr('''''') +icon_storage_sharp = NotStr('''''') +icon_camera_front_sharp = NotStr('''''') +icon_format_color_fill_round = NotStr('''''') +icon_laptop_chromebook_sharp = NotStr('''''') +icon_cloud_done_filled = NotStr('''''') +icon_print_filled = NotStr('''''') +icon_network_check_round = NotStr('''''') +icon_gesture_sharp = NotStr('''''') +icon_md10_k_twotone = NotStr(''' + + + + +''') +icon_directions_bike_twotone = NotStr('''''') +icon_subdirectory_arrow_right_twotone = NotStr('''''') +icon_cell_tower_filled = NotStr(''' + + +''') +icon_view_compact_round = NotStr('''''') +icon_repeat_one_twotone = NotStr('''''') +icon_grading_outlined = NotStr('''''') +icon_md10_mp_sharp = NotStr('''''') +icon_set_meal_twotone = NotStr(''' + + +''') +icon_hdr_strong_twotone = NotStr(''' + + +''') +icon_chevron_left_twotone = NotStr('''''') +icon_dry_cleaning_filled = NotStr('''''') +icon_checklist_rtl_round = NotStr('''''') +icon_grid_off_twotone = NotStr(''' + + +''') +icon_no_sim_sharp = NotStr('''''') +icon_class_sharp = NotStr('''''') +icon_pregnant_woman_outlined = NotStr('''''') +icon_circle_sharp = NotStr('''''') +icon_mic_external_on_twotone = NotStr(''' + + + +''') +icon_select_all_filled = NotStr('''''') +icon_share_location_outlined = NotStr(''' + + +''') +icon_fitbit_twotone = NotStr('''''') +icon_egg_alt_filled = NotStr('''''') +icon_arrow_circle_up_twotone = NotStr(''' + + +''') +icon_sports_volleyball_twotone = NotStr(''' + + +''') +icon_chevron_left_filled = NotStr('''''') +icon_format_size_filled = NotStr('''''') +icon_ac_unit_filled = NotStr('''''') +icon_web_filled = NotStr('''''') +icon_gpp_maybe_outlined = NotStr(''' + + +''') +icon_help_center_outlined = NotStr('''''') +icon_remove_circle_filled = NotStr('''''') +icon_coffee_maker_outlined = NotStr(''' + + +''') +icon_horizontal_distribute_outlined = NotStr('''''') +icon_attractions_sharp = NotStr('''''') +icon_brightness4_outlined = NotStr('''''') +icon_emoji_transportation_outlined = NotStr(''' + + + +''') +icon_clear_twotone = NotStr('''''') +icon_app_settings_alt_round = NotStr('''''') +icon_signal_wifi_bad_filled = NotStr('''''') +icon_phonelink_twotone = NotStr(''' + + +''') +icon_pie_chart_round = NotStr('''''') +icon_medication_liquid_sharp = NotStr(''' + + +''') +icon_hardware_round = NotStr('''''') +icon_water_drop_outlined = NotStr('''''') +icon_video_file_sharp = NotStr('''''') +icon_auto_stories_sharp = NotStr(''' + + +''') +icon_menu_book_sharp = NotStr(''' + + +''') +icon_event_busy_round = NotStr('''''') +icon_assessment_twotone = NotStr(''' + + +''') +icon_call_made_twotone = NotStr('''''') +icon_swipe_right_alt_filled = NotStr('''''') +icon_cloud_queue_sharp = NotStr('''''') +icon_thumb_down_off_alt_outlined = NotStr('''''') +icon_settings_voice_twotone = NotStr(''' + + +''') +icon_play_circle_filled_round = NotStr('''''') +icon_ice_skating_sharp = NotStr('''''') +icon_ramen_dining_sharp = NotStr('''''') +icon_md1_k_plus_twotone = NotStr(''' + + + +''') +icon_attractions_twotone = NotStr(''' + + +''') +icon_explore_off_outlined = NotStr('''''') +icon_cyclone_sharp = NotStr(''' + + +''') +icon_do_not_step_sharp = NotStr('''''') +icon_wifi_calling_filled = NotStr(''' + + +''') +icon_phone_locked_filled = NotStr(''' + + +''') +icon_ios_share_filled = NotStr('''''') +icon_card_travel_outlined = NotStr('''''') +icon_filter_alt_off_filled = NotStr('''''') +icon_arrow_right_alt_outlined = NotStr('''''') +icon_tablet_android_sharp = NotStr('''''') +icon_battery_charging90_outlined = NotStr(''' + + +''') +icon_phone_paused_sharp = NotStr('''''') +icon_query_stats_filled = NotStr('''''') +icon_battery_alert_filled = NotStr('''''') +icon_web_round = NotStr('''''') +icon_logo_dev_twotone = NotStr(''' + + +''') +icon_call_split_twotone = NotStr('''''') +icon_bedtime_sharp = NotStr('''''') +icon_vpn_key_off_round = NotStr('''''') +icon_directions_run_filled = NotStr('''''') +icon_grid_on_round = NotStr('''''') +icon_table_chart_outlined = NotStr('''''') +icon_self_improvement_outlined = NotStr(''' + + +''') +icon_door_back_outlined = NotStr(''' + + +''') +icon_domain_outlined = NotStr('''''') +icon_sports_score_round = NotStr('''''') +icon_keyboard_arrow_right_round = NotStr('''''') +icon_wifi_lock_sharp = NotStr(''' + + +''') +icon_assignment_ind_twotone = NotStr(''' + + +''') +icon_groups_sharp = NotStr('''''') +icon_phone_enabled_sharp = NotStr('''''') +icon_add_circle_outline_filled = NotStr('''''') +icon_currency_exchange_sharp = NotStr('''''') +icon_table_restaurant_twotone = NotStr(''' + + +''') +icon_remove_circle_twotone = NotStr(''' + + +''') +icon_airline_stops_outlined = NotStr('''''') +icon_signal_wifi1_bar_twotone = NotStr(''' + + +''') +icon_lens_twotone = NotStr(''' + + +''') +icon_arrow_left_outlined = NotStr('''''') +icon_gps_off_twotone = NotStr('''''') +icon_wash_filled = NotStr('''''') +icon_public_off_twotone = NotStr(''' + + +''') +icon_vape_free_round = NotStr('''''') +icon_filter_hdr_outlined = NotStr('''''') +icon_phone_iphone_outlined = NotStr('''''') +icon_flip_outlined = NotStr('''''') +icon_table_restaurant_sharp = NotStr('''''') +icon_system_security_update_sharp = NotStr('''''') +icon_signal_cellular3_bar_round = NotStr(''' + + +''') +icon_indeterminate_check_box_twotone = NotStr(''' + + +''') +icon_border_color_outlined = NotStr('''''') +icon_archive_outlined = NotStr('''''') +icon_access_alarm_sharp = NotStr('''''') +icon_plus_minus_alt_twotone = NotStr('''''') +icon_sports_mma_round = NotStr('''''') +icon_water_filled = NotStr('''''') +icon_keyboard_arrow_right_outlined = NotStr('''''') +icon_fiber_dvr_twotone = NotStr(''' + + + +''') +icon_local_printshop_outlined = NotStr(''' + + +''') +icon_scatter_plot_sharp = NotStr(''' + + + +''') +icon_menu_book_outlined = NotStr(''' + + +''') +icon_dinner_dining_twotone = NotStr(''' + + +''') +icon_tv_round = NotStr('''''') +icon_male_round = NotStr('''''') +icon_navigate_before_twotone = NotStr('''''') +icon_pivot_table_chart_twotone = NotStr('''''') +icon_android_round = NotStr('''''') +icon_abc_twotone = NotStr('''''') +icon_local_dining_round = NotStr('''''') +icon_try_round = NotStr('''''') +icon_format_align_right_outlined = NotStr('''''') +icon_notifications_paused_sharp = NotStr('''''') +icon_autofps_select_round = NotStr(''' + + +''') +icon_view_stream_sharp = NotStr('''''') +icon_devices_fold_outlined = NotStr('''''') +icon_format_bold_round = NotStr('''''') +icon_shield_moon_round = NotStr('''''') +icon_mode_standby_sharp = NotStr('''''') +icon_timer10_select_sharp = NotStr('''''') +icon_open_in_new_off_filled = NotStr('''''') +icon_install_mobile_sharp = NotStr(''' + + +''') +icon_outlined_flag_sharp = NotStr('''''') +icon_keyboard_tab_twotone = NotStr('''''') +icon_hourglass_disabled_outlined = NotStr('''''') +icon_add_shopping_cart_twotone = NotStr('''''') +icon_ice_skating_filled = NotStr('''''') +icon_weekend_outlined = NotStr('''''') +icon_inbox_outlined = NotStr('''''') +icon_sync_alt_outlined = NotStr('''''') +icon_format_clear_round = NotStr('''''') +icon_dinner_dining_round = NotStr('''''') +icon_density_medium_filled = NotStr('''''') +icon_add_a_photo_outlined = NotStr('''''') +icon_fax_outlined = NotStr(''' + + + + + + +''') +icon_password_twotone = NotStr('''''') +icon_photo_filter_round = NotStr('''''') +icon_text_rotation_none_filled = NotStr('''''') +icon_turned_in_not_round = NotStr('''''') +icon_flight_filled = NotStr('''''') +icon_sim_card_download_round = NotStr('''''') +icon_alarm_add_filled = NotStr('''''') +icon_font_download_off_sharp = NotStr('''''') +icon_timer_filled = NotStr('''''') +icon_system_security_update_good_twotone = NotStr(''' + + +''') +icon_line_style_filled = NotStr('''''') +icon_emoji_emotions_round = NotStr('''''') +icon_edit_notifications_round = NotStr('''''') +icon_battery30_sharp = NotStr(''' + + +''') +icon_copy_all_sharp = NotStr('''''') +icon_assignment_returned_sharp = NotStr('''''') +icon_drag_handle_sharp = NotStr('''''') +icon_square_foot_twotone = NotStr(''' + + +''') +icon_mail_outline_outlined = NotStr('''''') +icon_cast_for_education_filled = NotStr('''''') +icon_stay_current_portrait_filled = NotStr('''''') +icon_outbox_twotone = NotStr(''' + + + +''') +icon_person_pin_circle_sharp = NotStr('''''') +icon_turn_slight_left_outlined = NotStr('''''') +icon_outdoor_grill_sharp = NotStr('''''') +icon_hourglass_full_outlined = NotStr('''''') +icon_enhanced_encryption_round = NotStr('''''') +icon_kitesurfing_outlined = NotStr('''''') +icon_delete_forever_sharp = NotStr('''''') +icon_two_wheeler_sharp = NotStr('''''') +icon_location_disabled_sharp = NotStr('''''') +icon_sd_card_round = NotStr('''''') +icon_attachment_twotone = NotStr('''''') +icon_receipt_long_filled = NotStr(''' + + +''') +icon_no_flash_twotone = NotStr(''' + + +''') +icon_bolt_twotone = NotStr('''''') +icon_discount_outlined = NotStr(''' + + + +''') +icon_fast_forward_filled = NotStr('''''') +icon_flutter_dash_filled = NotStr('''''') +icon_sensor_door_round = NotStr('''''') +icon_laptop_mac_outlined = NotStr('''''') +icon_offline_share_twotone = NotStr(''' + + + +''') +icon_scale_twotone = NotStr(''' + + +''') +icon_image_search_filled = NotStr('''''') +icon_girl_filled = NotStr('''''') +icon_title_twotone = NotStr('''''') +icon_fork_left_round = NotStr('''''') +icon_pregnant_woman_sharp = NotStr('''''') +icon_panorama_vertical_select_round = NotStr('''''') +icon_earbuds_battery_sharp = NotStr('''''') +icon_swipe_down_twotone = NotStr(''' + + +''') +icon_currency_yuan_filled = NotStr('''''') +icon_person_add_alt1_outlined = NotStr('''''') +icon_shortcut_outlined = NotStr('''''') +icon_phone_paused_round = NotStr('''''') +icon_border_right_twotone = NotStr('''''') +icon_crop_landscape_round = NotStr('''''') +icon_signal_cellular_alt_twotone = NotStr('''''') +icon_filter_tilt_shift_outlined = NotStr('''''') +icon_sign_language_outlined = NotStr('''''') +icon_phonelink_ring_twotone = NotStr(''' + + +''') +icon_chair_round = NotStr(''' + + +''') +icon_sports_handball_round = NotStr(''' + + +''') +icon_horizontal_split_round = NotStr('''''') +icon_landslide_twotone = NotStr(''' + + +''') +icon_highlight_round = NotStr('''''') +icon_perm_camera_mic_outlined = NotStr('''''') +icon_adjust_sharp = NotStr('''''') +icon_phone_filled = NotStr('''''') +icon_equalizer_round = NotStr('''''') +icon_account_box_twotone = NotStr(''' + + +''') +icon_takeout_dining_round = NotStr('''''') +icon_sim_card_filled = NotStr('''''') +icon_wb_incandescent_outlined = NotStr('''''') +icon_perm_scan_wifi_twotone = NotStr(''' + + +''') +icon_wifi_find_round = NotStr(''' + + +''') +icon_person_remove_alt1_round = NotStr('''''') +icon_content_paste_go_round = NotStr(''' + + +''') +icon_replay5_twotone = NotStr('''''') +icon_local_convenience_store_sharp = NotStr('''''') +icon_heart_broken_twotone = NotStr(''' + + +''') +icon_arrow_circle_down_round = NotStr('''''') +icon_pause_presentation_twotone = NotStr(''' + + +''') +icon_crop_square_twotone = NotStr('''''') +icon_tips_and_updates_twotone = NotStr(''' + + +''') +icon_forward10_round = NotStr('''''') +icon_send_time_extension_sharp = NotStr(''' + + +''') +icon_signal_cellular2_bar_filled = NotStr(''' + + +''') +icon_youtube_searched_for_round = NotStr('''''') +icon_cameraswitch_twotone = NotStr(''' + + + + +''') +icon_segment_sharp = NotStr('''''') +icon_signal_cellular_alt_filled = NotStr('''''') +icon_brightness2_twotone = NotStr(''' + + +''') +icon_question_answer_round = NotStr('''''') +icon_railway_alert_outlined = NotStr(''' + + + +''') +icon_flatware_round = NotStr('''''') +icon_add_ic_call_filled = NotStr('''''') +icon_message_outlined = NotStr('''''') +icon_do_not_step_outlined = NotStr('''''') +icon_call_split_sharp = NotStr('''''') +icon_zoom_in_outlined = NotStr('''''') +icon_nightlight_round_filled = NotStr('''''') +icon_all_out_outlined = NotStr('''''') +icon_md5_mp_round = NotStr(''' + + +''') +icon_person_filled = NotStr('''''') +icon_system_update_twotone = NotStr(''' + + +''') +icon_follow_the_signs_outlined = NotStr('''''') +icon_md10_k_outlined = NotStr(''' + + +''') +icon_print_twotone = NotStr(''' + + + + +''') +icon_developer_board_round = NotStr('''''') +icon_battery_charging50_sharp = NotStr(''' + + +''') +icon_format_indent_increase_outlined = NotStr('''''') +icon_subdirectory_arrow_right_outlined = NotStr('''''') +icon_sentiment_satisfied_sharp = NotStr(''' + + + +''') +icon_replay10_filled = NotStr(''' + + +''') +icon_crop75_filled = NotStr('''''') +icon_web_sharp = NotStr('''''') +icon_emoji_food_beverage_sharp = NotStr('''''') +icon_hdr_weak_sharp = NotStr('''''') +icon_recycling_twotone = NotStr('''''') +icon_games_sharp = NotStr('''''') +icon_living_round = NotStr(''' + + + +''') +icon_sensors_off_filled = NotStr('''''') +icon_repeat_one_on_sharp = NotStr('''''') +icon_settings_voice_filled = NotStr('''''') +icon_wifi_tethering_error_sharp = NotStr('''''') +icon_ramp_right_sharp = NotStr('''''') +icon_battery0_bar_sharp = NotStr('''''') +icon_font_download_filled = NotStr('''''') +icon_shopify_round = NotStr('''''') +icon_tab_sharp = NotStr('''''') +icon_devices_filled = NotStr('''''') +icon_panorama_horizontal_select_sharp = NotStr('''''') +icon_live_help_outlined = NotStr('''''') +icon_train_filled = NotStr('''''') +icon_photo_album_round = NotStr('''''') +icon_do_disturb_on_filled = NotStr('''''') +icon_shopify_sharp = NotStr('''''') +icon_file_download_off_round = NotStr('''''') +icon_photo_camera_outlined = NotStr('''''') +icon_shopping_basket_filled = NotStr('''''') +icon_psychology_filled = NotStr(''' + + +''') +icon_perm_identity_round = NotStr('''''') +icon_piano_filled = NotStr('''''') +icon_raw_off_twotone = NotStr('''''') +icon_lock_reset_outlined = NotStr('''''') +icon_scuba_diving_filled = NotStr('''''') +icon_format_line_spacing_round = NotStr('''''') +icon_view_compact_filled = NotStr('''''') +icon_volcano_sharp = NotStr('''''') +icon_local_hospital_outlined = NotStr('''''') +icon_comment_bank_outlined = NotStr(''' + + +''') +icon_arrow_right_sharp = NotStr('''''') +icon_phone_missed_twotone = NotStr(''' + + +''') +icon_add_reaction_sharp = NotStr('''''') +icon_first_page_filled = NotStr('''''') +icon_car_crash_outlined = NotStr('''''') +icon_sync_lock_filled = NotStr('''''') +icon_sports_rugby_filled = NotStr('''''') +icon_bubble_chart_round = NotStr(''' + + + +''') +icon_border_left_filled = NotStr('''''') +icon_attach_file_filled = NotStr('''''') +icon_location_searching_sharp = NotStr('''''') +icon_image_not_supported_round = NotStr('''''') +icon_nightlife_round = NotStr('''''') +icon_nearby_off_twotone = NotStr('''''') +icon_home_sharp = NotStr('''''') +icon_sports_basketball_outlined = NotStr('''''') +icon_transit_enterexit_sharp = NotStr('''''') +icon_king_bed_twotone = NotStr(''' + + +''') +icon_no_encryption_twotone = NotStr(''' + + +''') +icon_no_food_round = NotStr('''''') +icon_add_location_alt_filled = NotStr('''''') +icon_contrast_filled = NotStr('''''') +icon_hdr_off_select_sharp = NotStr('''''') +icon_ice_skating_outlined = NotStr('''''') +icon_vertical_distribute_sharp = NotStr('''''') +icon_brush_outlined = NotStr('''''') +icon_sports_hockey_round = NotStr('''''') +icon_pin_off_twotone = NotStr(''' + + + +''') +icon_wheelchair_pickup_round = NotStr('''''') +icon_casino_filled = NotStr('''''') +icon_private_connectivity_outlined = NotStr('''''') +icon_interpreter_mode_filled = NotStr('''''') +icon_minimize_round = NotStr('''''') +icon_train_sharp = NotStr('''''') +icon_quickreply_round = NotStr(''' + + +''') +icon_bookmark_border_outlined = NotStr('''''') +icon_contact_mail_outlined = NotStr('''''') +icon_invert_colors_outlined = NotStr('''''') +icon_home_work_outlined = NotStr(''' + + + +''') +icon_published_with_changes_twotone = NotStr('''''') +icon_miscellaneous_services_outlined = NotStr('''''') +icon_bookmark_added_twotone = NotStr(''' + + +''') +icon_rocket_twotone = NotStr(''' + + +''') +icon_panorama_photosphere_select_outlined = NotStr('''''') +icon_swipe_down_filled = NotStr('''''') +icon_playlist_add_filled = NotStr('''''') +icon_view_column_filled = NotStr('''''') +icon_access_alarm_filled = NotStr('''''') +icon_airline_seat_flat_angled_outlined = NotStr('''''') +icon_filter_tilt_shift_sharp = NotStr('''''') +icon_filter_list_off_sharp = NotStr('''''') +icon_view_headline_round = NotStr('''''') +icon_check_circle_twotone = NotStr(''' + + +''') +icon_format_indent_increase_twotone = NotStr('''''') +icon_abc_outlined = NotStr('''''') +icon_developer_mode_sharp = NotStr('''''') +icon_local_shipping_outlined = NotStr('''''') +icon_directions_subway_sharp = NotStr('''''') +icon_hive_filled = NotStr('''''') +icon_colorize_twotone = NotStr(''' + + +''') +icon_local_see_round = NotStr(''' + + + +''') +icon_log_out_twotone = NotStr(''' + + +''') +icon_subtitles_round = NotStr('''''') +icon_turn_sharp_right_sharp = NotStr('''''') +icon_vignette_round = NotStr('''''') +icon_snowmobile_outlined = NotStr('''''') +icon_castle_outlined = NotStr(''' + + +''') +icon_mediation_twotone = NotStr('''''') +icon_label_round = NotStr('''''') +icon_html_sharp = NotStr('''''') +icon_margin_twotone = NotStr(''' + + + + +''') +icon_radio_button_unchecked_round = NotStr('''''') +icon_eco_twotone = NotStr(''' + + +''') +icon_tv_filled = NotStr('''''') +icon_arrow_circle_up_round = NotStr('''''') +icon_bluetooth_searching_sharp = NotStr('''''') +icon_cruelty_free_sharp = NotStr('''''') +icon_divide_round = NotStr('''''') +icon_emergency_share_sharp = NotStr('''''') +icon_wine_bar_outlined = NotStr('''''') +icon_shuffle_on_twotone = NotStr('''''') +icon_settings_suggest_filled = NotStr('''''') +icon_pages_sharp = NotStr('''''') +icon_lunch_dining_sharp = NotStr('''''') +icon_looks3_filled = NotStr('''''') +icon_hdr_off_select_round = NotStr('''''') +icon_color_lens_sharp = NotStr('''''') +icon_filter2_sharp = NotStr('''''') +icon_md16_mp_round = NotStr(''' + + +''') +icon_brightness7_filled = NotStr('''''') +icon_raw_on_round = NotStr('''''') +icon_swipe_up_twotone = NotStr(''' + + +''') +icon_zoom_out_map_filled = NotStr('''''') +icon_warning_amber_round = NotStr('''''') +icon_edit_location_sharp = NotStr('''''') +icon_sync_alt_sharp = NotStr('''''') +icon_back_hand_twotone = NotStr(''' + + +''') +icon_md30_fps_select_round = NotStr('''''') +icon_view_in_ar_filled = NotStr('''''') +icon_door_front_round = NotStr('''''') +icon_sms_twotone = NotStr(''' + + +''') +icon_md4_k_round = NotStr('''''') +icon_two_wheeler_filled = NotStr('''''') +icon_format_align_justify_outlined = NotStr('''''') +icon_flight_takeoff_round = NotStr('''''') +icon_log_in_filled = NotStr(''' + + +''') +icon_signal_wifi2_bar_lock_outlined = NotStr(''' + + +''') +icon_visibility_filled = NotStr('''''') +icon_place_filled = NotStr('''''') +icon_done_sharp = NotStr('''''') +icon_home_repair_service_sharp = NotStr('''''') +icon_weekend_filled = NotStr('''''') +icon_mic_none_sharp = NotStr('''''') +icon_queue_play_next_round = NotStr('''''') +icon_topic_twotone = NotStr(''' + + +''') +icon_md9_mp_sharp = NotStr(''' + + + +''') +icon_alternate_email_outlined = NotStr('''''') +icon_policy_round = NotStr(''' + + +''') +icon_hotel_sharp = NotStr('''''') +icon_night_shelter_outlined = NotStr('''''') +icon_square_filled = NotStr('''''') +icon_polyline_round = NotStr('''''') +icon_work_off_filled = NotStr('''''') +icon_hotel_twotone = NotStr(''' + + + +''') +icon_network_wifi_sharp = NotStr('''''') +icon_reply_sharp = NotStr('''''') +icon_mic_outlined = NotStr(''' + + +''') +icon_settings_voice_sharp = NotStr('''''') +icon_sledding_round = NotStr('''''') +icon_airplane_ticket_filled = NotStr('''''') +icon_snowshoeing_outlined = NotStr('''''') +icon_present_to_all_twotone = NotStr(''' + + +''') +icon_contrast_round = NotStr('''''') +icon_done_all_round = NotStr('''''') +icon_lte_mobiledata_twotone = NotStr('''''') +icon_move_down_outlined = NotStr('''''') +icon_payment_sharp = NotStr('''''') +icon_replay_circle_filled_round = NotStr('''''') +icon_chevron_left_outlined = NotStr('''''') +icon_donut_large_sharp = NotStr('''''') +icon_edit_notifications_twotone = NotStr(''' + + +''') +icon_repeat_one_filled = NotStr('''''') +icon_moped_round = NotStr(''' + + +''') +icon_insert_chart_twotone = NotStr(''' + + +''') +icon_sports_esports_sharp = NotStr('''''') +icon_network_wifi2_bar_filled = NotStr('''''') +icon_speaker_group_sharp = NotStr(''' + + + +''') +icon_girl_twotone = NotStr('''''') +icon_remove_moderator_filled = NotStr('''''') +icon_trip_origin_sharp = NotStr('''''') +icon_video_camera_front_sharp = NotStr('''''') +icon_person_add_disabled_filled = NotStr(''' + + +''') +icon_living_outlined = NotStr('''''') +icon_verified_user_outlined = NotStr('''''') +icon_library_books_twotone = NotStr(''' + + +''') +icon_sim_card_alert_outlined = NotStr(''' + + +''') +icon_library_books_sharp = NotStr('''''') +icon_vpn_key_off_twotone = NotStr(''' + + +''') +icon_browser_not_supported_outlined = NotStr('''''') +icon_stars_filled = NotStr('''''') +icon_cyclone_twotone = NotStr(''' + + + + +''') +icon_elderly_woman_outlined = NotStr('''''') +icon_expand_circle_down_round = NotStr('''''') +icon_playlist_remove_filled = NotStr('''''') +icon_money_off_csred_round = NotStr('''''') +icon_local_florist_round = NotStr('''''') +icon_playlist_remove_round = NotStr('''''') +icon_whatsapp_filled = NotStr('''''') +icon_rowing_filled = NotStr('''''') +icon_home_mini_outlined = NotStr('''''') +icon_greater_than_equal_twotone = NotStr(''' + + +''') +icon_local_bar_filled = NotStr('''''') +icon_md6_k_plus_round = NotStr('''''') +icon_visibility_off_filled = NotStr('''''') +icon_offline_bolt_sharp = NotStr('''''') +icon_inbox_filled = NotStr('''''') +icon_merge_sharp = NotStr('''''') +icon_crop_filled = NotStr('''''') +icon_turn_right_outlined = NotStr('''''') +icon_swipe_down_round = NotStr('''''') +icon_fitness_center_sharp = NotStr('''''') +icon_repeat_one_on_round = NotStr('''''') +icon_data_saver_off_sharp = NotStr('''''') +icon_merge_outlined = NotStr('''''') +icon_hdr_auto_select_sharp = NotStr(''' + + +''') +icon_radio_button_checked_twotone = NotStr(''' + + +''') +icon_call_merge_filled = NotStr('''''') +icon_person_outline_sharp = NotStr('''''') +icon_exposure_neg1_outlined = NotStr('''''') +icon_code_off_round = NotStr('''''') +icon_airport_shuttle_round = NotStr('''''') +icon_table_chart_twotone = NotStr(''' + + +''') +icon_format_italic_sharp = NotStr('''''') +icon_picture_in_picture_alt_filled = NotStr('''''') +icon_media_bluetooth_on_filled = NotStr('''''') +icon_tsunami_filled = NotStr('''''') +icon_pending_twotone = NotStr(''' + + + + + +''') +icon_copy_all_filled = NotStr('''''') +icon_javascript_sharp = NotStr('''''') +icon_edgesensor_low_sharp = NotStr('''''') +icon_light_mode_outlined = NotStr('''''') +icon_stream_sharp = NotStr(''' + + + + + +''') +icon_thumb_down_off_alt_sharp = NotStr('''''') +icon_maximize_outlined = NotStr('''''') +icon_text_rotation_down_round = NotStr('''''') +icon_filter_center_focus_sharp = NotStr('''''') +icon_phonelink_erase_filled = NotStr('''''') +icon_timeline_outlined = NotStr('''''') +icon_text_rotation_angledown_round = NotStr('''''') +icon_people_sharp = NotStr('''''') +icon_exposure_neg1_filled = NotStr('''''') +icon_stroller_twotone = NotStr(''' + + +''') +icon_remove_circle_outline_round = NotStr('''''') +icon_space_bar_filled = NotStr('''''') +icon_download_for_offline_outlined = NotStr('''''') +icon_mark_chat_unread_sharp = NotStr('''''') +icon_more_horiz_outlined = NotStr('''''') +icon_gps_fixed_filled = NotStr('''''') +icon_landscape_filled = NotStr('''''') +icon_signal_wifi2_bar_sharp = NotStr(''' + + +''') +icon_motion_photos_off_sharp = NotStr(''' + + +''') +icon_cast_connected_twotone = NotStr(''' + + +''') +icon_nature_twotone = NotStr(''' + + +''') +icon_expand_circle_down_filled = NotStr('''''') +icon_compass_calibration_sharp = NotStr(''' + + +''') +icon_border_style_filled = NotStr('''''') +icon_credit_score_round = NotStr('''''') +icon_play_arrow_outlined = NotStr('''''') +icon_signal_wifi_connected_no_internet4_outlined = NotStr('''''') +icon_dynamic_form_outlined = NotStr('''''') +icon_restore_round = NotStr('''''') +icon_switch_account_round = NotStr('''''') +icon_construction_outlined = NotStr('''''') +icon_call_made_round = NotStr('''''') +icon_signal_wifi_off_outlined = NotStr('''''') +icon_pan_tool_alt_filled = NotStr('''''') +icon_donut_small_sharp = NotStr('''''') +icon_connecting_airports_sharp = NotStr('''''') +icon_md60_fps_round = NotStr('''''') +icon_insert_invitation_filled = NotStr('''''') +icon_check_box_sharp = NotStr('''''') +icon_md19_mp_filled = NotStr('''''') +icon_hdr_strong_round = NotStr('''''') +icon_storm_outlined = NotStr('''''') +icon_toggle_on_round = NotStr('''''') +icon_home_mini_filled = NotStr('''''') +icon_directions_bus_filled_sharp = NotStr('''''') +icon_bar_chart_filled = NotStr('''''') +icon_translate_outlined = NotStr('''''') +icon_subscript_outlined = NotStr('''''') +icon_beach_access_filled = NotStr('''''') +icon_paid_round = NotStr('''''') +icon_equals_filled = NotStr('''''') +icon_album_filled = NotStr('''''') +icon_hls_off_outlined = NotStr('''''') +icon_dangerous_round = NotStr('''''') +icon_wifi_protected_setup_round = NotStr('''''') +icon_md30_fps_select_filled = NotStr('''''') +icon_u_turn_right_filled = NotStr('''''') +icon_key_filled = NotStr('''''') +icon_hvac_sharp = NotStr(''' + + +''') +icon_last_page_sharp = NotStr('''''') +icon_rectangle_sharp = NotStr('''''') +icon_sync_sharp = NotStr('''''') +icon_sms_failed_round = NotStr('''''') +icon_add_circle_filled = NotStr('''''') +icon_repeat_round = NotStr('''''') +icon_credit_score_twotone = NotStr('''''') +icon_flip_camera_ios_round = NotStr('''''') +icon_no_stroller_sharp = NotStr('''''') +icon_checklist_round = NotStr('''''') +icon_emoji_objects_round = NotStr('''''') +icon_pause_circle_outlined = NotStr('''''') +icon_signal_wifi4_bar_lock_round = NotStr(''' + + +''') +icon_safety_check_filled = NotStr('''''') +icon_filter_center_focus_outlined = NotStr('''''') +icon_coffee_twotone = NotStr(''' + + +''') +icon_done_all_sharp = NotStr('''''') +icon_save_sharp = NotStr('''''') +icon_store_mall_directory_filled = NotStr('''''') +icon_tonality_sharp = NotStr('''''') +icon_all_out_filled = NotStr('''''') +icon_add_outlined = NotStr('''''') +icon_subscript_round = NotStr('''''') +icon_score_sharp = NotStr('''''') +icon_subject_round = NotStr('''''') +icon_video_stable_filled = NotStr('''''') +icon_duo_round = NotStr('''''') +icon_business_filled = NotStr('''''') +icon_flip_camera_ios_outlined = NotStr(''' + + +''') +icon_battery3_bar_sharp = NotStr('''''') +icon_clean_hands_round = NotStr('''''') +icon_swipe_left_alt_filled = NotStr('''''') +icon_disabled_visible_filled = NotStr('''''') +icon_strikethrough_s_sharp = NotStr('''''') +icon_md5_g_sharp = NotStr('''''') +icon_network_ping_filled = NotStr('''''') +icon_text_rotation_angledown_outlined = NotStr('''''') +icon_payments_round = NotStr('''''') +icon_looks3_outlined = NotStr('''''') +icon_phone_forwarded_round = NotStr('''''') +icon_circle_notifications_sharp = NotStr('''''') +icon_android_twotone = NotStr('''''') +icon_wb_shade_sharp = NotStr('''''') +icon_md5_k_plus_outlined = NotStr(''' + + +''') +icon_functions_filled = NotStr('''''') +icon_stairs_sharp = NotStr('''''') +icon_dehaze_twotone = NotStr('''''') +icon_stop_screen_share_filled = NotStr('''''') +icon_label_off_twotone = NotStr(''' + + +''') +icon_md8_mp_round = NotStr(''' + + + +''') +icon_video_label_outlined = NotStr('''''') +icon_move_to_inbox_outlined = NotStr('''''') +icon_md2_k_outlined = NotStr(''' + + +''') +icon_battery_charging20_sharp = NotStr(''' + + +''') +icon_face_filled = NotStr('''''') +icon_auto_fix_high_round = NotStr('''''') +icon_vaping_rooms_twotone = NotStr(''' + + +''') +icon_live_tv_twotone = NotStr(''' + + +''') +icon_do_not_disturb_on_total_silence_filled = NotStr('''''') +icon_battery2_bar_round = NotStr('''''') +icon_clear_round = NotStr('''''') +icon_sports_mma_twotone = NotStr(''' + + + +''') +icon_article_sharp = NotStr('''''') +icon_create_sharp = NotStr('''''') +icon_flashlight_off_round = NotStr('''''') +icon_key_off_outlined = NotStr('''''') +icon_arrow_circle_right_sharp = NotStr('''''') +icon_border_right_filled = NotStr('''''') +icon_currency_yuan_round = NotStr('''''') +icon_sports_gymnastics_sharp = NotStr('''''') +icon_plus_minus_alt_sharp = NotStr('''''') +icon_output_twotone = NotStr(''' + + +''') +icon_east_twotone = NotStr('''''') +icon_join_left_outlined = NotStr(''' + + +''') +icon_qr_code2_twotone = NotStr('''''') +icon_compass_calibration_round = NotStr(''' + + +''') +icon_support_filled = NotStr('''''') +icon_mic_external_on_outlined = NotStr(''' + + +''') +icon_water_damage_twotone = NotStr(''' + + +''') +icon_person_round = NotStr('''''') +icon_tungsten_round = NotStr('''''') +icon_indeterminate_check_box_filled = NotStr('''''') +icon_playlist_add_check_round = NotStr('''''') +icon_help_outlined = NotStr('''''') +icon_save_all_filled = NotStr(''' + + +''') +icon_signpost_sharp = NotStr('''''') +icon_contacts_sharp = NotStr('''''') +icon_all_inclusive_sharp = NotStr('''''') +icon_battery50_outlined = NotStr(''' + + +''') +icon_bed_round = NotStr('''''') +icon_iron_outlined = NotStr('''''') +icon_phone_in_talk_outlined = NotStr('''''') +icon_battery1_bar_sharp = NotStr('''''') +icon_star_twotone = NotStr(''' + + +''') +icon_dangerous_twotone = NotStr(''' + + +''') +icon_outbound_round = NotStr('''''') +icon_widgets_twotone = NotStr(''' + + +''') +icon_low_priority_round = NotStr('''''') +icon_quora_filled = NotStr('''''') +icon_living_sharp = NotStr(''' + + + +''') +icon_mediation_filled = NotStr('''''') +icon_podcasts_filled = NotStr('''''') +icon_video_stable_sharp = NotStr('''''') +icon_voice_chat_filled = NotStr('''''') +icon_insert_link_sharp = NotStr('''''') +icon_usb_off_sharp = NotStr('''''') +icon_person_outline_outlined = NotStr('''''') +icon_webhook_outlined = NotStr('''''') +icon_wifi_round = NotStr('''''') +icon_crib_outlined = NotStr('''''') +icon_battery90_round = NotStr(''' + + +''') +icon_airline_seat_recline_normal_filled = NotStr('''''') +icon_alarm_off_outlined = NotStr('''''') +icon_shield_moon_twotone = NotStr(''' + + + +''') +icon_thermostat_outlined = NotStr('''''') +icon_arrow_circle_right_round = NotStr('''''') +icon_location_searching_round = NotStr('''''') +icon_hourglass_bottom_round = NotStr('''''') +icon_airplanemode_inactive_filled = NotStr('''''') +icon_fire_extinguisher_filled = NotStr('''''') +icon_radio_button_checked_filled = NotStr('''''') +icon_history_twotone = NotStr('''''') +icon_download_for_offline_twotone = NotStr(''' + + + +''') +icon_md21_mp_twotone = NotStr(''' + + + + +''') +icon_settings_input_hdmi_filled = NotStr('''''') +icon_location_city_sharp = NotStr('''''') +icon_hearing_disabled_filled = NotStr('''''') +icon_crop_portrait_filled = NotStr('''''') +icon_data_usage_round = NotStr('''''') +icon_person_add_alt1_round = NotStr(''' + + +''') +icon_dialer_sip_twotone = NotStr(''' + + +''') +icon_insert_chart_outlined_twotone = NotStr('''''') +icon_airplanemode_active_round = NotStr('''''') +icon_control_camera_filled = NotStr(''' + + +''') +icon_browser_not_supported_twotone = NotStr('''''') +icon_signal_cellular2_bar_round = NotStr(''' + + +''') +icon_compare_arrows_twotone = NotStr('''''') +icon_airline_seat_flat_angled_round = NotStr('''''') +icon_balcony_round = NotStr('''''') +icon_battery_std_outlined = NotStr('''''') +icon_fingerprint_sharp = NotStr('''''') +icon_perm_phone_msg_filled = NotStr('''''') +icon_point_of_sale_outlined = NotStr('''''') +icon_build_circle_sharp = NotStr('''''') +icon_mic_off_round = NotStr('''''') +icon_attach_money_twotone = NotStr('''''') +icon_play_arrow_sharp = NotStr('''''') +icon_radio_button_checked_outlined = NotStr(''' + + +''') +icon_wifi_off_filled = NotStr('''''') +icon_auto_awesome_mosaic_sharp = NotStr('''''') +icon_liquor_round = NotStr('''''') +icon_vaccines_filled = NotStr('''''') +icon_filter_drama_sharp = NotStr('''''') +icon_dialpad_twotone = NotStr('''''') +icon_window_sharp = NotStr('''''') +icon_confirmation_number_twotone = NotStr(''' + + +''') +icon_location_off_outlined = NotStr('''''') +icon_battery2_bar_sharp = NotStr('''''') +icon_hide_source_filled = NotStr('''''') +icon_facebook_filled = NotStr('''''') +icon_navigate_before_filled = NotStr('''''') +icon_school_round = NotStr('''''') +icon_phonelink_off_filled = NotStr('''''') +icon_timeline_sharp = NotStr('''''') +icon_settings_applications_outlined = NotStr('''''') +icon_u_turn_left_twotone = NotStr('''''') +icon_follow_the_signs_twotone = NotStr(''' + + +''') +icon_water_drop_sharp = NotStr('''''') +icon_arrow_forward_ios_round = NotStr('''''') +icon_select_all_outlined = NotStr('''''') +icon_panorama_horizontal_select_outlined = NotStr('''''') +icon_devices_other_sharp = NotStr('''''') +icon_subway_round = NotStr(''' + + + +''') +icon_image_twotone = NotStr(''' + + +''') +icon_smart_screen_sharp = NotStr(''' + + +''') +icon_grade_round = NotStr('''''') +icon_fire_extinguisher_outlined = NotStr('''''') +icon_fitness_center_round = NotStr('''''') +icon_assignment_returned_filled = NotStr('''''') +icon_shuffle_sharp = NotStr('''''') +icon_control_point_outlined = NotStr('''''') +icon_crop_original_sharp = NotStr('''''') +icon_flip_to_front_sharp = NotStr('''''') +icon_pets_round = NotStr(''' + + + + + +''') +icon_fmd_bad_twotone = NotStr(''' + + +''') +icon_filter_frames_filled = NotStr('''''') +icon_duo_outlined = NotStr('''''') +icon_whatshot_twotone = NotStr(''' + + +''') +icon_takeout_dining_outlined = NotStr('''''') +icon_shopping_basket_outlined = NotStr('''''') +icon_face_outlined = NotStr('''''') +icon_sailing_filled = NotStr('''''') +icon_scanner_outlined = NotStr('''''') +icon_gps_off_outlined = NotStr('''''') +icon_air_sharp = NotStr('''''') +icon_remove_red_eye_filled = NotStr('''''') +icon_toys_outlined = NotStr('''''') +icon_local_convenience_store_round = NotStr('''''') +icon_monitor_heart_sharp = NotStr(''' + + +''') +icon_icecream_outlined = NotStr('''''') +icon_do_not_disturb_alt_twotone = NotStr('''''') +icon_lock_open_twotone = NotStr(''' + + +''') +icon_public_off_sharp = NotStr('''''') +icon_compress_twotone = NotStr('''''') +icon_location_city_outlined = NotStr('''''') +icon_bluetooth_drive_filled = NotStr(''' + + +''') +icon_delete_outline_outlined = NotStr('''''') +icon_savings_filled = NotStr('''''') +icon_online_prediction_twotone = NotStr('''''') +icon_history_edu_round = NotStr('''''') +icon_sports_bar_sharp = NotStr('''''') +icon_brunch_dining_filled = NotStr('''''') +icon_microwave_filled = NotStr('''''') +icon_perm_identity_filled = NotStr('''''') +icon_queue_filled = NotStr('''''') +icon_currency_bitcoin_filled = NotStr('''''') +icon_send_time_extension_filled = NotStr(''' + + +''') +icon_subtitles_sharp = NotStr('''''') +icon_join_left_round = NotStr(''' + + +''') +icon_photo_camera_filled = NotStr(''' + + +''') +icon_control_point_sharp = NotStr('''''') +icon_event_note_round = NotStr('''''') +icon_accessible_outlined = NotStr(''' + + +''') +icon_where_to_vote_round = NotStr('''''') +icon_md6_k_filled = NotStr('''''') +icon_do_not_disturb_alt_round = NotStr('''''') +icon_playlist_add_check_outlined = NotStr('''''') +icon_screen_search_desktop_sharp = NotStr(''' + + +''') +icon_access_time_twotone = NotStr(''' + + +''') +icon_group_remove_filled = NotStr('''''') +icon_cookie_filled = NotStr('''''') +icon_theaters_round = NotStr('''''') +icon_wifi_channel_filled = NotStr('''''') +icon_auto_graph_sharp = NotStr('''''') +icon_group_add_round = NotStr('''''') +icon_work_off_twotone = NotStr(''' + + +''') +icon_multiline_chart_sharp = NotStr('''''') +icon_format_list_numbered_twotone = NotStr('''''') +icon_live_help_round = NotStr('''''') +icon_trending_down_filled = NotStr('''''') +icon_hdr_weak_filled = NotStr('''''') +icon_album_outlined = NotStr('''''') +icon_schema_sharp = NotStr('''''') +icon_motion_photos_auto_outlined = NotStr('''''') +icon_compost_outlined = NotStr('''''') +icon_pan_tool_twotone = NotStr(''' + + +''') +icon_power_twotone = NotStr(''' + + +''') +icon_connecting_airports_round = NotStr('''''') +icon_explicit_filled = NotStr('''''') +icon_phonelink_outlined = NotStr('''''') +icon_watch_off_filled = NotStr('''''') +icon_sentiment_slightly_dissatisfied_filled = NotStr('''''') +icon_health_and_safety_round = NotStr('''''') +icon_closed_caption_disabled_filled = NotStr('''''') +icon_terrain_outlined = NotStr('''''') +icon_fireplace_outlined = NotStr(''' + + +''') +icon_spoke_round = NotStr('''''') +icon_margin_round = NotStr('''''') +icon_flight_takeoff_twotone = NotStr('''''') +icon_md4_g_plus_mobiledata_outlined = NotStr('''''') +icon_art_track_round = NotStr('''''') +icon_double_arrow_outlined = NotStr(''' + + +''') +icon_connect_without_contact_twotone = NotStr('''''') +icon_shutter_speed_filled = NotStr('''''') +icon_do_not_disturb_filled = NotStr('''''') +icon_auto_delete_round = NotStr(''' + + +''') +icon_download_done_twotone = NotStr('''''') +icon_notifications_sharp = NotStr('''''') +icon_directions_bus_filled_twotone = NotStr(''' + + + + +''') +icon_wifi_calling3_filled = NotStr(''' + + + +''') +icon_panorama_wide_angle_select_sharp = NotStr('''''') +icon_phonelink_erase_twotone = NotStr('''''') +icon_timelapse_round = NotStr('''''') +icon_art_track_sharp = NotStr('''''') +icon_cancel_presentation_outlined = NotStr('''''') +icon_grid4_x4_filled = NotStr('''''') +icon_undo_twotone = NotStr('''''') +icon_games_twotone = NotStr(''' + + +''') +icon_crop32_filled = NotStr('''''') +icon_view_cozy_filled = NotStr('''''') +icon_format_size_sharp = NotStr('''''') +icon_no_meeting_room_round = NotStr('''''') +icon_mediation_outlined = NotStr('''''') +icon_trending_flat_round = NotStr('''''') +icon_md1_x_mobiledata_round = NotStr('''''') +icon_sports_rugby_round = NotStr('''''') +icon_link_filled = NotStr('''''') +icon_snippet_folder_outlined = NotStr('''''') +icon_settings_input_component_twotone = NotStr(''' + + +''') +icon_skip_previous_sharp = NotStr('''''') +icon_auto_fix_normal_round = NotStr('''''') +icon_flood_twotone = NotStr(''' + + +''') +icon_http_filled = NotStr('''''') +icon_search_outlined = NotStr('''''') +icon_folder_shared_twotone = NotStr(''' + + +''') +icon_landslide_filled = NotStr('''''') +icon_add_circle_twotone = NotStr(''' + + +''') +icon_md22_mp_twotone = NotStr(''' + + + + + +''') +icon_medication_liquid_filled = NotStr('''''') +icon_imagesearch_roller_twotone = NotStr(''' + + +''') +icon_volume_off_round = NotStr('''''') +icon_format_align_justify_sharp = NotStr('''''') +icon_approval_outlined = NotStr('''''') +icon_add_location_twotone = NotStr(''' + + +''') +icon_disc_full_twotone = NotStr(''' + + +''') +icon_local_play_twotone = NotStr(''' + + +''') +icon_flip_camera_android_round = NotStr(''' + + +''') +icon_pin_sharp = NotStr('''''') +icon_image_aspect_ratio_outlined = NotStr('''''') +icon_call_made_filled = NotStr('''''') +icon_app_settings_alt_filled = NotStr('''''') +icon_hls_round = NotStr('''''') +icon_api_filled = NotStr('''''') +icon_fast_rewind_twotone = NotStr(''' + + +''') +icon_maps_ugc_twotone = NotStr(''' + + + +''') +icon_file_upload_round = NotStr('''''') +icon_history_toggle_off_twotone = NotStr('''''') +icon_sell_twotone = NotStr(''' + + + +''') +icon_view_array_filled = NotStr('''''') +icon_move_down_round = NotStr('''''') +icon_network_wifi_round = NotStr('''''') +icon_alarm_on_filled = NotStr('''''') +icon_support_agent_round = NotStr(''' + + + + +''') +icon_create_new_folder_outlined = NotStr('''''') +icon_md10_k_sharp = NotStr('''''') +icon_nearby_off_outlined = NotStr('''''') +icon_sports_baseball_outlined = NotStr('''''') +icon_mosque_sharp = NotStr(''' + + +''') +icon_countertops_filled = NotStr('''''') +icon_table_restaurant_filled = NotStr('''''') +icon_location_on_filled = NotStr('''''') +icon_hevc_filled = NotStr('''''') +icon_update_disabled_sharp = NotStr('''''') +icon_pin_outlined = NotStr(''' + + +''') +icon_email_twotone = NotStr(''' + + +''') +icon_directions_transit_filled_round = NotStr('''''') +icon_exposure_neg2_round = NotStr('''''') +icon_airline_seat_flat_filled = NotStr('''''') +icon_help_outline_round = NotStr('''''') +icon_crop_landscape_sharp = NotStr('''''') +icon_power_off_twotone = NotStr(''' + + +''') +icon_credit_card_off_filled = NotStr('''''') +icon_pattern_round = NotStr('''''') +icon_more_vert_filled = NotStr('''''') +icon_voice_over_off_round = NotStr('''''') +icon_filter_none_twotone = NotStr(''' + + +''') +icon_battery3_bar_filled = NotStr('''''') +icon_spellcheck_sharp = NotStr('''''') +icon_cleaning_services_twotone = NotStr(''' + + +''') +icon_signpost_outlined = NotStr('''''') +icon_card_membership_twotone = NotStr(''' + + +''') +icon_shopping_cart_checkout_filled = NotStr('''''') +icon_desktop_access_disabled_round = NotStr('''''') +icon_text_rotate_vertical_filled = NotStr('''''') +icon_missed_video_call_round = NotStr('''''') +icon_circle_filled = NotStr('''''') +icon_share_location_sharp = NotStr(''' + + +''') +icon_battery5_bar_round = NotStr('''''') +icon_mobile_off_twotone = NotStr('''''') +icon_outbound_filled = NotStr('''''') +icon_speaker_notes_sharp = NotStr('''''') +icon_event_sharp = NotStr('''''') +icon_atm_outlined = NotStr('''''') +icon_try_twotone = NotStr(''' + + + +''') +icon_account_tree_outlined = NotStr('''''') +icon_settings_suggest_round = NotStr('''''') +icon_woman_round = NotStr(''' + + +''') +icon_format_list_numbered_rtl_round = NotStr('''''') +icon_front_hand_twotone = NotStr(''' + + +''') +icon_reply_all_round = NotStr('''''') +icon_cast_sharp = NotStr('''''') +icon_signal_cellular_alt1_bar_round = NotStr('''''') +icon_dehaze_outlined = NotStr('''''') +icon_signal_wifi4_bar_lock_outlined = NotStr(''' + + +''') +icon_dashboard_customize_sharp = NotStr('''''') +icon_layers_twotone = NotStr(''' + + +''') +icon_no_accounts_twotone = NotStr(''' + + +''') +icon_hdr_auto_select_round = NotStr(''' + + +''') +icon_view_day_sharp = NotStr('''''') +icon_phone_paused_outlined = NotStr('''''') +icon_hvac_round = NotStr(''' + + +''') +icon_add_box_outlined = NotStr('''''') +icon_storage_filled = NotStr('''''') +icon_ramen_dining_twotone = NotStr(''' + + +''') +icon_history_edu_sharp = NotStr('''''') +icon_text_increase_sharp = NotStr('''''') +icon_spellcheck_filled = NotStr('''''') +icon_pause_circle_filled = NotStr('''''') +icon_shop_filled = NotStr('''''') +icon_event_repeat_round = NotStr('''''') +icon_radar_filled = NotStr('''''') +icon_line_axis_sharp = NotStr('''''') +icon_md4_mp_outlined = NotStr(''' + + + +''') +icon_local_mall_twotone = NotStr(''' + + +''') +icon_percent_outlined = NotStr('''''') +icon_skip_next_outlined = NotStr('''''') +icon_mobile_screen_share_round = NotStr('''''') +icon_network_check_twotone = NotStr('''''') +icon_format_indent_increase_filled = NotStr('''''') +icon_signal_wifi2_bar_lock_filled = NotStr(''' + + + +''') +icon_bug_report_outlined = NotStr('''''') +icon_running_with_errors_outlined = NotStr('''''') +icon_show_chart_filled = NotStr('''''') +icon_add_card_outlined = NotStr('''''') +icon_network_wifi1_bar_sharp = NotStr('''''') +icon_md19_mp_twotone = NotStr(''' + + + + + +''') +icon_directions_transit_twotone = NotStr(''' + + + + +''') +icon_healing_sharp = NotStr('''''') +icon_navigation_sharp = NotStr('''''') +icon_link_round = NotStr('''''') +icon_rocket_launch_filled = NotStr('''''') +icon_phonelink_sharp = NotStr('''''') +icon_severe_cold_round = NotStr(''' + + + +''') +icon_wb_iridescent_outlined = NotStr('''''') +icon_exposure_plus2_sharp = NotStr('''''') +icon_outbond_twotone = NotStr(''' + + +''') +icon_access_alarms_outlined = NotStr('''''') +icon_desktop_windows_twotone = NotStr(''' + + +''') +icon_sentiment_very_dissatisfied_outlined = NotStr('''''') +icon_border_left_outlined = NotStr('''''') +icon_swipe_left_round = NotStr('''''') +icon_edgesensor_low_filled = NotStr('''''') +icon_bookmark_border_twotone = NotStr('''''') +icon_vertical_align_top_twotone = NotStr('''''') +icon_business_center_filled = NotStr('''''') +icon_notifications_twotone = NotStr(''' + + +''') +icon_architecture_filled = NotStr('''''') +icon_house_sharp = NotStr('''''') +icon_bookmark_outlined = NotStr('''''') +icon_holiday_village_outlined = NotStr('''''') +icon_panorama_sharp = NotStr('''''') +icon_stay_current_landscape_outlined = NotStr('''''') +icon_woo_commerce_filled = NotStr('''''') +icon_notifications_off_twotone = NotStr(''' + + +''') +icon_music_video_outlined = NotStr('''''') +icon_dining_sharp = NotStr('''''') +icon_spatial_audio_outlined = NotStr(''' + + +''') +icon_earbuds_round = NotStr('''''') +icon_smart_screen_round = NotStr('''''') +icon_pix_outlined = NotStr(''' + + +''') +icon_no_cell_twotone = NotStr(''' + + +''') +icon_signal_wifi_bad_twotone = NotStr('''''') +icon_brightness4_round = NotStr('''''') +icon_wifi_filled = NotStr('''''') +icon_md3_g_mobiledata_round = NotStr('''''') +icon_tab_unselected_twotone = NotStr('''''') +icon_tungsten_outlined = NotStr('''''') +icon_spellcheck_twotone = NotStr('''''') +icon_masks_round = NotStr('''''') +icon_boy_filled = NotStr('''''') +icon_u_turn_left_outlined = NotStr('''''') +icon_trending_flat_outlined = NotStr('''''') +icon_directions_car_filled_sharp = NotStr('''''') +icon_directions_car_round = NotStr('''''') +icon_crop32_outlined = NotStr('''''') +icon_label_important_outlined = NotStr('''''') +icon_edit_attributes_sharp = NotStr('''''') +icon_local_cafe_sharp = NotStr('''''') +icon_directions_boat_filled_filled = NotStr('''''') +icon_thermostat_auto_round = NotStr('''''') +icon_wb_incandescent_round = NotStr('''''') +icon_earbuds_twotone = NotStr(''' + + +''') +icon_closed_caption_sharp = NotStr('''''') +icon_factory_sharp = NotStr('''''') +icon_local_hospital_twotone = NotStr(''' + + +''') +icon_vertical_align_center_sharp = NotStr('''''') +icon_language_sharp = NotStr('''''') +icon_satellite_alt_outlined = NotStr('''''') +icon_balance_sharp = NotStr('''''') +icon_point_of_sale_round = NotStr('''''') +icon_forum_filled = NotStr('''''') +icon_view_agenda_twotone = NotStr(''' + + +''') +icon_where_to_vote_outlined = NotStr('''''') +icon_not_accessible_twotone = NotStr('''''') +icon_panorama_photosphere_select_twotone = NotStr('''''') +icon_u_turn_left_filled = NotStr('''''') +icon_call_end_round = NotStr('''''') +icon_image_not_supported_outlined = NotStr('''''') +icon_music_video_twotone = NotStr(''' + + +''') +icon_signal_wifi3_bar_outlined = NotStr(''' + + +''') +icon_theaters_filled = NotStr('''''') +icon_ssid_chart_round = NotStr('''''') +icon_upgrade_twotone = NotStr('''''') +icon_aspect_ratio_round = NotStr('''''') +icon_extension_off_sharp = NotStr('''''') +icon_table_rows_twotone = NotStr(''' + + +''') +icon_local_movies_round = NotStr('''''') +icon_videocam_off_sharp = NotStr('''''') +icon_md5_k_plus_filled = NotStr('''''') +icon_battery_full_twotone = NotStr('''''') +icon_noise_control_off_twotone = NotStr('''''') +icon_zoom_out_filled = NotStr('''''') +icon_task_alt_twotone = NotStr('''''') +icon_no_photography_round = NotStr('''''') +icon_speed_round = NotStr(''' + + +''') +icon_food_bank_filled = NotStr('''''') +icon_handyman_filled = NotStr(''' + + +''') +icon_discount_filled = NotStr(''' + + +''') +icon_room_service_twotone = NotStr(''' + + +''') +icon_battery_charging90_sharp = NotStr(''' + + +''') +icon_call_to_action_twotone = NotStr(''' + + +''') +icon_md5_g_twotone = NotStr('''''') +icon_schedule_filled = NotStr(''' + + +''') +icon_motorcycle_filled = NotStr('''''') +icon_mark_unread_chat_alt_filled = NotStr(''' + + +''') +icon_crop_free_round = NotStr('''''') +icon_bedroom_baby_sharp = NotStr(''' + + +''') +icon_real_estate_agent_sharp = NotStr('''''') +icon_currency_ruble_round = NotStr('''''') +icon_directions_transit_filled = NotStr('''''') +icon_desktop_mac_filled = NotStr('''''') +icon_repeat_one_on_outlined = NotStr('''''') +icon_currency_bitcoin_sharp = NotStr('''''') +icon_label_important_sharp = NotStr('''''') +icon_music_off_round = NotStr('''''') +icon_network_cell_round = NotStr('''''') +icon_battery_unknown_round = NotStr('''''') +icon_insert_page_break_outlined = NotStr('''''') +icon_sports_cricket_sharp = NotStr(''' + + +''') +icon_receipt_filled = NotStr('''''') +icon_folder_delete_twotone = NotStr(''' + + +''') +icon_travel_explore_outlined = NotStr('''''') +icon_add_alarm_round = NotStr('''''') +icon_speaker_twotone = NotStr(''' + + +''') +icon_hourglass_bottom_filled = NotStr('''''') +icon_flight_land_round = NotStr('''''') +icon_tour_sharp = NotStr('''''') +icon_watch_sharp = NotStr('''''') +icon_vpn_lock_filled = NotStr('''''') +icon_view_cozy_outlined = NotStr(''' + + +''') +icon_dark_mode_round = NotStr('''''') +icon_key_sharp = NotStr('''''') +icon_mosque_filled = NotStr(''' + + +''') +icon_signal_wifi_connected_no_internet4_twotone = NotStr('''''') +icon_do_not_touch_sharp = NotStr('''''') +icon_view_in_ar_outlined = NotStr('''''') +icon_support_sharp = NotStr('''''') +icon_electric_moped_round = NotStr(''' + + +''') +icon_photo_size_select_large_outlined = NotStr('''''') +icon_looks5_outlined = NotStr('''''') +icon_attach_file_twotone = NotStr('''''') +icon_new_label_round = NotStr('''''') +icon_checklist_outlined = NotStr('''''') +icon_panorama_horizontal_round = NotStr('''''') +icon_phone_locked_outlined = NotStr(''' + + +''') +icon_tips_and_updates_outlined = NotStr('''''') +icon_rotate90_degrees_ccw_filled = NotStr('''''') +icon_md6_k_plus_sharp = NotStr('''''') +icon_md3_k_twotone = NotStr(''' + + + +''') +icon_double_arrow_round = NotStr(''' + + +''') +icon_md60_fps_select_sharp = NotStr('''''') +icon_near_me_round = NotStr('''''') +icon_exposure_plus2_round = NotStr('''''') +icon_noise_control_off_filled = NotStr('''''') +icon_bloodtype_outlined = NotStr(''' + + +''') +icon_build_twotone = NotStr(''' + + +''') +icon_theaters_twotone = NotStr(''' + + +''') +icon_network_wifi1_bar_outlined = NotStr('''''') +icon_feed_sharp = NotStr('''''') +icon_gpp_maybe_twotone = NotStr(''' + + +''') +icon_arrow_back_ios_round = NotStr('''''') +icon_dashboard_customize_filled = NotStr('''''') +icon_phone_in_talk_round = NotStr('''''') +icon_bookmark_add_outlined = NotStr('''''') +icon_front_hand_sharp = NotStr('''''') +icon_keyboard_arrow_left_round = NotStr('''''') +icon_home_repair_service_outlined = NotStr('''''') +icon_heart_broken_round = NotStr('''''') +icon_looks_one_twotone = NotStr(''' + + +''') +icon_save_alt_round = NotStr('''''') +icon_data_object_sharp = NotStr('''''') +icon_transfer_within_a_station_round = NotStr('''''') +icon_signal_cellular_null_twotone = NotStr('''''') +icon_roundabout_right_outlined = NotStr('''''') +icon_signal_wifi_statusbar_null_outlined = NotStr('''''') +icon_nordic_walking_twotone = NotStr('''''') +icon_developer_board_off_twotone = NotStr(''' + + +''') +icon_photo_album_sharp = NotStr('''''') +icon_electric_moped_sharp = NotStr(''' + + +''') +icon_portable_wifi_off_twotone = NotStr('''''') +icon_undo_filled = NotStr('''''') +icon_offline_share_round = NotStr(''' + + + +''') +icon_keyboard_outlined = NotStr('''''') +icon_call_twotone = NotStr(''' + + +''') +icon_west_filled = NotStr('''''') +icon_volunteer_activism_sharp = NotStr('''''') +icon_double_arrow_twotone = NotStr(''' + + +''') +icon_data_saver_off_outlined = NotStr('''''') +icon_pregnant_woman_twotone = NotStr('''''') +icon_key_twotone = NotStr('''''') +icon_add_circle_round = NotStr('''''') +icon_battery_charging_full_twotone = NotStr('''''') +icon_space_bar_outlined = NotStr('''''') +icon_schedule_outlined = NotStr('''''') +icon_recycling_round = NotStr('''''') +icon_not_interested_filled = NotStr('''''') +icon_playlist_add_check_sharp = NotStr('''''') +icon_hdr_auto_select_twotone = NotStr(''' + + +''') +icon_navigate_before_outlined = NotStr('''''') +icon_print_disabled_twotone = NotStr(''' + + + + + + +''') +icon_airline_seat_flat_sharp = NotStr('''''') +icon_sentiment_dissatisfied_outlined = NotStr(''' + + + +''') +icon_request_page_round = NotStr('''''') +icon_insert_chart_outlined_sharp = NotStr('''''') +icon_fiber_pin_sharp = NotStr('''''') +icon_desktop_access_disabled_filled = NotStr('''''') +icon_play_for_work_round = NotStr('''''') +icon_block_filled = NotStr('''''') +icon_request_quote_outlined = NotStr('''''') +icon_no_food_sharp = NotStr('''''') +icon_radio_button_checked_sharp = NotStr(''' + + +''') +icon_portable_wifi_off_round = NotStr('''''') +icon_label_important_filled = NotStr('''''') +icon_drive_file_move_outlined = NotStr('''''') +icon_file_download_filled = NotStr('''''') +icon_volcano_filled = NotStr('''''') +icon_flip_to_front_outlined = NotStr('''''') +icon_access_time_sharp = NotStr('''''') +icon_create_outlined = NotStr('''''') +icon_speaker_phone_outlined = NotStr('''''') +icon_desktop_access_disabled_sharp = NotStr('''''') +icon_pause_circle_round = NotStr('''''') +icon_remove_shopping_cart_outlined = NotStr('''''') +icon_filter_list_filled = NotStr('''''') +icon_signal_cellular_no_sim_sharp = NotStr('''''') +icon_airline_seat_legroom_normal_outlined = NotStr('''''') +icon_videocam_round = NotStr('''''') +icon_delivery_dining_filled = NotStr(''' + + +''') +icon_hearing_outlined = NotStr('''''') +icon_gavel_filled = NotStr('''''') +icon_running_with_errors_twotone = NotStr('''''') +icon_backup_table_outlined = NotStr(''' + + +''') +icon_no_encryption_sharp = NotStr('''''') +icon_app_settings_alt_twotone = NotStr(''' + + +''') +icon_greater_than_twotone = NotStr('''''') +icon_outdoor_grill_twotone = NotStr(''' + + + + +''') +icon_panorama_photosphere_filled = NotStr('''''') +icon_south_america_sharp = NotStr('''''') +icon_surround_sound_twotone = NotStr(''' + + + +''') +icon_filter9_plus_sharp = NotStr('''''') +icon_emoji_objects_sharp = NotStr('''''') +icon_enhanced_encryption_outlined = NotStr('''''') +icon_countertops_outlined = NotStr('''''') +icon_battery_charging20_round = NotStr(''' + + +''') +icon_crop_portrait_sharp = NotStr('''''') +icon_not_equal_round = NotStr(''' + + +''') +icon_notifications_active_round = NotStr('''''') +icon_sports_hockey_twotone = NotStr('''''') +icon_straight_outlined = NotStr('''''') +icon_trending_flat_sharp = NotStr('''''') +icon_check_box_outline_blank_twotone = NotStr('''''') +icon_leave_bags_at_home_round = NotStr('''''') +icon_collections_bookmark_filled = NotStr(''' + + +''') +icon_balance_outlined = NotStr('''''') +icon_md3_g_mobiledata_twotone = NotStr('''''') +icon_screen_lock_portrait_sharp = NotStr('''''') +icon_keyboard_arrow_left_twotone = NotStr('''''') +icon_luggage_round = NotStr('''''') +icon_minor_crash_sharp = NotStr('''''') +icon_screen_rotation_alt_twotone = NotStr('''''') +icon_blender_round = NotStr('''''') +icon_filter4_round = NotStr('''''') +icon_business_twotone = NotStr(''' + + +''') +icon_wordpress_filled = NotStr('''''') +icon_join_left_twotone = NotStr(''' + + +''') +icon_pest_control_rodent_outlined = NotStr(''' + + +''') +icon_settings_power_outlined = NotStr('''''') +icon_pedal_bike_round = NotStr('''''') +icon_filter_frames_outlined = NotStr('''''') +icon_price_change_outlined = NotStr('''''') +icon_how_to_vote_round = NotStr(''' + + +''') +icon_compass_calibration_filled = NotStr(''' + + +''') +icon_md7_k_plus_outlined = NotStr(''' + + +''') +icon_shop_sharp = NotStr('''''') +icon_cable_twotone = NotStr('''''') +icon_view_stream_outlined = NotStr('''''') +icon_sensor_window_outlined = NotStr('''''') +icon_pest_control_filled = NotStr('''''') +icon_chair_sharp = NotStr(''' + + +''') +icon_verified_user_round = NotStr('''''') +icon_group_off_sharp = NotStr('''''') +icon_closed_caption_round = NotStr('''''') +icon_area_chart_round = NotStr('''''') +icon_add_road_sharp = NotStr('''''') +icon_toll_sharp = NotStr('''''') +icon_camera_front_round = NotStr('''''') +icon_arrow_upward_outlined = NotStr('''''') +icon_golf_course_sharp = NotStr(''' + + +''') +icon_laptop_outlined = NotStr('''''') +icon_money_off_filled = NotStr('''''') +icon_panorama_photosphere_select_round = NotStr('''''') +icon_format_color_reset_twotone = NotStr(''' + + +''') +icon_local_drink_twotone = NotStr(''' + + +''') +icon_currency_pound_twotone = NotStr('''''') +icon_shopping_cart_checkout_sharp = NotStr('''''') +icon_beenhere_twotone = NotStr(''' + + +''') +icon_send_to_mobile_round = NotStr(''' + + +''') +icon_browse_gallery_outlined = NotStr(''' + + +''') +icon_headphones_battery_sharp = NotStr('''''') +icon_open_in_new_round = NotStr('''''') +icon_view_comfy_alt_round = NotStr('''''') +icon_sentiment_satisfied_outlined = NotStr(''' + + + +''') +icon_celebration_round = NotStr('''''') +icon_mood_twotone = NotStr(''' + + + + + +''') +icon_wb_auto_outlined = NotStr('''''') +icon_build_circle_filled = NotStr('''''') +icon_audiotrack_sharp = NotStr('''''') +icon_app_registration_filled = NotStr('''''') +icon_document_scanner_sharp = NotStr('''''') +icon_security_update_round = NotStr('''''') +icon_mode_of_travel_round = NotStr('''''') +icon_api_round = NotStr('''''') +icon_md2_k_filled = NotStr('''''') +icon_perm_device_information_sharp = NotStr('''''') +icon_calendar_view_week_filled = NotStr('''''') +icon_tram_round = NotStr('''''') +icon_gavel_sharp = NotStr('''''') +icon_trending_up_outlined = NotStr('''''') +icon_mp_round = NotStr('''''') +icon_check_twotone = NotStr('''''') +icon_md5_k_plus_sharp = NotStr('''''') +icon_drive_file_rename_outline_filled = NotStr('''''') +icon_add_chart_filled = NotStr('''''') +icon_update_disabled_round = NotStr('''''') +icon_battery_charging30_sharp = NotStr(''' + + +''') +icon_gif_box_filled = NotStr('''''') +icon_height_outlined = NotStr('''''') +icon_recent_actors_round = NotStr('''''') +icon_contact_page_round = NotStr('''''') +icon_manage_accounts_filled = NotStr(''' + + +''') +icon_feedback_round = NotStr('''''') +icon_timer10_filled = NotStr('''''') +icon_schedule_round = NotStr('''''') +icon_transgender_sharp = NotStr('''''') +icon_mode_edit_outline_twotone = NotStr(''' + + +''') +icon_rule_folder_sharp = NotStr('''''') +icon_electric_moped_outlined = NotStr(''' + + +''') +icon_event_busy_twotone = NotStr(''' + + +''') +icon_wordpress_twotone = NotStr('''''') +icon_filter3_outlined = NotStr('''''') +icon_tablet_mac_twotone = NotStr(''' + + +''') +icon_vpn_lock_twotone = NotStr(''' + + +''') +icon_add_alert_sharp = NotStr('''''') +icon_signpost_round = NotStr('''''') +icon_replay_circle_filled_sharp = NotStr('''''') +icon_casino_twotone = NotStr(''' + + + + + + + +''') +icon_border_outer_filled = NotStr('''''') +icon_amp_stories_twotone = NotStr(''' + + +''') +icon_brightness_high_filled = NotStr('''''') +icon_format_color_text_sharp = NotStr('''''') +icon_md3_mp_filled = NotStr('''''') +icon_web_asset_outlined = NotStr('''''') +icon_show_chart_twotone = NotStr('''''') +icon_pin_drop_round = NotStr('''''') +icon_first_page_twotone = NotStr('''''') +icon_hls_filled = NotStr('''''') +icon_account_balance_wallet_filled = NotStr('''''') +icon_skateboarding_outlined = NotStr('''''') +icon_hearing_disabled_sharp = NotStr('''''') +icon_reset_tv_round = NotStr('''''') +icon_phone_enabled_round = NotStr('''''') +icon_email_round = NotStr('''''') +icon_wifi1_bar_round = NotStr('''''') +icon_clear_sharp = NotStr('''''') +icon_bar_chart_outlined = NotStr('''''') +icon_mail_outline_sharp = NotStr('''''') +icon_ads_click_twotone = NotStr('''''') +icon_md19_mp_outlined = NotStr(''' + + + +''') +icon_vaccines_round = NotStr('''''') +icon_remove_done_filled = NotStr('''''') +icon_piano_outlined = NotStr('''''') +icon_read_more_round = NotStr('''''') +icon_filter_hdr_sharp = NotStr('''''') +icon_push_pin_filled = NotStr('''''') +icon_keyboard_arrow_down_outlined = NotStr('''''') +icon_looks3_sharp = NotStr('''''') +icon_account_circle_filled = NotStr('''''') +icon_perm_identity_twotone = NotStr(''' + + + +''') +icon_accessibility_new_twotone = NotStr('''''') +icon_web_asset_round = NotStr('''''') +icon_flip_to_back_round = NotStr('''''') +icon_save_as_round = NotStr('''''') +icon_social_distance_sharp = NotStr('''''') +icon_dashboard_sharp = NotStr('''''') +icon_not_listed_location_filled = NotStr('''''') +icon_square_round = NotStr('''''') +icon_battery_charging80_sharp = NotStr(''' + + +''') +icon_dark_mode_filled = NotStr('''''') +icon_view_array_twotone = NotStr(''' + + +''') +icon_movie_filter_round = NotStr('''''') +icon_panorama_vertical_filled = NotStr('''''') +icon_scoreboard_filled = NotStr('''''') +icon_approval_filled = NotStr('''''') +icon_sick_filled = NotStr('''''') +icon_emergency_recording_twotone = NotStr(''' + + +''') +icon_sports_tennis_outlined = NotStr('''''') +icon_transform_twotone = NotStr('''''') +icon_monitor_weight_sharp = NotStr(''' + + +''') +icon_sentiment_satisfied_alt_round = NotStr(''' + + + +''') +icon_import_contacts_sharp = NotStr('''''') +icon_tapas_sharp = NotStr('''''') +icon_signal_cellular_nodata_twotone = NotStr('''''') +icon_minimize_sharp = NotStr('''''') +icon_featured_play_list_round = NotStr('''''') +icon_breakfast_dining_filled = NotStr('''''') +icon_chalet_sharp = NotStr('''''') +icon_perm_device_information_round = NotStr('''''') +icon_insert_comment_sharp = NotStr('''''') +icon_reorder_filled = NotStr('''''') +icon_filter_center_focus_round = NotStr('''''') +icon_looks6_round = NotStr('''''') +icon_check_circle_outline_twotone = NotStr('''''') +icon_smart_screen_twotone = NotStr(''' + + +''') +icon_zoom_in_sharp = NotStr('''''') +icon_mobiledata_off_round = NotStr('''''') +icon_hourglass_top_filled = NotStr('''''') +icon_file_copy_outlined = NotStr('''''') +icon_filter9_twotone = NotStr(''' + + +''') +icon_table_bar_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet2_bar_twotone = NotStr(''' + + +''') +icon_filter_none_outlined = NotStr('''''') +icon_keyboard_arrow_up_twotone = NotStr('''''') +icon_post_add_sharp = NotStr(''' + + +''') +icon_emoji_events_sharp = NotStr('''''') +icon_text_fields_filled = NotStr('''''') +icon_folder_off_sharp = NotStr('''''') +icon_md5_k_twotone = NotStr(''' + + + +''') +icon_videogame_asset_twotone = NotStr(''' + + + + +''') +icon_lock_filled = NotStr('''''') +icon_signal_cellular_off_outlined = NotStr('''''') +icon_schedule_twotone = NotStr(''' + + +''') +icon_no_backpack_twotone = NotStr(''' + + +''') +icon_border_inner_twotone = NotStr('''''') +icon_greater_than_equal_round = NotStr(''' + + +''') +icon_add_to_queue_outlined = NotStr('''''') +icon_timer3_outlined = NotStr('''''') +icon_done_filled = NotStr('''''') +icon_leak_add_sharp = NotStr('''''') +icon_tv_off_outlined = NotStr('''''') +icon_group_remove_outlined = NotStr('''''') +icon_merge_twotone = NotStr('''''') +icon_edit_location_alt_twotone = NotStr(''' + + +''') +icon_add_card_sharp = NotStr('''''') +icon_headset_twotone = NotStr(''' + + +''') +icon_palette_round = NotStr('''''') +icon_md360_twotone = NotStr('''''') +icon_md2_mp_twotone = NotStr(''' + + + + + +''') +icon_do_not_disturb_on_twotone = NotStr(''' + + + +''') +icon_calendar_view_month_outlined = NotStr('''''') +icon_personal_video_round = NotStr('''''') +icon_edit_filled = NotStr('''''') +icon_done_outline_sharp = NotStr('''''') +icon_sports_kabaddi_twotone = NotStr(''' + + + +''') +icon_task_alt_sharp = NotStr('''''') +icon_opacity_round = NotStr('''''') +icon_settings_bluetooth_round = NotStr(''' + + + + +''') +icon_minor_crash_round = NotStr('''''') +icon_screen_lock_landscape_round = NotStr('''''') +icon_carpenter_sharp = NotStr('''''') +icon_thumb_up_alt_outlined = NotStr('''''') +icon_chalet_round = NotStr('''''') +icon_loupe_round = NotStr('''''') +icon_videogame_asset_off_round = NotStr('''''') +icon_zoom_in_twotone = NotStr('''''') +icon_screen_lock_portrait_round = NotStr(''' + + +''') +icon_assignment_sharp = NotStr('''''') +icon_badge_filled = NotStr('''''') +icon_delete_sweep_sharp = NotStr('''''') +icon_fiber_smart_record_twotone = NotStr(''' + + +''') +icon_construction_round = NotStr('''''') +icon_auto_stories_outlined = NotStr('''''') +icon_alarm_on_round = NotStr('''''') +icon_developer_board_filled = NotStr('''''') +icon_laptop_windows_filled = NotStr('''''') +icon_cast_round = NotStr('''''') +icon_wifi_tethering_filled = NotStr('''''') +icon_west_outlined = NotStr('''''') +icon_cloud_circle_outlined = NotStr('''''') +icon_restore_from_trash_round = NotStr('''''') +icon_ios_share_twotone = NotStr(''' + + +''') +icon_departure_board_twotone = NotStr(''' + + + + +''') +icon_back_hand_round = NotStr('''''') +icon_liquor_sharp = NotStr('''''') +icon_reddit_twotone = NotStr(''' + + +''') +icon_join_full_outlined = NotStr(''' + + +''') +icon_motion_photos_off_filled = NotStr('''''') +icon_chat_bubble_outlined = NotStr('''''') +icon_install_mobile_twotone = NotStr(''' + + + +''') +icon_polymer_sharp = NotStr('''''') +icon_videocam_off_twotone = NotStr(''' + + +''') +icon_vertical_align_bottom_round = NotStr('''''') +icon_refresh_outlined = NotStr('''''') +icon_settings_bluetooth_filled = NotStr('''''') +icon_directions_railway_sharp = NotStr('''''') +icon_unsubscribe_sharp = NotStr('''''') +icon_event_busy_outlined = NotStr('''''') +icon_redo_twotone = NotStr('''''') +icon_photo_camera_front_round = NotStr('''''') +icon_list_sharp = NotStr('''''') +icon_label_filled = NotStr('''''') +icon_align_horizontal_left_twotone = NotStr('''''') +icon_stay_primary_portrait_sharp = NotStr('''''') +icon_directions_walk_sharp = NotStr('''''') +icon_umbrella_round = NotStr('''''') +icon_commit_filled = NotStr('''''') +icon_switch_left_twotone = NotStr(''' + + +''') +icon_person_remove_alt1_outlined = NotStr('''''') +icon_tab_unselected_filled = NotStr('''''') +icon_engineering_filled = NotStr('''''') +icon_eject_filled = NotStr('''''') +icon_movie_filter_filled = NotStr('''''') +icon_file_present_twotone = NotStr(''' + + + +''') +icon_shortcut_filled = NotStr('''''') +icon_north_west_round = NotStr('''''') +icon_group_work_twotone = NotStr(''' + + + + + +''') +icon_donut_small_round = NotStr('''''') +icon_trending_down_round = NotStr('''''') +icon_brunch_dining_outlined = NotStr('''''') +icon_screen_lock_portrait_outlined = NotStr('''''') +icon_receipt_outlined = NotStr('''''') +icon_stacked_bar_chart_round = NotStr('''''') +icon_remove_filled = NotStr('''''') +icon_catching_pokemon_outlined = NotStr('''''') +icon_replay_circle_filled_filled = NotStr('''''') +icon_history_toggle_off_round = NotStr('''''') +icon_arrow_circle_down_filled = NotStr('''''') +icon_rocket_filled = NotStr('''''') +icon_brightness_low_filled = NotStr('''''') +icon_no_meals_filled = NotStr('''''') +icon_format_color_reset_outlined = NotStr('''''') +icon_add_a_photo_round = NotStr(''' + + + +''') +icon_crop_rotate_filled = NotStr('''''') +icon_hdr_weak_twotone = NotStr(''' + + + +''') +icon_assistant_direction_outlined = NotStr(''' + + +''') +icon_countertops_sharp = NotStr('''''') +icon_straight_twotone = NotStr('''''') +icon_reply_all_filled = NotStr('''''') +icon_museum_round = NotStr('''''') +icon_local_offer_filled = NotStr('''''') +icon_brunch_dining_sharp = NotStr('''''') +icon_home_repair_service_filled = NotStr('''''') +icon_folder_copy_twotone = NotStr(''' + + + +''') +icon_track_changes_filled = NotStr('''''') +icon_gps_fixed_twotone = NotStr(''' + + +''') +icon_looks4_filled = NotStr('''''') +icon_pinch_sharp = NotStr('''''') +icon_rsvp_filled = NotStr('''''') +icon_percentage_filled = NotStr('''''') +icon_add_road_twotone = NotStr('''''') +icon_archive_round = NotStr('''''') +icon_picture_as_pdf_sharp = NotStr('''''') +icon_mouse_round = NotStr('''''') +icon_noise_aware_sharp = NotStr(''' + + +''') +icon_network_wifi1_bar_twotone = NotStr(''' + + +''') +icon_mobile_friendly_twotone = NotStr('''''') +icon_sync_alt_filled = NotStr('''''') +icon_work_twotone = NotStr(''' + + +''') +icon_md5_k_round = NotStr('''''') +icon_flashlight_off_filled = NotStr('''''') +icon_ads_click_sharp = NotStr('''''') +icon_swap_calls_twotone = NotStr('''''') +icon_square_outlined = NotStr('''''') +icon_lte_plus_mobiledata_outlined = NotStr('''''') +icon_all_inclusive_filled = NotStr('''''') +icon_grain_sharp = NotStr('''''') +icon_local_atm_twotone = NotStr(''' + + +''') +icon_music_note_round = NotStr('''''') +icon_opacity_sharp = NotStr('''''') +icon_warning_sharp = NotStr('''''') +icon_local_taxi_round = NotStr('''''') +icon_forward10_outlined = NotStr(''' + + +''') +icon_legend_toggle_filled = NotStr('''''') +icon_tiktok_outlined = NotStr('''''') +icon_volume_mute_round = NotStr('''''') +icon_ondemand_video_round = NotStr('''''') +icon_thumb_down_alt_round = NotStr('''''') +icon_play_circle_filled = NotStr('''''') +icon_view_day_twotone = NotStr(''' + + +''') +icon_md11_mp_filled = NotStr('''''') +icon_audiotrack_twotone = NotStr(''' + + +''') +icon_mark_unread_chat_alt_twotone = NotStr(''' + + + + +''') +icon_workspaces_filled = NotStr('''''') +icon_app_blocking_round = NotStr(''' + + +''') +icon_egg_round = NotStr('''''') +icon_sports_soccer_twotone = NotStr(''' + + +''') +icon_checkroom_twotone = NotStr('''''') +icon_home_repair_service_twotone = NotStr(''' + + +''') +icon_upcoming_twotone = NotStr(''' + + +''') +icon_album_round = NotStr('''''') +icon_soup_kitchen_filled = NotStr('''''') +icon_hdr_plus_round = NotStr(''' + + +''') +icon_center_focus_weak_filled = NotStr('''''') +icon_insert_link_outlined = NotStr('''''') +icon_folder_outlined = NotStr('''''') +icon_priority_high_outlined = NotStr(''' + + +''') +icon_developer_board_twotone = NotStr(''' + + +''') +icon_handyman_outlined = NotStr(''' + + +''') +icon_draw_round = NotStr('''''') +icon_table_bar_sharp = NotStr('''''') +icon_flutter_dash_round = NotStr('''''') +icon_perm_camera_mic_round = NotStr('''''') +icon_sports_hockey_outlined = NotStr('''''') +icon_shower_outlined = NotStr('''''') +icon_gpp_bad_sharp = NotStr('''''') +icon_contact_support_twotone = NotStr(''' + + +''') +icon_margin_filled = NotStr('''''') +icon_folder_off_round = NotStr('''''') +icon_content_cut_twotone = NotStr('''''') +icon_family_restroom_round = NotStr('''''') +icon_network_wifi_filled = NotStr('''''') +icon_flag_circle_filled = NotStr('''''') +icon_lightbulb_circle_outlined = NotStr(''' + + +''') +icon_travel_explore_twotone = NotStr('''''') +icon_play_circle_outline_outlined = NotStr('''''') +icon_egg_outlined = NotStr(''' + + +''') +icon_umbrella_filled = NotStr('''''') +icon_flight_takeoff_filled = NotStr('''''') +icon_badge_outlined = NotStr(''' + + + + +''') +icon_raw_on_twotone = NotStr('''''') +icon_punch_clock_sharp = NotStr(''' + + +''') +icon_crisis_alert_sharp = NotStr('''''') +icon_night_shelter_filled = NotStr('''''') +icon_circle_twotone = NotStr(''' + + +''') +icon_brightness_medium_outlined = NotStr('''''') +icon_ballot_sharp = NotStr('''''') +icon_male_twotone = NotStr('''''') +icon_insert_invitation_twotone = NotStr(''' + + +''') +icon_help_center_twotone = NotStr(''' + + +''') +icon_plagiarism_twotone = NotStr(''' + + + + +''') +icon_crop_free_outlined = NotStr('''''') +icon_info_sharp = NotStr('''''') +icon_add_shopping_cart_outlined = NotStr('''''') +icon_web_asset_sharp = NotStr('''''') +icon_sports_cricket_twotone = NotStr(''' + + + +''') +icon_cookie_round = NotStr('''''') +icon_report_off_outlined = NotStr(''' + + + +''') +icon_event_filled = NotStr('''''') +icon_laptop_windows_round = NotStr('''''') +icon_photo_camera_back_sharp = NotStr('''''') +icon_data_array_round = NotStr('''''') +icon_camera_rear_sharp = NotStr('''''') +icon_local_florist_outlined = NotStr('''''') +icon_local_library_twotone = NotStr(''' + + + +''') +icon_hourglass_empty_round = NotStr('''''') +icon_device_thermostat_filled = NotStr('''''') +icon_directions_walk_filled = NotStr('''''') +icon_arrow_right_alt_round = NotStr('''''') +icon_list_outlined = NotStr('''''') +icon_assessment_outlined = NotStr('''''') +icon_breakfast_dining_outlined = NotStr(''' + + +''') +icon_view_carousel_round = NotStr('''''') +icon_sports_golf_outlined = NotStr(''' + + + + + +''') +icon_email_outlined = NotStr('''''') +icon_data_saver_on_filled = NotStr('''''') +icon_check_box_outline_blank_outlined = NotStr('''''') +icon_tune_filled = NotStr('''''') +icon_web_outlined = NotStr('''''') +icon_photo_library_sharp = NotStr('''''') +icon_swap_vert_outlined = NotStr('''''') +icon_youtube_searched_for_filled = NotStr('''''') +icon_wifi_lock_round = NotStr(''' + + +''') +icon_dry_sharp = NotStr('''''') +icon_supervised_user_circle_twotone = NotStr(''' + + + +''') +icon_help_outline_filled = NotStr('''''') +icon_maps_home_work_twotone = NotStr(''' + + + + +''') +icon_history_filled = NotStr('''''') +icon_location_on_round = NotStr('''''') +icon_gps_not_fixed_round = NotStr('''''') +icon_thumb_up_alt_twotone = NotStr(''' + + +''') +icon_spoke_twotone = NotStr(''' + + +''') +icon_crop_landscape_twotone = NotStr('''''') +icon_wifi_channel_sharp = NotStr('''''') +icon_run_circle_outlined = NotStr(''' + + + +''') +icon_recycling_outlined = NotStr('''''') +icon_airline_seat_individual_suite_twotone = NotStr(''' + + + +''') +icon_insert_emoticon_twotone = NotStr(''' + + + + + +''') +icon_chat_bubble_outline_outlined = NotStr('''''') +icon_line_style_round = NotStr('''''') +icon_admin_panel_settings_twotone = NotStr(''' + + + + + +''') +icon_phone_forwarded_outlined = NotStr('''''') +icon_webhook_round = NotStr('''''') +icon_nat_twotone = NotStr(''' + + + +''') +icon_browser_updated_round = NotStr('''''') +icon_menu_open_outlined = NotStr('''''') +icon_school_filled = NotStr('''''') +icon_cruelty_free_twotone = NotStr(''' + + +''') +icon_group_remove_sharp = NotStr('''''') +icon_keyboard_arrow_up_sharp = NotStr('''''') +icon_help_center_round = NotStr('''''') +icon_next_week_outlined = NotStr('''''') +icon_garage_twotone = NotStr(''' + + + + + + +''') +icon_quora_sharp = NotStr('''''') +icon_browse_gallery_sharp = NotStr(''' + + +''') +icon_horizontal_rule_filled = NotStr('''''') +icon_link_off_sharp = NotStr('''''') +icon_sensor_door_filled = NotStr('''''') +icon_md23_mp_sharp = NotStr(''' + + +''') +icon_panorama_horizontal_filled = NotStr('''''') +icon_person_remove_twotone = NotStr(''' + + + +''') +icon_store_mall_directory_outlined = NotStr('''''') +icon_sports_motorsports_twotone = NotStr(''' + + +''') +icon_wifi_tethering_off_round = NotStr('''''') +icon_filter9_round = NotStr('''''') +icon_md60_fps_filled = NotStr('''''') +icon_portable_wifi_off_outlined = NotStr('''''') +icon_power_input_twotone = NotStr('''''') +icon_stop_outlined = NotStr('''''') +icon_av_timer_round = NotStr(''' + + + + +''') +icon_plumbing_outlined = NotStr(''' + + +''') +icon_wifi_password_sharp = NotStr('''''') +icon_screen_share_twotone = NotStr(''' + + +''') +icon_coronavirus_twotone = NotStr(''' + + +''') +icon_recent_actors_outlined = NotStr(''' + + + +''') +icon_meeting_room_sharp = NotStr('''''') +icon_motion_photos_on_sharp = NotStr('''''') +icon_colorize_filled = NotStr('''''') +icon_electric_bike_round = NotStr('''''') +icon_pets_filled = NotStr(''' + + + + + +''') +icon_wheelchair_pickup_outlined = NotStr('''''') +icon_toggle_on_filled = NotStr('''''') +icon_fast_rewind_sharp = NotStr('''''') +icon_dry_outlined = NotStr('''''') +icon_layers_clear_outlined = NotStr('''''') +icon_mode_filled = NotStr('''''') +icon_splitscreen_outlined = NotStr('''''') +icon_calendar_view_week_round = NotStr('''''') +icon_stop_screen_share_round = NotStr('''''') +icon_repeat_on_filled = NotStr('''''') +icon_perm_media_filled = NotStr('''''') +icon_sports_basketball_sharp = NotStr('''''') +icon_network_locked_sharp = NotStr('''''') +icon_mark_email_read_filled = NotStr('''''') +icon_people_outline_round = NotStr('''''') +icon_event_repeat_sharp = NotStr('''''') +icon_radio_button_unchecked_outlined = NotStr('''''') +icon_fence_twotone = NotStr(''' + + +''') +icon_corporate_fare_filled = NotStr('''''') +icon_currency_franc_filled = NotStr('''''') +icon_plagiarism_round = NotStr(''' + + +''') +icon_zoom_out_round = NotStr('''''') +icon_plumbing_round = NotStr(''' + + +''') +icon_event_available_outlined = NotStr('''''') +icon_legend_toggle_outlined = NotStr('''''') +icon_blur_linear_twotone = NotStr(''' + + + + + + + + + + + + + + +''') +icon_tab_filled = NotStr('''''') +icon_thumb_up_alt_filled = NotStr('''''') +icon_panorama_photosphere_select_sharp = NotStr('''''') +icon_currency_pound_sharp = NotStr('''''') +icon_reduce_capacity_filled = NotStr('''''') +icon_diamond_twotone = NotStr(''' + + +''') +icon_file_download_off_sharp = NotStr('''''') +icon_exposure_neg2_twotone = NotStr('''''') +icon_move_to_inbox_filled = NotStr('''''') +icon_cast_outlined = NotStr('''''') +icon_batch_prediction_round = NotStr('''''') +icon_dock_sharp = NotStr('''''') +icon_e_mobiledata_filled = NotStr('''''') +icon_rotate90_degrees_ccw_sharp = NotStr('''''') +icon_no_crash_outlined = NotStr('''''') +icon_exposure_plus2_filled = NotStr('''''') +icon_fullscreen_round = NotStr('''''') +icon_alt_route_filled = NotStr('''''') +icon_toll_twotone = NotStr(''' + + +''') +icon_call_received_round = NotStr('''''') +icon_md11_mp_outlined = NotStr(''' + + + +''') +icon_bluetooth_searching_twotone = NotStr('''''') +icon_crop32_round = NotStr('''''') +icon_greater_than_outlined = NotStr('''''') +icon_emoji_food_beverage_filled = NotStr('''''') +icon_person_search_sharp = NotStr(''' + + +''') +icon_integration_instructions_twotone = NotStr(''' + + + +''') +icon_filter_outlined = NotStr('''''') +icon_signal_wifi1_bar_sharp = NotStr(''' + + +''') +icon_contactless_round = NotStr('''''') +icon_signal_cellular0_bar_sharp = NotStr('''''') +icon_not_accessible_outlined = NotStr('''''') +icon_hdr_plus_outlined = NotStr('''''') +icon_admin_panel_settings_sharp = NotStr(''' + + +''') +icon_sports_cricket_filled = NotStr(''' + + +''') +icon_book_online_filled = NotStr('''''') +icon_system_update_alt_filled = NotStr('''''') +icon_arrow_drop_down_outlined = NotStr('''''') +icon_airline_stops_sharp = NotStr('''''') +icon_rate_review_twotone = NotStr(''' + + +''') +icon_screen_lock_rotation_twotone = NotStr('''''') +icon_area_chart_twotone = NotStr(''' + + +''') +icon_speaker_group_round = NotStr(''' + + + +''') +icon_timer10_select_twotone = NotStr('''''') +icon_not_interested_sharp = NotStr('''''') +icon_trending_down_sharp = NotStr('''''') +icon_text_increase_filled = NotStr('''''') +icon_save_as_outlined = NotStr('''''') +icon_arrow_downward_sharp = NotStr('''''') +icon_euro_symbol_twotone = NotStr('''''') +icon_network_wifi2_bar_twotone = NotStr(''' + + +''') +icon_multiline_chart_outlined = NotStr('''''') +icon_settings_input_hdmi_outlined = NotStr('''''') +icon_plumbing_filled = NotStr(''' + + +''') +icon_launch_twotone = NotStr('''''') +icon_severe_cold_sharp = NotStr('''''') +icon_contact_mail_sharp = NotStr('''''') +icon_loyalty_round = NotStr('''''') +icon_local_printshop_filled = NotStr('''''') +icon_cloud_off_round = NotStr('''''') +icon_translate_sharp = NotStr('''''') +icon_format_textdirection_r_to_l_twotone = NotStr(''' + + +''') +icon_plus_outlined = NotStr('''''') +icon_signal_cellular_connected_no_internet4_bar_filled = NotStr('''''') +icon_tty_twotone = NotStr(''' + + +''') +icon_font_download_off_round = NotStr('''''') +icon_md13_mp_round = NotStr(''' + + +''') +icon_notifications_none_twotone = NotStr(''' + + +''') +icon_turned_in_not_twotone = NotStr('''''') +icon_self_improvement_round = NotStr(''' + + +''') +icon_md30_fps_select_sharp = NotStr('''''') +icon_chevron_left_round = NotStr('''''') +icon_vpn_key_off_sharp = NotStr('''''') +icon_data_usage_sharp = NotStr('''''') +icon_speaker_phone_filled = NotStr('''''') +icon_animation_twotone = NotStr(''' + + + + +''') +icon_healing_filled = NotStr('''''') +icon_splitscreen_twotone = NotStr(''' + + +''') +icon_smart_toy_outlined = NotStr('''''') +icon_directions_railway_twotone = NotStr(''' + + +''') +icon_person_add_alt_round = NotStr('''''') +icon_auto_fix_normal_sharp = NotStr('''''') +icon_cabin_sharp = NotStr('''''') +icon_looks5_round = NotStr('''''') +icon_recommend_round = NotStr('''''') +icon_save_alt_filled = NotStr('''''') +icon_access_time_filled_filled = NotStr('''''') +icon_filter_filled = NotStr('''''') +icon_local_shipping_filled = NotStr('''''') +icon_brightness_high_outlined = NotStr(''' + + +''') +icon_add_alarm_twotone = NotStr(''' + + +''') +icon_unfold_more_filled = NotStr('''''') +icon_done_all_filled = NotStr('''''') +icon_timer_round = NotStr('''''') +icon_tsunami_round = NotStr('''''') +icon_wrong_location_round = NotStr(''' + + +''') +icon_storage_round = NotStr('''''') +icon_md60_fps_select_filled = NotStr('''''') +icon_tv_off_round = NotStr('''''') +icon_store_twotone = NotStr(''' + + +''') +icon_media_bluetooth_off_round = NotStr('''''') +icon_sell_sharp = NotStr('''''') +icon_sd_twotone = NotStr(''' + + + + +''') +icon_camera_enhance_round = NotStr('''''') +icon_signal_cellular_alt2_bar_twotone = NotStr('''''') +icon_md3_mp_outlined = NotStr(''' + + + +''') +icon_ios_share_round = NotStr(''' + + +''') +icon_superscript_round = NotStr('''''') +icon_outbox_round = NotStr(''' + + +''') +icon_share_outlined = NotStr('''''') +icon_pivot_table_chart_outlined = NotStr('''''') +icon_account_tree_sharp = NotStr('''''') +icon_fit_screen_outlined = NotStr('''''') +icon_person_pin_filled = NotStr('''''') +icon_signal_wifi_bad_outlined = NotStr('''''') +icon_science_filled = NotStr('''''') +icon_people_alt_outlined = NotStr('''''') +icon_local_parking_filled = NotStr('''''') +icon_sort_sharp = NotStr('''''') +icon_villa_round = NotStr('''''') +icon_filter4_outlined = NotStr('''''') +icon_alarm_round = NotStr('''''') +icon_sync_disabled_sharp = NotStr('''''') +icon_add_circle_sharp = NotStr('''''') +icon_thunderstorm_round = NotStr('''''') +icon_thumb_down_sharp = NotStr('''''') +icon_contacts_twotone = NotStr(''' + + +''') +icon_water_damage_filled = NotStr('''''') +icon_devices_fold_sharp = NotStr('''''') +icon_branding_watermark_filled = NotStr('''''') +icon_railway_alert_sharp = NotStr(''' + + +''') +icon_directions_bus_twotone = NotStr(''' + + + + +''') +icon_villa_twotone = NotStr(''' + + +''') +icon_downhill_skiing_filled = NotStr('''''') +icon_cottage_sharp = NotStr('''''') +icon_local_printshop_twotone = NotStr(''' + + + +''') +icon_temple_buddhist_twotone = NotStr(''' + + +''') +icon_battery_std_round = NotStr('''''') +icon_camera_roll_sharp = NotStr('''''') +icon_flashlight_on_filled = NotStr('''''') +icon_add_location_alt_twotone = NotStr(''' + + +''') +icon_tonality_outlined = NotStr('''''') +icon_private_connectivity_filled = NotStr('''''') +icon_php_round = NotStr('''''') +icon_stay_primary_portrait_filled = NotStr('''''') +icon_sanitizer_outlined = NotStr('''''') +icon_security_filled = NotStr('''''') +icon_extension_sharp = NotStr('''''') +icon_psychology_outlined = NotStr(''' + + +''') +icon_md13_mp_sharp = NotStr(''' + + +''') +icon_motion_photos_on_outlined = NotStr('''''') +icon_bookmarks_round = NotStr('''''') +icon_redo_sharp = NotStr('''''') +icon_assignment_returned_outlined = NotStr('''''') +icon_bluetooth_connected_outlined = NotStr('''''') +icon_pin_end_filled = NotStr('''''') +icon_video_call_twotone = NotStr(''' + + +''') +icon_turn_sharp_left_sharp = NotStr('''''') +icon_currency_yuan_sharp = NotStr('''''') +icon_broken_image_round = NotStr('''''') +icon_play_circle_filled_filled = NotStr('''''') +icon_snowboarding_twotone = NotStr('''''') +icon_auto_awesome_mosaic_twotone = NotStr(''' + + +''') +icon_align_vertical_top_sharp = NotStr('''''') +icon_filter7_filled = NotStr('''''') +icon_compress_outlined = NotStr('''''') +icon_density_small_round = NotStr('''''') +icon_movie_creation_outlined = NotStr('''''') +icon_houseboat_outlined = NotStr('''''') +icon_play_lesson_sharp = NotStr(''' + + +''') +icon_expand_round = NotStr('''''') +icon_stay_primary_landscape_filled = NotStr('''''') +icon_hdr_weak_round = NotStr('''''') +icon_border_color_filled = NotStr('''''') +icon_add_road_round = NotStr('''''') +icon_social_distance_filled = NotStr('''''') +icon_keyboard_arrow_down_sharp = NotStr('''''') +icon_do_disturb_on_twotone = NotStr(''' + + +''') +icon_signal_cellular3_bar_twotone = NotStr(''' + + +''') +icon_border_vertical_filled = NotStr('''''') +icon_safety_check_round = NotStr('''''') +icon_event_busy_filled = NotStr('''''') +icon_schedule_send_round = NotStr(''' + + +''') +icon_backup_table_filled = NotStr(''' + + +''') +icon_md5_k_plus_twotone = NotStr(''' + + + +''') +icon_polyline_sharp = NotStr('''''') +icon_open_in_full_twotone = NotStr('''''') +icon_fmd_good_outlined = NotStr('''''') +icon_vertical_align_center_round = NotStr('''''') +icon_money_off_csred_twotone = NotStr('''''') +icon_directions_walk_outlined = NotStr('''''') +icon_folder_off_filled = NotStr('''''') +icon_closed_caption_off_sharp = NotStr('''''') +icon_bluetooth_disabled_outlined = NotStr('''''') +icon_money_off_csred_outlined = NotStr('''''') +icon_deselect_twotone = NotStr('''''') +icon_group_off_twotone = NotStr(''' + + +''') +icon_present_to_all_outlined = NotStr('''''') +icon_plus_minus_filled = NotStr('''''') +icon_insert_photo_twotone = NotStr(''' + + +''') +icon_phone_in_talk_filled = NotStr('''''') +icon_extension_round = NotStr('''''') +icon_door_back_sharp = NotStr('''''') +icon_wb_twilight_twotone = NotStr('''''') +icon_breakfast_dining_twotone = NotStr(''' + + + +''') +icon_access_alarms_twotone = NotStr(''' + + +''') +icon_shutter_speed_twotone = NotStr(''' + + +''') +icon_mic_twotone = NotStr(''' + + + +''') +icon_shower_twotone = NotStr(''' + + + + + + + + +''') +icon_next_plan_outlined = NotStr(''' + + +''') +icon_event_seat_twotone = NotStr(''' + + +''') +icon_g_translate_sharp = NotStr('''''') +icon_log_out_sharp = NotStr(''' + + +''') +icon_grass_round = NotStr('''''') +icon_connect_without_contact_outlined = NotStr('''''') +icon_currency_franc_round = NotStr('''''') +icon_filter5_sharp = NotStr('''''') +icon_hdr_auto_select_filled = NotStr(''' + + +''') +icon_phonelink_ring_sharp = NotStr('''''') +icon_javascript_outlined = NotStr('''''') +icon_person_add_sharp = NotStr('''''') +icon_insert_drive_file_twotone = NotStr(''' + + +''') +icon_nightlife_sharp = NotStr('''''') +icon_star_outline_filled = NotStr('''''') +icon_thumb_down_off_alt_filled = NotStr('''''') +icon_phone_android_round = NotStr('''''') +icon_pause_circle_outline_twotone = NotStr('''''') +icon_app_blocking_sharp = NotStr(''' + + +''') +icon_looks6_sharp = NotStr('''''') +icon_burst_mode_twotone = NotStr(''' + + +''') +icon_fingerprint_round = NotStr('''''') +icon_memory_outlined = NotStr('''''') +icon_category_twotone = NotStr(''' + + + +''') +icon_signal_wifi1_bar_round = NotStr(''' + + +''') +icon_handshake_outlined = NotStr('''''') +icon_tv_off_sharp = NotStr('''''') +icon_switch_access_shortcut_add_round = NotStr('''''') +icon_code_off_sharp = NotStr('''''') +icon_waves_outlined = NotStr('''''') +icon_cyclone_filled = NotStr(''' + + +''') +icon_notification_important_sharp = NotStr('''''') +icon_device_thermostat_twotone = NotStr('''''') +icon_alarm_on_sharp = NotStr('''''') +icon_synagogue_round = NotStr('''''') +icon_bedtime_off_filled = NotStr('''''') +icon_assignment_turned_in_filled = NotStr('''''') +icon_network_wifi3_bar_sharp = NotStr('''''') +icon_vertical_align_bottom_sharp = NotStr('''''') +icon_fullscreen_filled = NotStr('''''') +icon_accessibility_new_sharp = NotStr('''''') +icon_data_exploration_filled = NotStr('''''') +icon_toc_sharp = NotStr('''''') +icon_filter_drama_outlined = NotStr('''''') +icon_panorama_vertical_twotone = NotStr(''' + + +''') +icon_electric_bike_outlined = NotStr('''''') +icon_border_all_filled = NotStr('''''') +icon_description_twotone = NotStr(''' + + +''') +icon_strikethrough_s_round = NotStr('''''') +icon_location_searching_twotone = NotStr('''''') +icon_comment_outlined = NotStr('''''') +icon_wifi_tethering_error_rounded_outlined = NotStr('''''') +icon_keyboard_alt_sharp = NotStr('''''') +icon_paypal_outlined = NotStr(''' + + +''') +icon_mosque_round = NotStr(''' + + +''') +icon_directions_run_sharp = NotStr('''''') +icon_castle_round = NotStr('''''') +icon_no_transfer_twotone = NotStr(''' + + +''') +icon_aspect_ratio_twotone = NotStr(''' + + +''') +icon_attractions_filled = NotStr('''''') +icon_cloud_circle_twotone = NotStr(''' + + +''') +icon_arrow_forward_ios_twotone = NotStr('''''') +icon_pause_circle_sharp = NotStr('''''') +icon_calculate_twotone = NotStr(''' + + + +''') +icon_auto_awesome_twotone = NotStr(''' + + +''') +icon_group_add_outlined = NotStr('''''') +icon_send_and_archive_round = NotStr(''' + + +''') +icon_menu_twotone = NotStr('''''') +icon_severe_cold_outlined = NotStr('''''') +icon_send_and_archive_filled = NotStr('''''') +icon_flight_class_filled = NotStr('''''') +icon_poll_twotone = NotStr(''' + + +''') +icon_monetization_on_twotone = NotStr(''' + + +''') +icon_text_rotate_up_twotone = NotStr('''''') +icon_rotate_right_sharp = NotStr('''''') +icon_swap_horizontal_circle_round = NotStr('''''') +icon_music_note_sharp = NotStr('''''') +icon_leak_add_twotone = NotStr('''''') +icon_sports_golf_filled = NotStr(''' + + + + + +''') +icon_md3_k_filled = NotStr('''''') +icon_cast_for_education_round = NotStr('''''') +icon_swipe_sharp = NotStr(''' + + +''') +icon_mode_edit_round = NotStr('''''') +icon_pinch_outlined = NotStr('''''') +icon_flight_class_sharp = NotStr('''''') +icon_fingerprint_outlined = NotStr('''''') +icon_loyalty_filled = NotStr('''''') +icon_bedroom_child_twotone = NotStr(''' + + + +''') +icon_manage_history_sharp = NotStr('''''') +icon_system_security_update_good_sharp = NotStr('''''') +icon_pending_actions_round = NotStr('''''') +icon_donut_large_round = NotStr('''''') +icon_try_filled = NotStr('''''') +icon_panorama_horizontal_select_twotone = NotStr(''' + + +''') +icon_turned_in_twotone = NotStr(''' + + +''') +icon_compare_filled = NotStr('''''') +icon_md6_mp_outlined = NotStr(''' + + + +''') +icon_check_round = NotStr('''''') +icon_soap_filled = NotStr('''''') +icon_alarm_on_outlined = NotStr('''''') +icon_notification_important_outlined = NotStr('''''') +icon_brightness6_filled = NotStr('''''') +icon_media_bluetooth_on_round = NotStr('''''') +icon_ring_volume_round = NotStr('''''') +icon_md18_mp_twotone = NotStr(''' + + + + + + +''') +icon_piano_off_outlined = NotStr('''''') +icon_pin_end_outlined = NotStr('''''') +icon_shopping_cart_checkout_round = NotStr('''''') +icon_view_kanban_twotone = NotStr(''' + + + +''') +icon_medical_services_outlined = NotStr(''' + + +''') +icon_colorize_outlined = NotStr('''''') +icon_update_round = NotStr('''''') +icon_sports_handball_sharp = NotStr(''' + + +''') +icon_south_east_sharp = NotStr('''''') +icon_app_blocking_outlined = NotStr(''' + + +''') +icon_cake_outlined = NotStr('''''') +icon_greater_than_filled = NotStr('''''') +icon_co_present_round = NotStr(''' + + + +''') +icon_cancel_outlined = NotStr('''''') +icon_warehouse_round = NotStr('''''') +icon_filter_alt_filled = NotStr('''''') +icon_directions_run_twotone = NotStr('''''') +icon_all_out_twotone = NotStr(''' + + +''') +icon_turn_slight_left_sharp = NotStr('''''') +icon_airlines_twotone = NotStr(''' + + +''') +icon_keyboard_command_key_round = NotStr('''''') +icon_minus_twotone = NotStr('''''') +icon_reddit_sharp = NotStr(''' + + +''') +icon_music_note_filled = NotStr('''''') +icon_commit_twotone = NotStr('''''') +icon_indeterminate_check_box_outlined = NotStr('''''') +icon_short_text_twotone = NotStr('''''') +icon_class_outlined = NotStr('''''') +icon_kitesurfing_sharp = NotStr('''''') +icon_elderly_sharp = NotStr('''''') +icon_fullscreen_exit_filled = NotStr('''''') +icon_cabin_twotone = NotStr(''' + + +''') +icon_push_pin_round = NotStr('''''') +icon_work_round = NotStr('''''') +icon_open_in_full_outlined = NotStr('''''') +icon_sync_lock_outlined = NotStr('''''') +icon_flag_filled = NotStr('''''') +icon_soap_twotone = NotStr(''' + + +''') +icon_center_focus_weak_round = NotStr('''''') +icon_child_care_outlined = NotStr(''' + + + +''') +icon_view_kanban_round = NotStr('''''') +icon_post_add_round = NotStr(''' + + +''') +icon_thumb_down_off_alt_round = NotStr('''''') +icon_spatial_tracking_outlined = NotStr(''' + + +''') +icon_camera_alt_round = NotStr(''' + + +''') +icon_videogame_asset_off_outlined = NotStr('''''') +icon_forward10_twotone = NotStr(''' + + +''') +icon_replay_round = NotStr('''''') +icon_free_breakfast_outlined = NotStr('''''') +icon_tablet_filled = NotStr('''''') +icon_sim_card_download_filled = NotStr('''''') +icon_density_small_sharp = NotStr('''''') +icon_payments_filled = NotStr('''''') +icon_subscript_twotone = NotStr('''''') +icon_mediation_round = NotStr('''''') +icon_assistant_photo_filled = NotStr('''''') +icon_fast_rewind_round = NotStr('''''') +icon_switch_video_outlined = NotStr('''''') +icon_play_circle_outline_sharp = NotStr('''''') +icon_webhook_sharp = NotStr('''''') +icon_lan_round = NotStr('''''') +icon_low_priority_outlined = NotStr('''''') +icon_personal_injury_round = NotStr('''''') +icon_keyboard_capslock_twotone = NotStr('''''') +icon_brush_filled = NotStr('''''') +icon_settings_ethernet_twotone = NotStr('''''') +icon_add_round = NotStr('''''') +icon_hdr_off_select_filled = NotStr('''''') +icon_filter9_outlined = NotStr('''''') +icon_turn_left_outlined = NotStr('''''') +icon_replay5_round = NotStr('''''') +icon_subscriptions_sharp = NotStr('''''') +icon_share_arrival_time_outlined = NotStr('''''') +icon_thumb_up_alt_round = NotStr('''''') +icon_headset_mic_round = NotStr('''''') +icon_text_rotation_angleup_sharp = NotStr('''''') +icon_help_outline_twotone = NotStr('''''') +icon_hiking_filled = NotStr('''''') +icon_text_fields_round = NotStr('''''') +icon_flash_off_outlined = NotStr('''''') +icon_crib_filled = NotStr('''''') +icon_md24_mp_sharp = NotStr(''' + + +''') +icon_photo_filled = NotStr('''''') +icon_phone_disabled_outlined = NotStr('''''') +icon_donut_large_outlined = NotStr('''''') +icon_developer_board_outlined = NotStr('''''') +icon_south_east_outlined = NotStr('''''') +icon_timelapse_sharp = NotStr('''''') +icon_edgesensor_low_twotone = NotStr(''' + + +''') +icon_electric_scooter_filled = NotStr(''' + + +''') +icon_swipe_down_sharp = NotStr('''''') +icon_railway_alert_filled = NotStr('''''') +icon_moving_outlined = NotStr('''''') +icon_save_alt_sharp = NotStr('''''') +icon_scatter_plot_filled = NotStr(''' + + + +''') +icon_note_twotone = NotStr(''' + + +''') +icon_date_range_sharp = NotStr('''''') +icon_hearing_disabled_round = NotStr('''''') +icon_desktop_windows_sharp = NotStr('''''') +icon_subtitles_off_sharp = NotStr('''''') +icon_switch_video_round = NotStr('''''') +icon_add_twotone = NotStr('''''') +icon_fiber_new_twotone = NotStr(''' + + + +''') +icon_check_circle_filled = NotStr('''''') +icon_call_missed_outgoing_round = NotStr('''''') +icon_south_america_outlined = NotStr('''''') +icon_unfold_less_sharp = NotStr('''''') +icon_sd_storage_sharp = NotStr('''''') +icon_home_filled = NotStr('''''') +icon_discount_sharp = NotStr(''' + + +''') +icon_download_outlined = NotStr('''''') +icon_display_settings_twotone = NotStr(''' + + + +''') +icon_laptop_mac_round = NotStr('''''') +icon_edit_outlined = NotStr('''''') +icon_subscriptions_filled = NotStr('''''') +icon_compress_round = NotStr('''''') +icon_repeat_one_sharp = NotStr('''''') +icon_error_outline_sharp = NotStr('''''') +icon_filter1_twotone = NotStr(''' + + +''') +icon_crop_original_twotone = NotStr('''''') +icon_card_membership_outlined = NotStr('''''') +icon_vertical_split_filled = NotStr('''''') +icon_last_page_filled = NotStr('''''') +icon_cleaning_services_filled = NotStr('''''') +icon_panorama_wide_angle_outlined = NotStr('''''') +icon_text_rotate_vertical_sharp = NotStr('''''') +icon_pregnant_woman_filled = NotStr('''''') +icon_local_dining_twotone = NotStr('''''') +icon_checklist_rtl_outlined = NotStr('''''') +icon_local_convenience_store_filled = NotStr('''''') +icon_fence_outlined = NotStr('''''') +icon_sports_football_outlined = NotStr(''' + + +''') +icon_settings_bluetooth_sharp = NotStr('''''') +icon_military_tech_outlined = NotStr('''''') +icon_local_library_sharp = NotStr('''''') +icon_shutter_speed_outlined = NotStr('''''') +icon_gavel_twotone = NotStr('''''') +icon_sos_sharp = NotStr('''''') +icon_battery20_twotone = NotStr(''' + + +''') +icon_bike_scooter_twotone = NotStr(''' + + +''') +icon_edit_off_round = NotStr('''''') +icon_library_music_twotone = NotStr(''' + + +''') +icon_pan_tool_alt_twotone = NotStr(''' + + +''') +icon_battery_full_outlined = NotStr('''''') +icon_looks4_sharp = NotStr('''''') +icon_reduce_capacity_sharp = NotStr('''''') +icon_battery_charging60_outlined = NotStr(''' + + +''') +icon_mms_round = NotStr('''''') +icon_vibration_round = NotStr('''''') +icon_outlined_flag_filled = NotStr('''''') +icon_settings_backup_restore_filled = NotStr('''''') +icon_sim_card_alert_sharp = NotStr('''''') +icon_dynamic_feed_outlined = NotStr(''' + + +''') +icon_voice_over_off_sharp = NotStr('''''') +icon_notification_add_filled = NotStr('''''') +icon_bloodtype_round = NotStr('''''') +icon_directions_railway_filled = NotStr('''''') +icon_view_day_round = NotStr('''''') +icon_exposure_plus1_outlined = NotStr('''''') +icon_money_round = NotStr('''''') +icon_vaccines_twotone = NotStr(''' + + +''') +icon_apartment_round = NotStr('''''') +icon_density_small_twotone = NotStr('''''') +icon_network_cell_filled = NotStr('''''') +icon_mark_chat_unread_filled = NotStr('''''') +icon_dynamic_form_round = NotStr('''''') +icon_camera_enhance_outlined = NotStr('''''') +icon_greater_than_equal_sharp = NotStr(''' + + +''') +icon_photo_size_select_large_sharp = NotStr('''''') +icon_cloud_off_outlined = NotStr('''''') +icon_settings_input_component_outlined = NotStr('''''') +icon_policy_sharp = NotStr(''' + + +''') +icon_map_round = NotStr('''''') +icon_play_circle_filled_white_twotone = NotStr(''' + + +''') +icon_expand_less_twotone = NotStr('''''') +icon_explicit_outlined = NotStr('''''') +icon_crop_free_sharp = NotStr('''''') +icon_no_flash_round = NotStr('''''') +icon_message_twotone = NotStr(''' + + +''') +icon_move_to_inbox_twotone = NotStr(''' + + +''') +icon_drive_folder_upload_twotone = NotStr(''' + + + +''') +icon_currency_yen_round = NotStr('''''') +icon_repeat_one_on_filled = NotStr('''''') +icon_content_paste_filled = NotStr('''''') +icon_search_off_twotone = NotStr(''' + + +''') +icon_assessment_round = NotStr('''''') +icon_local_laundry_service_sharp = NotStr('''''') +icon_loupe_twotone = NotStr(''' + + +''') +icon_cable_round = NotStr('''''') +icon_domain_add_outlined = NotStr('''''') +icon_qr_code_scanner_twotone = NotStr('''''') +icon_wc_sharp = NotStr('''''') +icon_do_not_disturb_off_outlined = NotStr(''' + + +''') +icon_elderly_twotone = NotStr('''''') +icon_local_airport_sharp = NotStr('''''') +icon_autorenew_twotone = NotStr('''''') +icon_signal_wifi_statusbar_null_filled = NotStr('''''') +icon_vape_free_twotone = NotStr(''' + + +''') +icon_view_cozy_round = NotStr('''''') +icon_control_camera_outlined = NotStr(''' + + +''') +icon_md60_fps_select_round = NotStr('''''') +icon_md16_mp_sharp = NotStr(''' + + + +''') +icon_blur_off_outlined = NotStr(''' + + + + + + + + + + + + + +''') +icon_crop_din_sharp = NotStr('''''') +icon_mobile_friendly_outlined = NotStr('''''') +icon_install_desktop_sharp = NotStr(''' + + +''') +icon_party_mode_sharp = NotStr('''''') +icon_pageview_twotone = NotStr(''' + + +''') +icon_border_color_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet1_bar_outlined = NotStr(''' + + +''') +icon_dark_mode_outlined = NotStr('''''') +icon_turn_right_filled = NotStr('''''') +icon_output_outlined = NotStr(''' + + +''') +icon_insert_page_break_twotone = NotStr(''' + + + +''') +icon_swap_vert_sharp = NotStr('''''') +icon_rowing_outlined = NotStr('''''') +icon_stacked_bar_chart_twotone = NotStr('''''') +icon_closed_caption_off_round = NotStr('''''') +icon_car_repair_round = NotStr('''''') +icon_cached_filled = NotStr('''''') +icon_amp_stories_sharp = NotStr('''''') +icon_saved_search_round = NotStr(''' + + +''') +icon_inventory_outlined = NotStr(''' + + +''') +icon_do_disturb_outlined = NotStr('''''') +icon_text_rotation_none_outlined = NotStr('''''') +icon_arrow_back_sharp = NotStr('''''') +icon_exposure_filled = NotStr('''''') +icon_brunch_dining_twotone = NotStr(''' + + +''') +icon_beach_access_round = NotStr('''''') +icon_pause_circle_twotone = NotStr(''' + + + +''') +icon_input_round = NotStr('''''') +icon_low_priority_twotone = NotStr('''''') +icon_storefront_round = NotStr('''''') +icon_remember_me_outlined = NotStr(''' + + +''') +icon_factory_outlined = NotStr('''''') +icon_swipe_down_alt_round = NotStr('''''') +icon_pivot_table_chart_filled = NotStr('''''') +icon_hvac_twotone = NotStr(''' + + + +''') +icon_radio_round = NotStr('''''') +icon_stadium_filled = NotStr('''''') +icon_subject_twotone = NotStr('''''') +icon_travel_explore_sharp = NotStr('''''') +icon_wifi_tethering_error_outlined = NotStr('''''') +icon_wrong_location_sharp = NotStr(''' + + +''') +icon_storm_round = NotStr('''''') +icon_medical_information_filled = NotStr('''''') +icon_feed_round = NotStr('''''') +icon_horizontal_distribute_twotone = NotStr('''''') +icon_chat_bubble_outline_sharp = NotStr('''''') +icon_tablet_android_twotone = NotStr(''' + + +''') +icon_signal_wifi_statusbar4_bar_twotone = NotStr('''''') +icon_upload_filled = NotStr('''''') +icon_folder_special_twotone = NotStr(''' + + +''') +icon_villa_outlined = NotStr('''''') +icon_fiber_smart_record_round = NotStr(''' + + +''') +icon_signal_wifi_statusbar4_bar_sharp = NotStr('''''') +icon_monetization_on_outlined = NotStr('''''') +icon_chat_bubble_outline_filled = NotStr('''''') +icon_rule_outlined = NotStr('''''') +icon_exposure_zero_sharp = NotStr('''''') +icon_signal_wifi2_bar_lock_twotone = NotStr(''' + + +''') +icon_md12_mp_filled = NotStr('''''') +icon_work_sharp = NotStr('''''') +icon_face_retouching_natural_filled = NotStr(''' + + + + +''') +icon_crop_outlined = NotStr('''''') +icon_edit_attributes_round = NotStr('''''') +icon_directions_round = NotStr('''''') +icon_subdirectory_arrow_left_round = NotStr('''''') +icon_language_twotone = NotStr(''' + + +''') +icon_phone_android_twotone = NotStr(''' + + +''') +icon_photo_camera_back_outlined = NotStr(''' + + +''') +icon_camera_outdoor_outlined = NotStr('''''') +icon_align_vertical_bottom_sharp = NotStr('''''') +icon_battery_charging50_filled = NotStr(''' + + +''') +icon_border_clear_twotone = NotStr('''''') +icon_countertops_round = NotStr('''''') +icon_bedroom_parent_sharp = NotStr(''' + + +''') +icon_crop_free_filled = NotStr('''''') +icon_room_preferences_sharp = NotStr('''''') +icon_settings_input_svideo_round = NotStr(''' + + + + + + +''') +icon_skateboarding_round = NotStr('''''') +icon_escalator_warning_sharp = NotStr('''''') +icon_pageview_sharp = NotStr('''''') +icon_signal_wifi_off_sharp = NotStr('''''') +icon_shuffle_filled = NotStr('''''') +icon_notes_twotone = NotStr('''''') +icon_question_mark_twotone = NotStr('''''') +icon_share_location_filled = NotStr(''' + + +''') +icon_question_mark_filled = NotStr('''''') +icon_slideshow_round = NotStr('''''') +icon_format_strikethrough_filled = NotStr('''''') +icon_power_settings_new_filled = NotStr('''''') +icon_star_round = NotStr('''''') +icon_auto_delete_outlined = NotStr(''' + + +''') +icon_settings_brightness_round = NotStr('''''') +icon_format_color_fill_twotone = NotStr('''''') +icon_hdr_on_twotone = NotStr('''''') +icon_data_usage_twotone = NotStr('''''') +icon_add_moderator_outlined = NotStr(''' + + +''') +icon_web_asset_twotone = NotStr(''' + + +''') +icon_report_off_filled = NotStr('''''') +icon_network_wifi2_bar_sharp = NotStr('''''') +icon_format_clear_outlined = NotStr('''''') +icon_taxi_alert_round = NotStr(''' + + +''') +icon_signal_cellular_alt2_bar_outlined = NotStr('''''') +icon_warehouse_sharp = NotStr('''''') +icon_near_me_sharp = NotStr('''''') +icon_cookie_sharp = NotStr('''''') +icon_music_off_sharp = NotStr('''''') +icon_tiktok_round = NotStr('''''') +icon_do_disturb_off_outlined = NotStr('''''') +icon_swipe_left_alt_round = NotStr('''''') +icon_highlight_alt_filled = NotStr('''''') +icon_border_clear_filled = NotStr('''''') +icon_maps_ugc_outlined = NotStr(''' + + +''') +icon_alarm_off_twotone = NotStr('''''') +icon_send_outlined = NotStr('''''') +icon_zoom_out_map_twotone = NotStr('''''') +icon_dirty_lens_outlined = NotStr(''' + + +''') +icon_network_wifi2_bar_round = NotStr('''''') +icon_copyright_filled = NotStr('''''') +icon_hearing_twotone = NotStr(''' + + + +''') +icon_build_circle_twotone = NotStr(''' + + + +''') +icon_translate_round = NotStr('''''') +icon_electric_moped_filled = NotStr(''' + + +''') +icon_countertops_twotone = NotStr(''' + + +''') +icon_filter4_sharp = NotStr('''''') +icon_adjust_filled = NotStr('''''') +icon_border_right_round = NotStr('''''') +icon_sanitizer_round = NotStr('''''') +icon_flatware_twotone = NotStr('''''') +icon_flash_auto_twotone = NotStr('''''') +icon_outbond_outlined = NotStr('''''') +icon_fit_screen_filled = NotStr('''''') +icon_usb_outlined = NotStr('''''') +icon_money_off_sharp = NotStr('''''') +icon_attachment_sharp = NotStr('''''') +icon_more_time_outlined = NotStr(''' + + + +''') +icon_business_round = NotStr('''''') +icon_delivery_dining_round = NotStr(''' + + +''') +icon_deck_twotone = NotStr(''' + + + +''') +icon_campaign_sharp = NotStr('''''') +icon_laptop_mac_filled = NotStr('''''') +icon_language_round = NotStr('''''') +icon_featured_video_twotone = NotStr(''' + + +''') +icon_chat_bubble_filled = NotStr('''''') +icon_turn_sharp_left_twotone = NotStr('''''') +icon_forum_sharp = NotStr('''''') +icon_subdirectory_arrow_right_sharp = NotStr('''''') +icon_fort_filled = NotStr('''''') +icon_sports_volleyball_filled = NotStr('''''') +icon_signal_cellular_alt_round = NotStr('''''') +icon_arrow_right_alt_filled = NotStr('''''') +icon_explore_round = NotStr('''''') +icon_input_outlined = NotStr('''''') +icon_fork_right_twotone = NotStr('''''') +icon_transgender_filled = NotStr('''''') +icon_lightbulb_round = NotStr('''''') +icon_tty_sharp = NotStr('''''') +icon_family_restroom_filled = NotStr('''''') +icon_devices_other_twotone = NotStr(''' + + + +''') +icon_layers_sharp = NotStr('''''') +icon_desktop_mac_outlined = NotStr('''''') +icon_grid_off_round = NotStr('''''') +icon_date_range_filled = NotStr('''''') +icon_no_crash_twotone = NotStr(''' + + +''') +icon_currency_exchange_twotone = NotStr('''''') +icon_eco_sharp = NotStr('''''') +icon_mic_external_off_sharp = NotStr('''''') +icon_gpp_bad_round = NotStr('''''') +icon_downloading_sharp = NotStr('''''') +icon_discord_round = NotStr('''''') +icon_receipt_long_twotone = NotStr(''' + + + +''') +icon_smart_toy_twotone = NotStr(''' + + + + + +''') +icon_duo_sharp = NotStr('''''') +icon_md20_mp_round = NotStr(''' + + +''') +icon_currency_ruble_filled = NotStr('''''') +icon_reorder_round = NotStr('''''') +icon_alarm_add_round = NotStr('''''') +icon_leak_add_outlined = NotStr('''''') +icon_desktop_mac_round = NotStr('''''') +icon_face_retouching_off_sharp = NotStr(''' + + +''') +icon_plagiarism_outlined = NotStr(''' + + +''') +icon_print_round = NotStr('''''') +icon_no_backpack_filled = NotStr('''''') +icon_pentagon_sharp = NotStr('''''') +icon_swipe_left_twotone = NotStr(''' + + +''') +icon_upload_outlined = NotStr('''''') +icon_drive_file_move_rtl_sharp = NotStr('''''') +icon_arrow_forward_twotone = NotStr('''''') +icon_pause_filled = NotStr('''''') +icon_md6_ft_apart_sharp = NotStr('''''') +icon_forward_to_inbox_filled = NotStr('''''') +icon_fireplace_twotone = NotStr(''' + + + +''') +icon_book_twotone = NotStr(''' + + +''') +icon_perm_scan_wifi_sharp = NotStr('''''') +icon_square_foot_round = NotStr('''''') +icon_hd_outlined = NotStr('''''') +icon_key_off_round = NotStr('''''') +icon_maximize_round = NotStr('''''') +icon_timer_off_outlined = NotStr(''' + + +''') +icon_sports_cricket_outlined = NotStr('''''') +icon_battery80_outlined = NotStr(''' + + +''') +icon_delete_forever_filled = NotStr('''''') +icon_thumbs_up_down_twotone = NotStr(''' + + +''') +icon_currency_rupee_outlined = NotStr('''''') +icon_point_of_sale_twotone = NotStr(''' + + +''') +icon_https_filled = NotStr('''''') +icon_video_camera_front_filled = NotStr('''''') +icon_nature_people_filled = NotStr('''''') +icon_settings_input_svideo_sharp = NotStr('''''') +icon_crop32_sharp = NotStr('''''') +icon_category_outlined = NotStr('''''') +icon_important_devices_outlined = NotStr('''''') +icon_child_care_filled = NotStr(''' + + + +''') +icon_anchor_twotone = NotStr('''''') +icon_event_available_twotone = NotStr(''' + + +''') +icon_switch_access_shortcut_round = NotStr('''''') +icon_coffee_maker_filled = NotStr(''' + + +''') +icon_phone_forwarded_filled = NotStr('''''') +icon_file_download_done_twotone = NotStr('''''') +icon_festival_twotone = NotStr(''' + + +''') +icon_cached_sharp = NotStr('''''') +icon_no_sim_twotone = NotStr(''' + + + + +''') +icon_drafts_outlined = NotStr('''''') +icon_remember_me_round = NotStr(''' + + +''') +icon_cast_connected_round = NotStr('''''') +icon_sports_volleyball_outlined = NotStr('''''') +icon_phone_bluetooth_speaker_sharp = NotStr('''''') +icon_text_rotation_none_twotone = NotStr('''''') +icon_extension_off_twotone = NotStr(''' + + +''') +icon_do_not_step_round = NotStr('''''') +icon_traffic_outlined = NotStr('''''') +icon_greater_than_round = NotStr('''''') +icon_savings_sharp = NotStr('''''') +icon_surround_sound_round = NotStr('''''') +icon_settings_brightness_sharp = NotStr('''''') +icon_subscript_filled = NotStr('''''') +icon_add_comment_sharp = NotStr('''''') +icon_battery_std_sharp = NotStr('''''') +icon_moped_twotone = NotStr(''' + + + +''') +icon_md2_k_plus_outlined = NotStr(''' + + +''') +icon_keyboard_return_twotone = NotStr('''''') +icon_directions_railway_filled_sharp = NotStr('''''') +icon_free_cancellation_filled = NotStr('''''') +icon_snowmobile_twotone = NotStr(''' + + +''') +icon_stop_filled = NotStr('''''') +icon_view_list_filled = NotStr('''''') +icon_paid_twotone = NotStr(''' + + + +''') +icon_list_alt_filled = NotStr('''''') +icon_drag_indicator_round = NotStr('''''') +icon_flag_circle_outlined = NotStr(''' + + +''') +icon_wifi_tethering_off_outlined = NotStr('''''') +icon_drive_folder_upload_sharp = NotStr('''''') +icon_screen_lock_landscape_sharp = NotStr('''''') +icon_generating_tokens_outlined = NotStr('''''') +icon_md3_g_mobiledata_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet3_bar_round = NotStr(''' + + +''') +icon_domain_twotone = NotStr(''' + + +''') +icon_theater_comedy_filled = NotStr(''' + + +''') +icon_comment_round = NotStr('''''') +icon_sync_twotone = NotStr('''''') +icon_person_pin_twotone = NotStr(''' + + +''') +icon_pause_presentation_round = NotStr('''''') +icon_rule_folder_round = NotStr('''''') +icon_water_sharp = NotStr('''''') +icon_text_decrease_sharp = NotStr('''''') +icon_format_quote_twotone = NotStr(''' + + +''') +icon_devices_other_outlined = NotStr('''''') +icon_build_sharp = NotStr('''''') +icon_text_rotate_up_filled = NotStr('''''') +icon_add_photo_alternate_sharp = NotStr('''''') +icon_tv_outlined = NotStr('''''') +icon_not_started_outlined = NotStr('''''') +icon_speaker_notes_off_twotone = NotStr(''' + + +''') +icon_chair_alt_twotone = NotStr(''' + + +''') +icon_sports_score_twotone = NotStr('''''') +icon_watch_round = NotStr('''''') +icon_directions_transit_filled_sharp = NotStr('''''') +icon_attribution_filled = NotStr(''' + + + +''') +icon_markunread_round = NotStr('''''') +icon_remember_me_sharp = NotStr(''' + + +''') +icon_md3_k_outlined = NotStr(''' + + +''') +icon_less_than_equal_twotone = NotStr(''' + + +''') +icon_signal_cellular1_bar_outlined = NotStr(''' + + +''') +icon_view_comfy_twotone = NotStr(''' + + +''') +icon_yard_filled = NotStr(''' + + +''') +icon_account_balance_round = NotStr('''''') +icon_pentagon_outlined = NotStr('''''') +icon_face_retouching_natural_twotone = NotStr(''' + + + + + +''') +icon_auto_awesome_motion_filled = NotStr('''''') +icon_reply_all_outlined = NotStr('''''') +icon_swipe_left_sharp = NotStr('''''') +icon_md2_k_plus_sharp = NotStr('''''') +icon_close_outlined = NotStr('''''') +icon_heart_broken_sharp = NotStr('''''') +icon_directions_bus_round = NotStr('''''') +icon_do_not_touch_outlined = NotStr('''''') +icon_auto_awesome_motion_twotone = NotStr(''' + + + +''') +icon_speed_filled = NotStr('''''') +icon_security_update_outlined = NotStr('''''') +icon_telegram_twotone = NotStr('''''') +icon_escalator_outlined = NotStr('''''') +icon_toys_twotone = NotStr(''' + + +''') +icon_g_translate_round = NotStr('''''') +icon_crib_sharp = NotStr('''''') +icon_severe_cold_twotone = NotStr('''''') +icon_crop_din_twotone = NotStr('''''') +icon_splitscreen_sharp = NotStr('''''') +icon_auto_fix_off_round = NotStr('''''') +icon_create_new_folder_filled = NotStr('''''') +icon_exposure_neg2_sharp = NotStr('''''') +icon_hls_off_filled = NotStr('''''') +icon_money_off_csred_sharp = NotStr('''''') +icon_md16_mp_filled = NotStr('''''') +icon_accessible_filled = NotStr(''' + + +''') +icon_motion_photos_paused_twotone = NotStr('''''') +icon_local_pharmacy_filled = NotStr('''''') +icon_report_outlined = NotStr(''' + + + +''') +icon_mic_off_outlined = NotStr('''''') +icon_archive_twotone = NotStr(''' + + +''') +icon_question_answer_sharp = NotStr('''''') +icon_houseboat_twotone = NotStr(''' + + +''') +icon_arrow_upward_twotone = NotStr('''''') +icon_pin_end_sharp = NotStr('''''') +icon_align_vertical_top_filled = NotStr('''''') +icon_favorite_sharp = NotStr('''''') +icon_view_quilt_round = NotStr('''''') +icon_library_add_check_filled = NotStr('''''') +icon_screen_rotation_outlined = NotStr('''''') +icon_table_view_sharp = NotStr('''''') +icon_battery_alert_sharp = NotStr('''''') +icon_wifi_calling_outlined = NotStr(''' + + +''') +icon_pause_presentation_outlined = NotStr('''''') +icon_cable_filled = NotStr('''''') +icon_tablet_outlined = NotStr('''''') +icon_sd_outlined = NotStr(''' + + +''') +icon_manage_accounts_sharp = NotStr(''' + + + +''') +icon_airline_seat_legroom_reduced_outlined = NotStr('''''') +icon_podcasts_round = NotStr('''''') +icon_app_registration_sharp = NotStr('''''') +icon_deselect_sharp = NotStr('''''') +icon_flashlight_off_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet0_bar_filled = NotStr('''''') +icon_calendar_view_week_sharp = NotStr('''''') +icon_view_agenda_sharp = NotStr('''''') +icon_device_unknown_twotone = NotStr(''' + + +''') +icon_api_sharp = NotStr('''''') +icon_local_grocery_store_outlined = NotStr('''''') +icon_audio_file_outlined = NotStr('''''') +icon_settings_applications_sharp = NotStr(''' + + +''') +icon_keyboard_option_key_sharp = NotStr('''''') +icon_text_format_filled = NotStr('''''') +icon_access_time_outlined = NotStr('''''') +icon_moving_twotone = NotStr('''''') +icon_pause_presentation_filled = NotStr(''' + + +''') +icon_qr_code_outlined = NotStr('''''') +icon_wrong_location_outlined = NotStr(''' + + + +''') +icon_insert_chart_outlined_filled = NotStr('''''') +icon_kitesurfing_twotone = NotStr('''''') +icon_tab_round = NotStr('''''') +icon_generating_tokens_twotone = NotStr(''' + + +''') +icon_bookmark_sharp = NotStr('''''') +icon_carpenter_filled = NotStr('''''') +icon_gps_not_fixed_outlined = NotStr('''''') +icon_block_outlined = NotStr('''''') +icon_leave_bags_at_home_filled = NotStr('''''') +icon_rotate90_degrees_cw_twotone = NotStr(''' + + +''') +icon_airport_shuttle_sharp = NotStr('''''') +icon_find_replace_sharp = NotStr('''''') +icon_wifi_twotone = NotStr('''''') +icon_screen_rotation_filled = NotStr('''''') +icon_feed_filled = NotStr('''''') +icon_add_to_drive_round = NotStr('''''') +icon_local_hotel_filled = NotStr('''''') +icon_edit_notifications_filled = NotStr('''''') +icon_text_increase_outlined = NotStr('''''') +icon_picture_in_picture_alt_sharp = NotStr('''''') +icon_rocket_launch_sharp = NotStr('''''') +icon_notifications_paused_outlined = NotStr('''''') +icon_audio_file_twotone = NotStr(''' + + + +''') +icon_border_color_twotone = NotStr('''''') +icon_rsvp_outlined = NotStr('''''') +icon_remove_from_queue_outlined = NotStr('''''') +icon_vrpano_twotone = NotStr(''' + + + +''') +icon_notes_outlined = NotStr('''''') +icon_desktop_access_disabled_twotone = NotStr(''' + + +''') +icon_electric_scooter_sharp = NotStr(''' + + +''') +icon_pie_chart_outline_round = NotStr('''''') +icon_cell_tower_sharp = NotStr(''' + + +''') +icon_swap_vertical_circle_round = NotStr('''''') +icon_md6_ft_apart_filled = NotStr('''''') +icon_close_fullscreen_outlined = NotStr('''''') +icon_hdr_enhanced_select_twotone = NotStr(''' + + + +''') +icon_close_fullscreen_twotone = NotStr('''''') +icon_expand_less_sharp = NotStr('''''') +icon_no_encryption_gmailerrorred_sharp = NotStr('''''') +icon_flood_outlined = NotStr('''''') +icon_screenshot_sharp = NotStr('''''') +icon_monitor_sharp = NotStr('''''') +icon_swipe_vertical_sharp = NotStr('''''') +icon_tv_twotone = NotStr(''' + + +''') +icon_details_filled = NotStr('''''') +icon_link_off_filled = NotStr('''''') +icon_cloud_download_outlined = NotStr('''''') +icon_fast_forward_twotone = NotStr(''' + + +''') +icon_square_foot_sharp = NotStr('''''') +icon_density_small_filled = NotStr('''''') +icon_currency_exchange_filled = NotStr('''''') +icon_sports_bar_twotone = NotStr(''' + + +''') +icon_textsms_filled = NotStr('''''') +icon_shop2_outlined = NotStr(''' + + + +''') +icon_filter_list_outlined = NotStr('''''') +icon_south_west_filled = NotStr('''''') +icon_css_outlined = NotStr('''''') +icon_search_off_filled = NotStr(''' + + +''') +icon_verified_round = NotStr('''''') +icon_work_outline_outlined = NotStr('''''') +icon_device_hub_outlined = NotStr('''''') +icon_video_library_outlined = NotStr('''''') +icon_schedule_send_sharp = NotStr(''' + + +''') +icon_personal_video_filled = NotStr('''''') +icon_mms_twotone = NotStr(''' + + +''') +icon_time_to_leave_round = NotStr('''''') +icon_fit_screen_twotone = NotStr(''' + + +''') +icon_transform_outlined = NotStr('''''') +icon_border_left_sharp = NotStr('''''') +icon_content_paste_search_filled = NotStr(''' + + +''') +icon_pin_drop_twotone = NotStr(''' + + + +''') +icon_sports_tennis_round = NotStr('''''') +icon_verified_user_filled = NotStr('''''') +icon_signal_wifi3_bar_filled = NotStr(''' + + +''') +icon_monochrome_photos_round = NotStr('''''') +icon_plagiarism_sharp = NotStr(''' + + +''') +icon_send_time_extension_round = NotStr(''' + + +''') +icon_trip_origin_round = NotStr('''''') +icon_integration_instructions_sharp = NotStr('''''') +icon_select_all_twotone = NotStr('''''') +icon_panorama_wide_angle_select_outlined = NotStr('''''') +icon_indeterminate_check_box_sharp = NotStr('''''') +icon_downhill_skiing_round = NotStr('''''') +icon_manage_history_twotone = NotStr('''''') +icon_groups_outlined = NotStr('''''') +icon_dashboard_customize_outlined = NotStr('''''') +icon_celebration_sharp = NotStr(''' + + +''') +icon_change_circle_outlined = NotStr('''''') +icon_signal_cellular_connected_no_internet0_bar_outlined = NotStr('''''') +icon_switch_access_shortcut_outlined = NotStr('''''') +icon_repeat_on_outlined = NotStr('''''') +icon_remove_moderator_round = NotStr('''''') +icon_web_asset_filled = NotStr('''''') +icon_explicit_sharp = NotStr('''''') +icon_crisis_alert_filled = NotStr('''''') +icon_receipt_long_round = NotStr(''' + + + + +''') +icon_select_all_sharp = NotStr('''''') +icon_md9_mp_twotone = NotStr(''' + + + + + +''') +icon_free_cancellation_twotone = NotStr(''' + + +''') +icon_drive_file_rename_outline_outlined = NotStr('''''') +icon_support_round = NotStr('''''') +icon_brightness1_filled = NotStr('''''') +icon_open_in_browser_twotone = NotStr('''''') +icon_forest_sharp = NotStr(''' + + +''') +icon_single_bed_sharp = NotStr('''''') +icon_padding_sharp = NotStr('''''') +icon_sos_outlined = NotStr('''''') +icon_vaping_rooms_sharp = NotStr('''''') +icon_queue_outlined = NotStr('''''') +icon_move_up_outlined = NotStr('''''') +icon_md17_mp_filled = NotStr('''''') +icon_house_twotone = NotStr(''' + + + +''') +icon_picture_as_pdf_twotone = NotStr(''' + + + +''') +icon_signal_wifi1_bar_lock_round = NotStr(''' + + +''') +icon_wifi_tethering_error_filled = NotStr('''''') +icon_arrow_left_sharp = NotStr('''''') +icon_battery_saver_sharp = NotStr('''''') +icon_where_to_vote_filled = NotStr('''''') +icon_hail_round = NotStr('''''') +icon_edit_location_alt_round = NotStr(''' + + +''') +icon_file_copy_sharp = NotStr('''''') +icon_notifications_filled = NotStr('''''') +icon_file_copy_twotone = NotStr(''' + + +''') +icon_send_to_mobile_outlined = NotStr('''''') +icon_run_circle_filled = NotStr('''''') +icon_memory_filled = NotStr('''''') +icon_task_sharp = NotStr('''''') +icon_temple_hindu_twotone = NotStr(''' + + +''') +icon_escalator_filled = NotStr('''''') +icon_person_add_alt_filled = NotStr('''''') +icon_phone_iphone_round = NotStr('''''') +icon_vaping_rooms_outlined = NotStr('''''') +icon_document_scanner_outlined = NotStr('''''') +icon_games_filled = NotStr('''''') +icon_flourescent_twotone = NotStr(''' + + +''') +icon_local_phone_filled = NotStr('''''') +icon_multiple_stop_filled = NotStr('''''') +icon_headphones_sharp = NotStr('''''') +icon_sensors_twotone = NotStr('''''') +icon_file_present_filled = NotStr('''''') +icon_plus_minus_outlined = NotStr('''''') +icon_insert_link_round = NotStr('''''') +icon_pan_tool_sharp = NotStr('''''') +icon_less_than_equal_sharp = NotStr(''' + + +''') +icon_query_builder_round = NotStr('''''') +icon_nfc_outlined = NotStr('''''') +icon_margin_outlined = NotStr('''''') +icon_luggage_sharp = NotStr('''''') +icon_info_filled = NotStr('''''') +icon_signal_wifi_off_twotone = NotStr('''''') +icon_stars_round = NotStr('''''') +icon_facebook_sharp = NotStr('''''') +icon_help_sharp = NotStr('''''') +icon_devices_outlined = NotStr('''''') +icon_wifi_tethering_outlined = NotStr('''''') +icon_sign_language_filled = NotStr('''''') +icon_fast_forward_outlined = NotStr('''''') +icon_switch_access_shortcut_add_sharp = NotStr('''''') +icon_hail_twotone = NotStr('''''') +icon_mail_filled = NotStr('''''') +icon_change_history_twotone = NotStr(''' + + +''') +icon_charging_station_sharp = NotStr('''''') +icon_show_chart_round = NotStr('''''') +icon_md22_mp_sharp = NotStr(''' + + +''') +icon_signal_cellular_alt2_bar_filled = NotStr('''''') +icon_md9_k_plus_twotone = NotStr(''' + + + + + +''') +icon_height_twotone = NotStr('''''') +icon_train_outlined = NotStr(''' + + + +''') +icon_keyboard_arrow_up_filled = NotStr('''''') +icon_keyboard_command_key_filled = NotStr('''''') +icon_sports_baseball_filled = NotStr(''' + + +''') +icon_short_text_filled = NotStr('''''') +icon_phishing_twotone = NotStr('''''') +icon_notification_add_twotone = NotStr('''''') +icon_battery_charging80_filled = NotStr(''' + + +''') +icon_all_out_round = NotStr('''''') +icon_md8_k_plus_twotone = NotStr(''' + + + + + +''') +icon_signal_wifi2_bar_lock_sharp = NotStr(''' + + + +''') +icon_stop_twotone = NotStr(''' + + +''') +icon_directions_transit_round = NotStr('''''') +icon_star_border_purple500_round = NotStr('''''') +icon_play_for_work_filled = NotStr('''''') +icon_linked_camera_filled = NotStr(''' + + + +''') +icon_md5_mp_filled = NotStr('''''') +icon_developer_board_off_sharp = NotStr('''''') +icon_maps_ugc_sharp = NotStr(''' + + +''') +icon_battery3_bar_twotone = NotStr(''' + + +''') +icon_paypal_filled = NotStr(''' + + +''') +icon_file_upload_outlined = NotStr('''''') +icon_settings_backup_restore_sharp = NotStr('''''') +icon_text_rotation_down_twotone = NotStr('''''') +icon_topic_sharp = NotStr('''''') +icon_request_quote_round = NotStr('''''') +icon_tap_and_play_twotone = NotStr('''''') +icon_md12_mp_outlined = NotStr(''' + + + +''') +icon_monitor_heart_filled = NotStr(''' + + +''') +icon_public_off_round = NotStr('''''') +icon_view_stream_filled = NotStr('''''') +icon_brightness1_sharp = NotStr('''''') +icon_help_round = NotStr('''''') +icon_line_weight_sharp = NotStr('''''') +icon_signal_cellular4_bar_filled = NotStr('''''') +icon_connect_without_contact_sharp = NotStr('''''') +icon_shower_filled = NotStr(''' + + + + + + + +''') +icon_tungsten_sharp = NotStr('''''') +icon_add_ic_call_twotone = NotStr(''' + + +''') +icon_pin_invoke_outlined = NotStr('''''') +icon_terrain_filled = NotStr('''''') +icon_wifi_off_outlined = NotStr('''''') +icon_md10_mp_round = NotStr('''''') +icon_hot_tub_round = NotStr(''' + + +''') +icon_bungalow_filled = NotStr('''''') +icon_auto_fix_off_filled = NotStr('''''') +icon_help_twotone = NotStr(''' + + +''') +icon_near_me_outlined = NotStr('''''') +icon_settings_power_sharp = NotStr('''''') +icon_battery_charging80_twotone = NotStr(''' + + +''') +icon_md1_k_outlined = NotStr(''' + + +''') +icon_outlet_filled = NotStr('''''') +icon_mms_outlined = NotStr('''''') +icon_bookmarks_twotone = NotStr(''' + + +''') +icon_bento_round = NotStr('''''') +icon_upgrade_filled = NotStr('''''') +icon_sports_rugby_outlined = NotStr('''''') +icon_keyboard_capslock_outlined = NotStr('''''') +icon_local_fire_department_filled = NotStr('''''') +icon_bug_report_filled = NotStr('''''') +icon_notifications_off_sharp = NotStr('''''') +icon_signal_cellular_alt2_bar_sharp = NotStr('''''') +icon_cast_for_education_twotone = NotStr('''''') +icon_equalizer_filled = NotStr('''''') +icon_photo_camera_back_twotone = NotStr(''' + + +''') +icon_rounded_corner_twotone = NotStr('''''') +icon_crop_portrait_round = NotStr('''''') +icon_group_work_outlined = NotStr(''' + + + + +''') +icon_report_round = NotStr('''''') +icon_not_equal_outlined = NotStr(''' + + +''') +icon_signal_wifi_off_round = NotStr('''''') +icon_assignment_turned_in_sharp = NotStr('''''') +icon_skip_next_sharp = NotStr('''''') +icon_perm_camera_mic_filled = NotStr('''''') +icon_phonelink_lock_outlined = NotStr('''''') +icon_outbox_sharp = NotStr(''' + + +''') +icon_battery_charging30_round = NotStr(''' + + +''') +icon_today_outlined = NotStr('''''') +icon_hourglass_top_round = NotStr('''''') +icon_nature_sharp = NotStr('''''') +icon_find_replace_twotone = NotStr('''''') +icon_security_update_good_outlined = NotStr('''''') +icon_emergency_filled = NotStr('''''') +icon_sd_storage_outlined = NotStr('''''') +icon_wifi_calling_twotone = NotStr(''' + + + +''') +icon_toll_outlined = NotStr('''''') +icon_mode_twotone = NotStr(''' + + +''') +icon_monitor_heart_round = NotStr(''' + + +''') +icon_trending_flat_filled = NotStr('''''') +icon_subdirectory_arrow_left_sharp = NotStr('''''') +icon_sports_gymnastics_filled = NotStr('''''') +icon_roundabout_left_round = NotStr('''''') +icon_auto_stories_twotone = NotStr(''' + + + +''') +icon_zoom_in_map_twotone = NotStr('''''') +icon_edgesensor_low_round = NotStr('''''') +icon_outlet_twotone = NotStr(''' + + +''') +icon_pan_tool_filled = NotStr('''''') +icon_cloud_done_twotone = NotStr(''' + + +''') +icon_insert_emoticon_outlined = NotStr('''''') +icon_share_arrival_time_filled = NotStr('''''') +icon_camera_alt_twotone = NotStr(''' + + +''') +icon_car_rental_filled = NotStr('''''') +icon_security_update_good_filled = NotStr('''''') +icon_local_car_wash_filled = NotStr('''''') +icon_garage_outlined = NotStr(''' + + + + +''') +icon_text_snippet_filled = NotStr('''''') +icon_settings_overscan_sharp = NotStr('''''') +icon_snapchat_outlined = NotStr('''''') +icon_poll_sharp = NotStr('''''') +icon_watch_later_filled = NotStr('''''') +icon_tour_filled = NotStr('''''') +icon_md23_mp_twotone = NotStr(''' + + + + + +''') +icon_sports_football_sharp = NotStr('''''') +icon_attribution_outlined = NotStr(''' + + +''') +icon_fork_left_sharp = NotStr('''''') +icon_border_vertical_sharp = NotStr('''''') +icon_request_quote_twotone = NotStr(''' + + +''') +icon_brunch_dining_round = NotStr('''''') +icon_rice_bowl_twotone = NotStr(''' + + +''') +icon_usb_off_outlined = NotStr('''''') +icon_dns_filled = NotStr('''''') +icon_merge_round = NotStr('''''') +icon_code_outlined = NotStr('''''') +icon_wifi_calling3_round = NotStr(''' + + + +''') +icon_restore_from_trash_sharp = NotStr('''''') +icon_night_shelter_twotone = NotStr(''' + + +''') +icon_hdr_auto_sharp = NotStr(''' + + +''') +icon_format_line_spacing_outlined = NotStr('''''') +icon_border_clear_sharp = NotStr('''''') +icon_signal_wifi0_bar_round = NotStr('''''') +icon_work_outline_round = NotStr('''''') +icon_palette_filled = NotStr('''''') +icon_photo_round = NotStr('''''') +icon_insert_link_twotone = NotStr('''''') +icon_fact_check_outlined = NotStr(''' + + +''') +icon_settings_input_composite_twotone = NotStr(''' + + +''') +icon_linked_camera_twotone = NotStr(''' + + + +''') +icon_social_distance_outlined = NotStr('''''') +icon_supervisor_account_sharp = NotStr('''''') +icon_location_searching_outlined = NotStr('''''') +icon_hearing_sharp = NotStr('''''') +icon_volume_mute_filled = NotStr('''''') +icon_chalet_twotone = NotStr(''' + + +''') +icon_collections_outlined = NotStr('''''') +icon_forum_twotone = NotStr(''' + + +''') +icon_downhill_skiing_twotone = NotStr('''''') +icon_sports_esports_filled = NotStr('''''') +icon_mark_chat_read_filled = NotStr('''''') +icon_sports_rugby_twotone = NotStr(''' + + +''') +icon_rtt_outlined = NotStr('''''') +icon_inbox_round = NotStr('''''') +icon_local_pharmacy_outlined = NotStr('''''') +icon_autofps_select_filled = NotStr(''' + + +''') +icon_sledding_sharp = NotStr('''''') +icon_assignment_return_twotone = NotStr(''' + + +''') +icon_festival_round = NotStr('''''') +icon_done_twotone = NotStr('''''') +icon_vertical_align_top_sharp = NotStr('''''') +icon_system_security_update_good_round = NotStr('''''') +icon_md16_mp_twotone = NotStr(''' + + + + + +''') +icon_library_add_sharp = NotStr('''''') +icon_unpublished_outlined = NotStr('''''') +icon_airline_seat_individual_suite_round = NotStr('''''') +icon_videogame_asset_off_sharp = NotStr('''''') +icon_content_paste_go_twotone = NotStr(''' + + + +''') +icon_call_sharp = NotStr('''''') +icon_battery90_twotone = NotStr(''' + + +''') +icon_skip_next_round = NotStr('''''') +icon_hevc_sharp = NotStr('''''') +icon_face_retouching_off_round = NotStr(''' + + +''') +icon_contact_phone_round = NotStr('''''') +icon_balcony_outlined = NotStr('''''') +icon_nearby_error_sharp = NotStr('''''') +icon_gamepad_twotone = NotStr(''' + + +''') +icon_swipe_right_twotone = NotStr(''' + + +''') +icon_mood_bad_round = NotStr('''''') +icon_where_to_vote_sharp = NotStr('''''') +icon_ads_click_outlined = NotStr('''''') +icon_drive_folder_upload_filled = NotStr('''''') +icon_shutter_speed_round = NotStr('''''') +icon_safety_divider_outlined = NotStr('''''') +icon_call_to_action_sharp = NotStr('''''') +icon_plagiarism_filled = NotStr(''' + + +''') +icon_dinner_dining_filled = NotStr('''''') +icon_sd_card_outlined = NotStr('''''') +icon_media_bluetooth_off_outlined = NotStr('''''') +icon_layers_round = NotStr('''''') +icon_content_paste_off_twotone = NotStr(''' + + +''') +icon_discord_outlined = NotStr('''''') +icon_healing_twotone = NotStr(''' + + +''') +icon_pin_off_outlined = NotStr(''' + + +''') +icon_sim_card_download_twotone = NotStr(''' + + + +''') +icon_signal_cellular_nodata_round = NotStr('''''') +icon_data_saver_on_sharp = NotStr('''''') +icon_credit_card_off_twotone = NotStr(''' + + +''') +icon_set_meal_sharp = NotStr('''''') +icon_personal_video_outlined = NotStr('''''') +icon_price_check_outlined = NotStr('''''') +icon_turn_slight_right_outlined = NotStr('''''') +icon_cyclone_outlined = NotStr(''' + + +''') +icon_zoom_in_map_filled = NotStr('''''') +icon_cloud_off_twotone = NotStr(''' + + +''') +icon_md23_mp_filled = NotStr('''''') +icon_ad_units_filled = NotStr('''''') +icon_subdirectory_arrow_left_outlined = NotStr('''''') +icon_settings_brightness_outlined = NotStr('''''') +icon_sentiment_satisfied_alt_twotone = NotStr(''' + + + + +''') +icon_queue_sharp = NotStr('''''') +icon_center_focus_strong_filled = NotStr('''''') +icon_flash_auto_round = NotStr('''''') +icon_location_on_sharp = NotStr('''''') +icon_earbuds_sharp = NotStr(''' + + +''') +icon_brightness3_twotone = NotStr(''' + + +''') +icon_home_max_round = NotStr('''''') +icon_foundation_twotone = NotStr(''' + + +''') +icon_print_disabled_outlined = NotStr(''' + + +''') +icon_fireplace_sharp = NotStr('''''') +icon_emoji_nature_sharp = NotStr('''''') +icon_minus_outlined = NotStr('''''') +icon_format_paint_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet3_bar_filled = NotStr(''' + + +''') +icon_swipe_down_alt_outlined = NotStr('''''') +icon_file_download_done_round = NotStr('''''') +icon_update_disabled_twotone = NotStr('''''') +icon_grid4_x4_outlined = NotStr('''''') +icon_monitor_weight_filled = NotStr(''' + + +''') +icon_volume_off_filled = NotStr('''''') +icon_percent_filled = NotStr('''''') +icon_auto_fix_normal_outlined = NotStr('''''') +icon_auto_graph_twotone = NotStr('''''') +icon_camera_front_outlined = NotStr('''''') +icon_signal_cellular_connected_no_internet1_bar_twotone = NotStr(''' + + +''') +icon_directions_bus_filled_outlined = NotStr(''' + + + +''') +icon_video_camera_back_twotone = NotStr(''' + + + +''') +icon_screen_search_desktop_filled = NotStr('''''') +icon_sledding_outlined = NotStr('''''') +icon_zoom_in_map_sharp = NotStr('''''') +icon_apartment_outlined = NotStr('''''') +icon_crop75_round = NotStr('''''') +icon_swipe_vertical_outlined = NotStr('''''') +icon_signpost_twotone = NotStr(''' + + +''') +icon_switch_left_outlined = NotStr('''''') +icon_currency_bitcoin_twotone = NotStr('''''') +icon_arrow_back_filled = NotStr('''''') +icon_create_filled = NotStr('''''') +icon_border_vertical_twotone = NotStr('''''') +icon_cancel_sharp = NotStr('''''') +icon_featured_play_list_outlined = NotStr('''''') +icon_event_round = NotStr('''''') +icon_perm_phone_msg_sharp = NotStr('''''') +icon_watch_filled = NotStr('''''') +icon_md4_g_mobiledata_sharp = NotStr('''''') +icon_view_timeline_filled = NotStr('''''') +icon_credit_card_filled = NotStr('''''') +icon_crop_square_outlined = NotStr('''''') +icon_chalet_outlined = NotStr('''''') +icon_reviews_outlined = NotStr(''' + + +''') +icon_transfer_within_a_station_twotone = NotStr('''''') +icon_deck_filled = NotStr(''' + + +''') +icon_switch_access_shortcut_add_filled = NotStr('''''') +icon_signal_wifi1_bar_outlined = NotStr(''' + + +''') +icon_expand_more_round = NotStr('''''') +icon_more_horiz_sharp = NotStr('''''') +icon_view_kanban_sharp = NotStr('''''') +icon_gesture_filled = NotStr('''''') +icon_md1_x_mobiledata_sharp = NotStr('''''') +icon_restore_page_sharp = NotStr('''''') +icon_close_fullscreen_sharp = NotStr('''''') +icon_keyboard_alt_outlined = NotStr('''''') +icon_alarm_outlined = NotStr('''''') +icon_keyboard_arrow_up_round = NotStr('''''') +icon_sentiment_neutral_filled = NotStr(''' + + + + +''') +icon_flight_round = NotStr('''''') +icon_install_desktop_round = NotStr(''' + + +''') +icon_save_as_sharp = NotStr('''''') +icon_local_hotel_twotone = NotStr(''' + + + +''') +icon_deblur_filled = NotStr(''' + + + + + + + + + + + + + +''') +icon_child_care_round = NotStr(''' + + + +''') +icon_trip_origin_outlined = NotStr('''''') +icon_keyboard_double_arrow_down_outlined = NotStr(''' + + +''') +icon_psychology_twotone = NotStr(''' + + + +''') +icon_file_download_off_outlined = NotStr('''''') +icon_report_off_round = NotStr('''''') +icon_hide_image_filled = NotStr('''''') +icon_signal_wifi0_bar_filled = NotStr('''''') +icon_arrow_drop_down_filled = NotStr('''''') +icon_thunderstorm_filled = NotStr('''''') +icon_view_sidebar_outlined = NotStr('''''') +icon_border_horizontal_outlined = NotStr('''''') +icon_paragliding_filled = NotStr('''''') +icon_water_outlined = NotStr('''''') +icon_border_top_outlined = NotStr('''''') +icon_chair_outlined = NotStr('''''') +icon_pan_tool_alt_sharp = NotStr('''''') +icon_help_center_sharp = NotStr('''''') +icon_format_line_spacing_sharp = NotStr('''''') +icon_north_west_sharp = NotStr('''''') +icon_looks_outlined = NotStr('''''') +icon_sensors_sharp = NotStr('''''') +icon_directions_subway_twotone = NotStr(''' + + + + +''') +icon_payments_outlined = NotStr('''''') +icon_takeout_dining_sharp = NotStr('''''') +icon_kitchen_filled = NotStr('''''') +icon_battery20_outlined = NotStr(''' + + +''') +icon_horizontal_distribute_round = NotStr('''''') +icon_network_check_sharp = NotStr('''''') +icon_settings_ethernet_filled = NotStr('''''') +icon_format_align_justify_twotone = NotStr('''''') +icon_hardware_filled = NotStr('''''') +icon_rotate90_degrees_ccw_round = NotStr('''''') +icon_interests_filled = NotStr('''''') +icon_gavel_round = NotStr('''''') +icon_title_round = NotStr('''''') +icon_cloud_upload_sharp = NotStr('''''') +icon_woman_sharp = NotStr(''' + + +''') +icon_headset_mic_outlined = NotStr('''''') +icon_align_horizontal_center_twotone = NotStr('''''') +icon_preview_sharp = NotStr('''''') +icon_co2_sharp = NotStr('''''') +icon_reddit_round = NotStr(''' + + +''') +icon_arrow_right_outlined = NotStr('''''') +icon_outdoor_grill_outlined = NotStr('''''') +icon_event_seat_round = NotStr('''''') +icon_payment_twotone = NotStr(''' + + +''') +icon_folder_open_outlined = NotStr('''''') +icon_hls_off_twotone = NotStr('''''') +icon_bedtime_round = NotStr('''''') +icon_missed_video_call_twotone = NotStr(''' + + +''') +icon_spatial_tracking_filled = NotStr(''' + + + +''') +icon_bluetooth_audio_sharp = NotStr('''''') +icon_settings_ethernet_outlined = NotStr('''''') +icon_arrow_forward_round = NotStr('''''') +icon_event_repeat_filled = NotStr('''''') +icon_temple_buddhist_outlined = NotStr('''''') +icon_swipe_down_alt_filled = NotStr('''''') +icon_error_outline_filled = NotStr('''''') +icon_play_circle_filled_white_filled = NotStr('''''') +icon_yard_twotone = NotStr(''' + + + +''') +icon_sports_golf_round = NotStr(''' + + + + + +''') +icon_play_lesson_filled = NotStr(''' + + +''') +icon_add_link_round = NotStr('''''') +icon_fingerprint_filled = NotStr('''''') +icon_replay30_outlined = NotStr('''''') +icon_camera_round = NotStr('''''') +icon_computer_filled = NotStr('''''') +icon_interests_twotone = NotStr(''' + + +''') +icon_local_mall_filled = NotStr('''''') +icon_bedroom_baby_filled = NotStr(''' + + +''') +icon_soup_kitchen_twotone = NotStr(''' + + +''') +icon_network_ping_outlined = NotStr('''''') +icon_luggage_filled = NotStr('''''') +icon_padding_filled = NotStr('''''') +icon_horizontal_rule_twotone = NotStr('''''') +icon_upcoming_sharp = NotStr('''''') +icon_wifi_protected_setup_outlined = NotStr(''' + + +''') +icon_rotate90_degrees_cw_outlined = NotStr('''''') +icon_panorama_wide_angle_select_twotone = NotStr('''''') +icon_shield_sharp = NotStr('''''') +icon_woo_commerce_round = NotStr('''''') +icon_g_mobiledata_twotone = NotStr('''''') +icon_remove_sharp = NotStr('''''') +icon_nature_people_outlined = NotStr(''' + + +''') +icon_find_replace_outlined = NotStr('''''') +icon_add_ic_call_round = NotStr('''''') +icon_attach_email_twotone = NotStr(''' + + +''') +icon_south_twotone = NotStr('''''') +icon_add_to_drive_sharp = NotStr('''''') +icon_tablet_mac_sharp = NotStr('''''') +icon_assured_workload_outlined = NotStr('''''') +icon_local_parking_sharp = NotStr('''''') +icon_task_outlined = NotStr('''''') +icon_auto_fix_off_sharp = NotStr('''''') +icon_invert_colors_off_twotone = NotStr(''' + + +''') +icon_emoji_flags_twotone = NotStr(''' + + +''') +icon_add_circle_outlined = NotStr('''''') +icon_build_circle_round = NotStr('''''') +icon_replay5_filled = NotStr(''' + + +''') +icon_hdr_plus_sharp = NotStr(''' + + +''') +icon_battery_charging80_round = NotStr(''' + + +''') +icon_doorbell_sharp = NotStr('''''') +icon_folder_copy_round = NotStr(''' + + +''') +icon_room_preferences_round = NotStr('''''') +icon_maps_home_work_filled = NotStr(''' + + +''') +icon_join_full_filled = NotStr(''' + + +''') +icon_sensor_window_sharp = NotStr('''''') +icon_biotech_twotone = NotStr(''' + + + +''') +icon_adf_scanner_sharp = NotStr('''''') +icon_keyboard_hide_outlined = NotStr('''''') +icon_md3_d_rotation_outlined = NotStr('''''') +icon_more_outlined = NotStr(''' + + + + +''') +icon_outlined_flag_outlined = NotStr('''''') +icon_add_box_filled = NotStr('''''') +icon_lock_open_round = NotStr('''''') +icon_done_all_outlined = NotStr('''''') +icon_ramen_dining_filled = NotStr('''''') +icon_local_grocery_store_twotone = NotStr(''' + + +''') +icon_discord_filled = NotStr('''''') +icon_upload_sharp = NotStr('''''') +icon_group_sharp = NotStr('''''') +icon_swipe_up_alt_twotone = NotStr(''' + + +''') +icon_control_point_duplicate_sharp = NotStr('''''') +icon_aod_twotone = NotStr(''' + + +''') +icon_do_disturb_round = NotStr('''''') +icon_female_sharp = NotStr('''''') +icon_wifi_sharp = NotStr('''''') +icon_bathtub_twotone = NotStr(''' + + + +''') +icon_alarm_off_filled = NotStr('''''') +icon_backpack_twotone = NotStr(''' + + +''') +icon_dynamic_feed_sharp = NotStr(''' + + +''') +icon_chevron_left_sharp = NotStr('''''') +icon_folder_copy_filled = NotStr(''' + + +''') +icon_motorcycle_sharp = NotStr('''''') +icon_drag_handle_outlined = NotStr('''''') +icon_indeterminate_check_box_round = NotStr('''''') +icon_tire_repair_filled = NotStr(''' + + +''') +icon_phone_bluetooth_speaker_outlined = NotStr('''''') +icon_link_sharp = NotStr('''''') +icon_add_task_outlined = NotStr('''''') +icon_important_devices_filled = NotStr('''''') +icon_greater_than_sharp = NotStr('''''') +icon_lan_filled = NotStr('''''') +icon_view_module_filled = NotStr('''''') +icon_preview_round = NotStr('''''') +icon_doorbell_filled = NotStr('''''') +icon_storefront_filled = NotStr('''''') +icon_pest_control_round = NotStr('''''') +icon_comments_disabled_outlined = NotStr('''''') +icon_art_track_outlined = NotStr('''''') +icon_output_sharp = NotStr(''' + + +''') +icon_ramp_right_twotone = NotStr('''''') +icon_male_outlined = NotStr('''''') +icon_grain_outlined = NotStr('''''') +icon_disabled_visible_sharp = NotStr('''''') +icon_panorama_vertical_select_outlined = NotStr('''''') +icon_star_outline_twotone = NotStr('''''') +icon_sports_motorsports_outlined = NotStr('''''') +icon_dirty_lens_filled = NotStr('''''') +icon_import_contacts_outlined = NotStr('''''') +icon_wrap_text_twotone = NotStr('''''') +icon_exposure_plus1_sharp = NotStr('''''') +icon_two_wheeler_round = NotStr('''''') +icon_sports_basketball_round = NotStr('''''') +icon_cloud_sync_filled = NotStr('''''') +icon_add_road_filled = NotStr('''''') +icon_draw_twotone = NotStr(''' + + +''') +icon_format_color_fill_sharp = NotStr('''''') +icon_share_sharp = NotStr('''''') +icon_edit_calendar_filled = NotStr('''''') +icon_queue_play_next_twotone = NotStr('''''') +icon_airline_seat_recline_extra_round = NotStr('''''') +icon_aod_filled = NotStr('''''') +icon_smoking_rooms_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet0_bar_round = NotStr('''''') +icon_tag_faces_outlined = NotStr('''''') +icon_sensors_off_sharp = NotStr('''''') +icon_settings_outlined = NotStr('''''') +icon_subdirectory_arrow_right_round = NotStr('''''') +icon_help_outline_outlined = NotStr('''''') +icon_person_pin_circle_outlined = NotStr('''''') +icon_turn_sharp_right_round = NotStr('''''') +icon_east_outlined = NotStr('''''') +icon_fullscreen_outlined = NotStr('''''') +icon_timer10_select_round = NotStr('''''') +icon_list_alt_outlined = NotStr('''''') +icon_sd_card_alert_round = NotStr('''''') +icon_emoji_people_twotone = NotStr(''' + + +''') +icon_keyboard_tab_outlined = NotStr('''''') +icon_clear_filled = NotStr('''''') +icon_mood_sharp = NotStr('''''') +icon_rounded_corner_round = NotStr('''''') +icon_replay10_round = NotStr('''''') +icon_lock_clock_outlined = NotStr(''' + + +''') +icon_group_off_outlined = NotStr('''''') +icon_flutter_dash_outlined = NotStr('''''') +icon_format_align_left_outlined = NotStr('''''') +icon_switch_account_sharp = NotStr('''''') +icon_md1_k_round = NotStr('''''') +icon_content_paste_outlined = NotStr('''''') +icon_architecture_sharp = NotStr('''''') +icon_slow_motion_video_round = NotStr('''''') +icon_person_remove_round = NotStr('''''') +icon_arrow_circle_right_twotone = NotStr(''' + + +''') +icon_phonelink_ring_round = NotStr('''''') +icon_invert_colors_round = NotStr('''''') +icon_local_hospital_sharp = NotStr('''''') +icon_raw_on_filled = NotStr('''''') +icon_sentiment_neutral_sharp = NotStr('''''') +icon_looks_one_sharp = NotStr('''''') +icon_medication_sharp = NotStr('''''') +icon_timer10_twotone = NotStr('''''') +icon_filter2_filled = NotStr('''''') +icon_castle_filled = NotStr('''''') +icon_local_taxi_outlined = NotStr(''' + + + +''') +icon_reviews_twotone = NotStr(''' + + + +''') +icon_format_clear_twotone = NotStr('''''') +icon_edgesensor_low_outlined = NotStr('''''') +icon_movie_filter_outlined = NotStr('''''') +icon_less_than_twotone = NotStr('''''') +icon_area_chart_outlined = NotStr('''''') +icon_keyboard_alt_filled = NotStr('''''') +icon_smoking_rooms_outlined = NotStr('''''') +icon_add_alarm_sharp = NotStr('''''') +icon_credit_card_outlined = NotStr('''''') +icon_horizontal_distribute_sharp = NotStr('''''') +icon_flatware_outlined = NotStr('''''') +icon_headphones_twotone = NotStr(''' + + +''') +icon_pest_control_rodent_twotone = NotStr(''' + + + +''') +icon_dock_filled = NotStr('''''') +icon_grading_round = NotStr('''''') +icon_insert_chart_outlined = NotStr('''''') +icon_fullscreen_exit_outlined = NotStr('''''') +icon_md17_mp_round = NotStr(''' + + +''') +icon_restore_from_trash_filled = NotStr('''''') +icon_chevron_right_twotone = NotStr('''''') +icon_integration_instructions_filled = NotStr('''''') +icon_theaters_sharp = NotStr('''''') +icon_home_work_sharp = NotStr(''' + + +''') +icon_md4_k_plus_sharp = NotStr('''''') +icon_sentiment_satisfied_alt_sharp = NotStr(''' + + + +''') +icon_desktop_access_disabled_outlined = NotStr('''''') +icon_sticky_note2_sharp = NotStr('''''') +icon_wifi2_bar_round = NotStr('''''') +icon_cases_twotone = NotStr(''' + + + +''') +icon_inventory2_outlined = NotStr(''' + + +''') +icon_shopping_cart_outlined = NotStr('''''') +icon_javascript_twotone = NotStr('''''') +icon_sticky_note2_twotone = NotStr(''' + + +''') +icon_party_mode_twotone = NotStr(''' + + +''') +icon_sd_card_sharp = NotStr('''''') +icon_add_to_home_screen_outlined = NotStr('''''') +icon_radio_button_unchecked_twotone = NotStr('''''') +icon_monitor_heart_outlined = NotStr(''' + + +''') +icon_leak_remove_twotone = NotStr('''''') +icon_quickreply_sharp = NotStr(''' + + +''') +icon_arrow_right_alt_sharp = NotStr('''''') +icon_thermostat_auto_twotone = NotStr(''' + + +''') +icon_timer10_outlined = NotStr('''''') +icon_tablet_android_filled = NotStr('''''') +icon_download_round = NotStr('''''') +icon_verified_user_sharp = NotStr('''''') +icon_free_cancellation_sharp = NotStr('''''') +icon_branding_watermark_outlined = NotStr('''''') +icon_accessible_forward_sharp = NotStr(''' + + +''') +icon_insert_page_break_sharp = NotStr('''''') +icon_stop_circle_sharp = NotStr('''''') +icon_euro_outlined = NotStr('''''') +icon_timer10_select_filled = NotStr('''''') +icon_add_to_queue_sharp = NotStr('''''') +icon_beenhere_filled = NotStr('''''') +icon_align_horizontal_center_filled = NotStr('''''') +icon_dirty_lens_sharp = NotStr('''''') +icon_vignette_twotone = NotStr(''' + + +''') +icon_thumbs_up_down_sharp = NotStr('''''') +icon_perm_phone_msg_twotone = NotStr(''' + + +''') +icon_store_mall_directory_round = NotStr('''''') +icon_public_filled = NotStr('''''') +icon_bedroom_baby_twotone = NotStr(''' + + + + +''') +icon_checkroom_sharp = NotStr('''''') +icon_add_alert_outlined = NotStr('''''') +icon_panorama_photosphere_twotone = NotStr(''' + + +''') +icon_md22_mp_filled = NotStr('''''') +icon_keyboard_arrow_left_sharp = NotStr('''''') +icon_cookie_outlined = NotStr(''' + + + + +''') +icon_airline_stops_filled = NotStr('''''') +icon_video_library_filled = NotStr('''''') +icon_system_security_update_round = NotStr('''''') +icon_sign_language_round = NotStr('''''') +icon_terminal_sharp = NotStr('''''') +icon_format_color_text_twotone = NotStr('''''') +icon_adobe_outlined = NotStr('''''') +icon_assistant_photo_outlined = NotStr('''''') +icon_desktop_mac_twotone = NotStr(''' + + +''') +icon_door_sliding_outlined = NotStr('''''') +icon_wine_bar_round = NotStr('''''') +icon_import_export_outlined = NotStr('''''') +icon_view_compact_alt_outlined = NotStr(''' + + +''') +icon_access_time_filled_outlined = NotStr('''''') +icon_emoji_people_filled = NotStr(''' + + +''') +icon_no_encryption_outlined = NotStr('''''') +icon_sports_volleyball_sharp = NotStr('''''') +icon_zoom_in_map_round = NotStr('''''') +icon_photo_filter_sharp = NotStr('''''') +icon_local_airport_outlined = NotStr('''''') +icon_calendar_view_day_twotone = NotStr(''' + + +''') +icon_ads_click_filled = NotStr('''''') +icon_md5_mp_outlined = NotStr(''' + + + +''') +icon_md4_g_mobiledata_outlined = NotStr('''''') +icon_filter4_twotone = NotStr(''' + + +''') +icon_wifi_find_sharp = NotStr(''' + + +''') +icon_piano_off_twotone = NotStr(''' + + +''') +icon_adb_filled = NotStr('''''') +icon_kebab_dining_round = NotStr('''''') +icon_ice_skating_twotone = NotStr(''' + + +''') +icon_mark_chat_unread_outlined = NotStr('''''') +icon_device_thermostat_outlined = NotStr('''''') +icon_fit_screen_round = NotStr('''''') +icon_production_quantity_limits_filled = NotStr('''''') +icon_airline_seat_recline_extra_filled = NotStr('''''') +icon_open_in_browser_filled = NotStr('''''') +icon_soap_outlined = NotStr('''''') +icon_merge_type_round = NotStr('''''') +icon_commute_filled = NotStr('''''') +icon_signal_wifi_statusbar_connected_no_internet4_outlined = NotStr(''' + + +''') +icon_smart_toy_sharp = NotStr('''''') +icon_stay_current_landscape_filled = NotStr('''''') +icon_edit_calendar_twotone = NotStr(''' + + +''') +icon_currency_exchange_outlined = NotStr('''''') +icon_library_add_twotone = NotStr(''' + + +''') +icon_snippet_folder_sharp = NotStr('''''') +icon_switch_camera_round = NotStr('''''') +icon_phishing_sharp = NotStr('''''') +icon_plus_filled = NotStr('''''') +icon_change_history_filled = NotStr('''''') +icon_maps_home_work_round = NotStr(''' + + +''') +icon_airlines_outlined = NotStr('''''') +icon_local_movies_outlined = NotStr('''''') +icon_mail_round = NotStr('''''') +icon_phone_missed_outlined = NotStr('''''') +icon_system_security_update_good_outlined = NotStr('''''') +icon_markunread_mailbox_filled = NotStr('''''') +icon_sentiment_dissatisfied_filled = NotStr(''' + + + +''') +icon_tapas_outlined = NotStr('''''') +icon_satellite_outlined = NotStr('''''') +icon_library_books_outlined = NotStr('''''') +icon_vertical_align_top_filled = NotStr('''''') +icon_airline_seat_recline_extra_twotone = NotStr('''''') +icon_nights_stay_sharp = NotStr(''' + + +''') +icon_table_chart_sharp = NotStr('''''') +icon_hourglass_top_outlined = NotStr('''''') +icon_signal_wifi_statusbar_connected_no_internet4_round = NotStr('''''') +icon_no_luggage_sharp = NotStr('''''') +icon_attach_file_outlined = NotStr('''''') +icon_call_split_outlined = NotStr('''''') +icon_edit_attributes_twotone = NotStr(''' + + +''') +icon_cached_round = NotStr('''''') +icon_wifi_calling3_twotone = NotStr(''' + + + + +''') +icon_cases_round = NotStr('''''') +icon_text_rotation_down_outlined = NotStr('''''') +icon_join_inner_round = NotStr(''' + + +''') +icon_comment_bank_round = NotStr('''''') +icon_view_module_twotone = NotStr(''' + + +''') +icon_store_outlined = NotStr('''''') +icon_speaker_notes_twotone = NotStr(''' + + +''') +icon_timelapse_outlined = NotStr('''''') +icon_clean_hands_sharp = NotStr('''''') +icon_keyboard_command_key_outlined = NotStr('''''') +icon_app_settings_alt_outlined = NotStr('''''') +icon_panorama_filled = NotStr('''''') +icon_reduce_capacity_twotone = NotStr('''''') +icon_hls_outlined = NotStr('''''') +icon_directions_railway_filled_twotone = NotStr(''' + + + +''') +icon_texture_round = NotStr('''''') +icon_redo_filled = NotStr('''''') +icon_mouse_filled = NotStr('''''') +icon_panorama_horizontal_select_filled = NotStr('''''') +icon_mark_email_read_outlined = NotStr('''''') +icon_airline_seat_flat_angled_twotone = NotStr(''' + + +''') +icon_agriculture_filled = NotStr(''' + + +''') +icon_elderly_woman_twotone = NotStr('''''') +icon_wifi_tethering_off_filled = NotStr('''''') +icon_polymer_twotone = NotStr('''''') +icon_grid_off_filled = NotStr('''''') +icon_move_to_inbox_sharp = NotStr('''''') +icon_thermostat_twotone = NotStr('''''') +icon_library_add_check_twotone = NotStr(''' + + +''') +icon_straighten_filled = NotStr('''''') +icon_collections_bookmark_round = NotStr('''''') +icon_line_style_outlined = NotStr('''''') +icon_settings_voice_outlined = NotStr('''''') +icon_wifi_calling3_sharp = NotStr(''' + + + +''') +icon_security_update_warning_twotone = NotStr(''' + + + + +''') +icon_surround_sound_sharp = NotStr('''''') +icon_self_improvement_twotone = NotStr(''' + + +''') +icon_send_to_mobile_sharp = NotStr(''' + + +''') +icon_download_for_offline_round = NotStr('''''') +icon_mode_comment_filled = NotStr('''''') +icon_join_inner_filled = NotStr(''' + + +''') +icon_mobile_friendly_sharp = NotStr('''''') +icon_format_indent_decrease_round = NotStr('''''') +icon_rocket_launch_round = NotStr('''''') +icon_outbound_sharp = NotStr('''''') +icon_camera_outlined = NotStr('''''') +icon_category_filled = NotStr(''' + + + +''') +icon_local_police_twotone = NotStr(''' + + +''') +icon_md4_k_plus_outlined = NotStr(''' + + +''') +icon_attribution_twotone = NotStr(''' + + + +''') +icon_apps_round = NotStr('''''') +icon_move_up_sharp = NotStr('''''') +icon_hide_source_outlined = NotStr('''''') +icon_queue_music_sharp = NotStr('''''') +icon_supervised_user_circle_filled = NotStr('''''') +icon_do_not_disturb_alt_outlined = NotStr('''''') +icon_format_paint_twotone = NotStr(''' + + +''') +icon_rv_hookup_filled = NotStr('''''') +icon_fmd_good_twotone = NotStr(''' + + +''') +icon_stay_primary_portrait_outlined = NotStr('''''') +icon_disabled_by_default_twotone = NotStr(''' + + +''') +icon_autofps_select_sharp = NotStr(''' + + +''') +icon_view_stream_round = NotStr('''''') +icon_memory_round = NotStr('''''') +icon_sports_round = NotStr(''' + + +''') +icon_tap_and_play_round = NotStr('''''') +icon_next_week_twotone = NotStr(''' + + +''') +icon_video_label_sharp = NotStr('''''') +icon_filter5_filled = NotStr('''''') +icon_cloud_download_twotone = NotStr(''' + + +''') +icon_space_bar_twotone = NotStr('''''') +icon_architecture_round = NotStr('''''') +icon_electrical_services_outlined = NotStr(''' + + +''') +icon_straighten_outlined = NotStr('''''') +icon_panorama_fish_eye_round = NotStr('''''') +icon_folder_open_round = NotStr('''''') +icon_calculate_round = NotStr('''''') +icon_offline_bolt_outlined = NotStr('''''') +icon_wysiwyg_round = NotStr('''''') +icon_scale_sharp = NotStr('''''') +icon_restaurant_outlined = NotStr('''''') +icon_cake_twotone = NotStr(''' + + +''') +icon_image_outlined = NotStr('''''') +icon_auto_awesome_mosaic_outlined = NotStr('''''') +icon_person_pin_circle_filled = NotStr('''''') +icon_no_cell_filled = NotStr('''''') +icon_leak_add_filled = NotStr('''''') +icon_route_outlined = NotStr('''''') +icon_hdr_on_select_round = NotStr('''''') +icon_no_food_filled = NotStr('''''') +icon_dehaze_filled = NotStr('''''') +icon_call_missed_round = NotStr('''''') +icon_battery6_bar_filled = NotStr('''''') +icon_moving_round = NotStr('''''') +icon_published_with_changes_filled = NotStr('''''') +icon_emergency_recording_round = NotStr('''''') +icon_stay_primary_portrait_round = NotStr('''''') +icon_filter6_filled = NotStr('''''') +icon_settings_phone_round = NotStr(''' + + + + +''') +icon_wifi_channel_outlined = NotStr('''''') +icon_sd_card_alert_outlined = NotStr('''''') +icon_format_textdirection_l_to_r_twotone = NotStr(''' + + +''') +icon_battery_charging_full_outlined = NotStr('''''') +icon_new_label_twotone = NotStr(''' + + +''') +icon_work_off_outlined = NotStr('''''') +icon_autorenew_sharp = NotStr('''''') +icon_camera_outdoor_sharp = NotStr('''''') +icon_no_meeting_room_sharp = NotStr('''''') +icon_copy_all_round = NotStr('''''') +icon_md6_mp_round = NotStr(''' + + + +''') +icon_sports_twotone = NotStr(''' + + +''') +icon_signal_cellular_null_round = NotStr('''''') +icon_dinner_dining_sharp = NotStr('''''') +icon_lock_reset_twotone = NotStr('''''') +icon_blur_circular_round = NotStr('''''') +icon_wb_twilight_filled = NotStr('''''') +icon_remove_circle_round = NotStr('''''') +icon_error_sharp = NotStr('''''') +icon_rotate_right_filled = NotStr('''''') +icon_forest_filled = NotStr(''' + + +''') +icon_east_filled = NotStr('''''') +icon_saved_search_outlined = NotStr(''' + + +''') +icon_circle_notifications_outlined = NotStr('''''') +icon_css_filled = NotStr('''''') +icon_masks_filled = NotStr('''''') +icon_thumb_up_off_alt_filled = NotStr('''''') +icon_north_round = NotStr('''''') +icon_loupe_filled = NotStr('''''') +icon_data_object_twotone = NotStr('''''') +icon_storage_twotone = NotStr('''''') +icon_storm_sharp = NotStr('''''') +icon_plus_minus_alt_outlined = NotStr('''''') +icon_roller_skating_round = NotStr('''''') +icon_toys_sharp = NotStr('''''') +icon_connected_tv_twotone = NotStr(''' + + +''') +icon_electric_scooter_round = NotStr(''' + + +''') +icon_nature_people_round = NotStr(''' + + +''') +icon_photo_size_select_large_filled = NotStr('''''') +icon_hvac_filled = NotStr(''' + + +''') +icon_grid_goldenratio_round = NotStr('''''') +icon_forward10_sharp = NotStr(''' + + +''') +icon_lightbulb_circle_twotone = NotStr(''' + + + +''') +icon_copyright_outlined = NotStr('''''') +icon_voice_chat_outlined = NotStr('''''') +icon_rule_folder_filled = NotStr('''''') +icon_fitbit_sharp = NotStr('''''') +icon_houseboat_filled = NotStr('''''') +icon_picture_in_picture_alt_twotone = NotStr(''' + + +''') +icon_star_rate_twotone = NotStr(''' + + +''') +icon_local_movies_sharp = NotStr('''''') +icon_crop54_twotone = NotStr('''''') +icon_signal_cellular_no_sim_outlined = NotStr('''''') +icon_do_not_step_twotone = NotStr(''' + + +''') +icon_cloud_sync_round = NotStr('''''') +icon_perm_data_setting_twotone = NotStr('''''') +icon_mic_none_round = NotStr('''''') +icon_get_app_outlined = NotStr('''''') +icon_fitness_center_filled = NotStr('''''') +icon_snowmobile_filled = NotStr('''''') +icon_functions_twotone = NotStr('''''') +icon_outlined_flag_round = NotStr('''''') +icon_timer10_round = NotStr('''''') +icon_output_round = NotStr(''' + + +''') +icon_media_bluetooth_on_outlined = NotStr('''''') +icon_replay_outlined = NotStr('''''') +icon_north_twotone = NotStr('''''') +icon_brightness_medium_round = NotStr('''''') +icon_supervised_user_circle_round = NotStr('''''') +icon_watch_outlined = NotStr('''''') +icon_south_west_round = NotStr('''''') +icon_assistant_direction_round = NotStr('''''') +icon_ondemand_video_outlined = NotStr('''''') +icon_wb_sunny_outlined = NotStr('''''') +icon_get_app_round = NotStr('''''') +icon_arrow_back_ios_new_twotone = NotStr('''''') +icon_file_open_twotone = NotStr(''' + + +''') +icon_brightness6_round = NotStr('''''') +icon_emoji_food_beverage_twotone = NotStr(''' + + +''') +icon_stroller_round = NotStr('''''') +icon_lan_twotone = NotStr(''' + + +''') +icon_h_plus_mobiledata_outlined = NotStr('''''') +icon_anchor_round = NotStr('''''') +icon_emoji_food_beverage_outlined = NotStr('''''') +icon_palette_outlined = NotStr(''' + + + + + +''') +icon_miscellaneous_services_twotone = NotStr('''''') +icon_wifi_password_twotone = NotStr('''''') +icon_escalator_warning_round = NotStr('''''') +icon_cast_for_education_outlined = NotStr('''''') +icon_align_horizontal_left_round = NotStr('''''') +icon_volume_down_outlined = NotStr('''''') +icon_task_alt_filled = NotStr('''''') +icon_clear_all_outlined = NotStr('''''') +icon_tablet_mac_round = NotStr('''''') +icon_coronavirus_round = NotStr('''''') +icon_thumb_down_off_alt_twotone = NotStr(''' + + +''') +icon_radio_sharp = NotStr('''''') +icon_category_round = NotStr(''' + + + +''') +icon_photo_filter_filled = NotStr('''''') +icon_battery6_bar_round = NotStr('''''') +icon_work_off_round = NotStr('''''') +icon_flip_filled = NotStr('''''') +icon_disabled_by_default_sharp = NotStr('''''') +icon_wifi_off_twotone = NotStr('''''') +icon_close_twotone = NotStr('''''') +icon_swipe_down_alt_twotone = NotStr(''' + + +''') +icon_grid3_x3_sharp = NotStr('''''') +icon_integration_instructions_outlined = NotStr(''' + + +''') +icon_home_work_round = NotStr(''' + + +''') +icon_md18_mp_filled = NotStr('''''') +icon_wechat_sharp = NotStr(''' + + +''') +icon_exposure_zero_filled = NotStr('''''') +icon_bathroom_sharp = NotStr('''''') +icon_double_arrow_sharp = NotStr(''' + + +''') +icon_settings_applications_filled = NotStr('''''') +icon_gps_fixed_sharp = NotStr('''''') +icon_call_merge_twotone = NotStr('''''') +icon_menu_open_filled = NotStr('''''') +icon_key_outlined = NotStr('''''') +icon_roofing_twotone = NotStr(''' + + +''') +icon_file_upload_twotone = NotStr(''' + + +''') +icon_pix_twotone = NotStr(''' + + +''') +icon_format_textdirection_r_to_l_sharp = NotStr('''''') +icon_no_stroller_filled = NotStr('''''') +icon_replay_circle_filled_outlined = NotStr('''''') +icon_disabled_visible_twotone = NotStr(''' + + +''') +icon_sync_filled = NotStr('''''') +icon_power_off_filled = NotStr('''''') +icon_sentiment_satisfied_alt_outlined = NotStr(''' + + + +''') +icon_autorenew_round = NotStr('''''') +icon_cloud_sync_twotone = NotStr(''' + + +''') +icon_add_ic_call_sharp = NotStr('''''') +icon_explore_off_twotone = NotStr(''' + + +''') +icon_domain_disabled_sharp = NotStr('''''') +icon_phishing_round = NotStr('''''') +icon_wifi_channel_round = NotStr('''''') +icon_commit_sharp = NotStr('''''') +icon_email_filled = NotStr('''''') +icon_water_damage_round = NotStr('''''') +icon_signal_wifi4_bar_sharp = NotStr('''''') +icon_local_play_sharp = NotStr('''''') +icon_workspaces_outlined = NotStr('''''') +icon_smoke_free_filled = NotStr('''''') +icon_border_horizontal_round = NotStr('''''') +icon_calendar_view_month_twotone = NotStr(''' + + +''') +icon_battery4_bar_twotone = NotStr(''' + + +''') +icon_nightlight_round = NotStr('''''') +icon_do_not_disturb_on_filled = NotStr('''''') +icon_bedroom_baby_outlined = NotStr('''''') +icon_sell_outlined = NotStr(''' + + +''') +icon_filter6_sharp = NotStr('''''') +icon_md8_k_plus_sharp = NotStr('''''') +icon_filter_frames_twotone = NotStr(''' + + +''') +icon_translate_twotone = NotStr('''''') +icon_signal_wifi3_bar_round = NotStr(''' + + +''') +icon_join_inner_outlined = NotStr(''' + + +''') +icon_turned_in_filled = NotStr('''''') +icon_functions_round = NotStr('''''') +icon_location_off_filled = NotStr('''''') +icon_mode_edit_outlined = NotStr('''''') +icon_restaurant_menu_round = NotStr('''''') +icon_eco_round = NotStr('''''') +icon_style_outlined = NotStr(''' + + + +''') +icon_movie_outlined = NotStr('''''') +icon_lock_reset_sharp = NotStr('''''') +icon_interpreter_mode_round = NotStr('''''') +icon_water_drop_round = NotStr('''''') +icon_new_label_filled = NotStr('''''') +icon_accessible_forward_filled = NotStr(''' + + +''') +icon_assistant_twotone = NotStr(''' + + +''') +icon_format_indent_decrease_twotone = NotStr('''''') +icon_filter_b_and_w_round = NotStr('''''') +icon_star_border_purple500_outlined = NotStr('''''') +icon_more_filled = NotStr('''''') +icon_chat_outlined = NotStr('''''') +icon_hearing_disabled_outlined = NotStr('''''') +icon_subway_filled = NotStr(''' + + + +''') +icon_picture_in_picture_filled = NotStr('''''') +icon_directions_off_filled = NotStr(''' + + +''') +icon_filter9_plus_filled = NotStr('''''') +icon_roofing_filled = NotStr('''''') +icon_arrow_circle_down_sharp = NotStr('''''') +icon_store_round = NotStr('''''') +icon_iso_sharp = NotStr('''''') +icon_delete_outline_sharp = NotStr('''''') +icon_public_twotone = NotStr(''' + + +''') +icon_pool_filled = NotStr(''' + + +''') +icon_vertical_distribute_twotone = NotStr('''''') +icon_battery_unknown_outlined = NotStr('''''') +icon_hot_tub_filled = NotStr(''' + + +''') +icon_more_time_twotone = NotStr(''' + + + +''') +icon_raw_on_outlined = NotStr('''''') +icon_explore_off_round = NotStr('''''') +icon_playlist_add_circle_sharp = NotStr('''''') +icon_swipe_right_outlined = NotStr('''''') +icon_password_round = NotStr('''''') +icon_copyright_twotone = NotStr(''' + + +''') +icon_gpp_bad_twotone = NotStr(''' + + +''') +icon_directions_run_round = NotStr('''''') +icon_signal_wifi2_bar_twotone = NotStr(''' + + +''') +icon_difference_round = NotStr('''''') +icon_signal_wifi4_bar_lock_sharp = NotStr(''' + + +''') +icon_crib_round = NotStr('''''') +icon_align_horizontal_right_twotone = NotStr('''''') +icon_keyboard_arrow_left_filled = NotStr('''''') +icon_emoji_flags_round = NotStr('''''') +icon_currency_lira_sharp = NotStr('''''') +icon_headset_off_twotone = NotStr(''' + + +''') +icon_format_list_bulleted_sharp = NotStr('''''') +icon_local_activity_sharp = NotStr('''''') +icon_smart_button_sharp = NotStr('''''') +icon_ondemand_video_sharp = NotStr('''''') +icon_phishing_outlined = NotStr('''''') +icon_settings_remote_filled = NotStr('''''') +icon_line_axis_twotone = NotStr('''''') +icon_md360_filled = NotStr('''''') +icon_house_filled = NotStr('''''') +icon_low_priority_sharp = NotStr('''''') +icon_join_inner_sharp = NotStr(''' + + +''') +icon_living_twotone = NotStr(''' + + +''') +icon_add_link_twotone = NotStr('''''') +icon_rv_hookup_outlined = NotStr('''''') +icon_assistant_direction_filled = NotStr('''''') +icon_restaurant_round = NotStr('''''') +icon_rate_review_outlined = NotStr('''''') +icon_add_link_filled = NotStr('''''') +icon_pin_twotone = NotStr(''' + + + +''') +icon_add_comment_twotone = NotStr(''' + + +''') +icon_filter_round = NotStr('''''') +icon_crop169_outlined = NotStr('''''') +icon_airport_shuttle_outlined = NotStr('''''') +icon_electric_bike_sharp = NotStr('''''') +icon_leave_bags_at_home_twotone = NotStr(''' + + +''') +icon_hiking_round = NotStr('''''') +icon_log_in_sharp = NotStr(''' + + +''') +icon_photo_album_twotone = NotStr(''' + + +''') +icon_system_update_filled = NotStr('''''') +icon_music_note_outlined = NotStr('''''') +icon_pest_control_twotone = NotStr(''' + + + +''') +icon_confirmation_number_filled = NotStr('''''') +icon_mail_outlined = NotStr('''''') +icon_remove_road_round = NotStr('''''') +icon_battery_full_filled = NotStr('''''') +icon_md15_mp_sharp = NotStr(''' + + +''') +icon_mark_as_unread_sharp = NotStr(''' + + +''') +icon_surfing_sharp = NotStr('''''') +icon_stroller_outlined = NotStr('''''') +icon_bookmarks_filled = NotStr('''''') +icon_bar_chart_twotone = NotStr('''''') +icon_usb_filled = NotStr('''''') +icon_fmd_good_round = NotStr('''''') +icon_mode_night_round = NotStr('''''') +icon_person_remove_filled = NotStr('''''') +icon_view_timeline_twotone = NotStr(''' + + + +''') +icon_shop_two_round = NotStr('''''') +icon_collections_round = NotStr('''''') +icon_movie_filter_twotone = NotStr(''' + + +''') +icon_gif_box_round = NotStr('''''') +icon_add_chart_sharp = NotStr(''' + + +''') +icon_medication_filled = NotStr('''''') +icon_airplay_outlined = NotStr(''' + + +''') +icon_fork_right_sharp = NotStr('''''') +icon_rss_feed_round = NotStr(''' + + +''') +icon_boy_outlined = NotStr('''''') +icon_settings_overscan_outlined = NotStr('''''') +icon_laptop_windows_outlined = NotStr('''''') +icon_ice_skating_round = NotStr('''''') +icon_houseboat_round = NotStr('''''') +icon_airline_seat_legroom_extra_outlined = NotStr('''''') +icon_portrait_round = NotStr('''''') +icon_cloud_queue_filled = NotStr('''''') +icon_disabled_by_default_filled = NotStr('''''') +icon_network_wifi3_bar_outlined = NotStr('''''') +icon_ramp_right_round = NotStr('''''') +icon_king_bed_outlined = NotStr('''''') +icon_receipt_twotone = NotStr(''' + + +''') +icon_event_seat_filled = NotStr('''''') +icon_circle_notifications_twotone = NotStr(''' + + +''') +icon_edit_attributes_outlined = NotStr('''''') +icon_keyboard_arrow_up_outlined = NotStr('''''') +icon_electric_scooter_twotone = NotStr(''' + + +''') +icon_content_paste_go_filled = NotStr(''' + + +''') +icon_directions_boat_round = NotStr('''''') +icon_price_change_sharp = NotStr('''''') +icon_policy_filled = NotStr(''' + + +''') +icon_linked_camera_outlined = NotStr('''''') +icon_date_range_twotone = NotStr(''' + + +''') +icon_coffee_maker_round = NotStr(''' + + +''') +icon_park_twotone = NotStr(''' + + +''') +icon_screen_lock_rotation_outlined = NotStr('''''') +icon_wifi_tethering_off_sharp = NotStr('''''') +icon_zoom_out_outlined = NotStr('''''') +icon_edit_road_filled = NotStr('''''') +icon_keyboard_option_key_round = NotStr('''''') +icon_pan_tool_alt_outlined = NotStr('''''') +icon_app_blocking_filled = NotStr('''''') +icon_brightness_low_twotone = NotStr(''' + + +''') +icon_insert_chart_sharp = NotStr('''''') +icon_domain_disabled_round = NotStr('''''') +icon_upload_file_filled = NotStr('''''') +icon_filter_drama_twotone = NotStr(''' + + +''') +icon_panorama_wide_angle_filled = NotStr('''''') +icon_keyboard_capslock_sharp = NotStr('''''') +icon_not_equal_filled = NotStr(''' + + +''') +icon_battery90_sharp = NotStr(''' + + +''') +icon_apps_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet1_bar_round = NotStr(''' + + +''') +icon_highlight_twotone = NotStr(''' + + +''') +icon_delete_twotone = NotStr(''' + + +''') +icon_egg_twotone = NotStr(''' + + + +''') +icon_play_circle_outlined = NotStr('''''') +icon_insert_comment_twotone = NotStr(''' + + +''') +icon_cancel_presentation_sharp = NotStr('''''') +icon_contact_mail_filled = NotStr('''''') +icon_motion_photos_paused_sharp = NotStr('''''') +icon_light_outlined = NotStr('''''') +icon_update_sharp = NotStr('''''') +icon_tab_unselected_outlined = NotStr('''''') +icon_add_road_outlined = NotStr('''''') +icon_stacked_line_chart_outlined = NotStr('''''') +icon_format_size_twotone = NotStr('''''') +icon_hide_source_twotone = NotStr('''''') +icon_smoking_rooms_round = NotStr('''''') +icon_format_bold_sharp = NotStr('''''') +icon_forward_twotone = NotStr(''' + + +''') +icon_md3_k_plus_twotone = NotStr(''' + + + +''') +icon_usb_twotone = NotStr('''''') +icon_md4_mp_sharp = NotStr(''' + + +''') +icon_fastfood_round = NotStr('''''') +icon_next_week_round = NotStr('''''') +icon_spa_outlined = NotStr('''''') +icon_eject_sharp = NotStr('''''') +icon_repeat_on_sharp = NotStr('''''') +icon_score_filled = NotStr('''''') +icon_timer_off_sharp = NotStr('''''') +icon_arrow_circle_up_sharp = NotStr('''''') +icon_short_text_round = NotStr('''''') +icon_bluetooth_drive_sharp = NotStr(''' + + +''') +icon_adobe_round = NotStr('''''') +icon_video_settings_sharp = NotStr(''' + + +''') +icon_settings_power_filled = NotStr('''''') +icon_color_lens_round = NotStr('''''') +icon_shopping_cart_checkout_outlined = NotStr('''''') +icon_auto_fix_normal_filled = NotStr('''''') +icon_md360_round = NotStr('''''') +icon_apps_outage_outlined = NotStr('''''') +icon_bookmark_border_sharp = NotStr('''''') +icon_md4_g_mobiledata_filled = NotStr('''''') +icon_md10_mp_outlined = NotStr(''' + + +''') +icon_business_sharp = NotStr('''''') +icon_bloodtype_filled = NotStr('''''') +icon_content_paste_off_round = NotStr('''''') +icon_bedtime_off_twotone = NotStr(''' + + +''') +icon_no_sim_outlined = NotStr('''''') +icon_cloud_download_filled = NotStr('''''') +icon_drive_eta_filled = NotStr('''''') +icon_photo_album_outlined = NotStr('''''') +icon_switch_camera_filled = NotStr('''''') +icon_train_twotone = NotStr(''' + + + + +''') +icon_psychology_sharp = NotStr(''' + + +''') +icon_filter_list_off_outlined = NotStr('''''') +icon_volume_down_twotone = NotStr(''' + + +''') +icon_approval_round = NotStr('''''') +icon_md15_mp_twotone = NotStr(''' + + + + + +''') +icon_pool_round = NotStr(''' + + +''') +icon_find_in_page_round = NotStr('''''') +icon_coffee_sharp = NotStr('''''') +icon_wifi_off_sharp = NotStr('''''') +icon_local_grocery_store_round = NotStr('''''') +icon_md6_k_plus_outlined = NotStr(''' + + +''') +icon_add_task_twotone = NotStr('''''') +icon_luggage_outlined = NotStr('''''') +icon_settings_system_daydream_filled = NotStr('''''') +icon_stay_current_landscape_twotone = NotStr(''' + + +''') +icon_cake_filled = NotStr('''''') +icon_airline_seat_individual_suite_outlined = NotStr('''''') +icon_md4_k_plus_twotone = NotStr(''' + + + +''') +icon_check_circle_outline_outlined = NotStr('''''') +icon_rotate90_degrees_cw_filled = NotStr('''''') +icon_keyboard_double_arrow_down_round = NotStr(''' + + +''') +icon_nature_people_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet4_bar_round = NotStr('''''') +icon_baby_changing_station_round = NotStr('''''') +icon_cast_for_education_sharp = NotStr('''''') +icon_hdr_off_outlined = NotStr('''''') +icon_coffee_round = NotStr('''''') +icon_battery_charging20_twotone = NotStr(''' + + +''') +icon_adf_scanner_twotone = NotStr(''' + + + +''') +icon_data_usage_filled = NotStr('''''') +icon_voicemail_round = NotStr('''''') +icon_soup_kitchen_outlined = NotStr('''''') +icon_dashboard_round = NotStr('''''') +icon_looks4_round = NotStr('''''') +icon_sentiment_very_satisfied_round = NotStr('''''') +icon_gps_fixed_outlined = NotStr('''''') +icon_font_download_round = NotStr('''''') +icon_arrow_back_ios_new_outlined = NotStr('''''') +icon_pin_round = NotStr('''''') +icon_rss_feed_twotone = NotStr(''' + + +''') +icon_receipt_long_outlined = NotStr(''' + + +''') +icon_ramen_dining_round = NotStr('''''') +icon_font_download_off_twotone = NotStr(''' + + +''') +icon_inventory_round = NotStr(''' + + +''') +icon_forward_to_inbox_outlined = NotStr('''''') +icon_star_purple500_twotone = NotStr('''''') +icon_thumbs_up_down_round = NotStr('''''') +icon_flag_sharp = NotStr('''''') +icon_pool_twotone = NotStr(''' + + + + +''') +icon_autorenew_filled = NotStr('''''') +icon_dvr_filled = NotStr('''''') +icon_people_outline_twotone = NotStr(''' + + + +''') +icon_u_turn_right_twotone = NotStr('''''') +icon_groups_twotone = NotStr(''' + + +''') +icon_candlestick_chart_outlined = NotStr('''''') +icon_hardware_outlined = NotStr('''''') +icon_signal_cellular_nodata_outlined = NotStr('''''') +icon_co_present_sharp = NotStr(''' + + + +''') +icon_computer_sharp = NotStr('''''') +icon_workspace_premium_filled = NotStr('''''') +icon_print_outlined = NotStr(''' + + +''') +icon_gradient_round = NotStr('''''') +icon_style_sharp = NotStr('''''') +icon_barcode_outlined = NotStr('''''') +icon_wechat_outlined = NotStr(''' + + +''') +icon_timelapse_twotone = NotStr(''' + + +''') +icon_md24_mp_twotone = NotStr(''' + + + + + +''') +icon_sticky_note2_round = NotStr('''''') +icon_compare_outlined = NotStr('''''') +icon_waterfall_chart_filled = NotStr('''''') +icon_gif_outlined = NotStr('''''') +icon_logo_dev_round = NotStr(''' + + +''') +icon_star_rate_outlined = NotStr('''''') +icon_no_backpack_outlined = NotStr('''''') +icon_run_circle_twotone = NotStr(''' + + + + +''') +icon_fire_extinguisher_round = NotStr('''''') +icon_gamepad_filled = NotStr('''''') +icon_stairs_twotone = NotStr(''' + + +''') +icon_local_dining_filled = NotStr('''''') +icon_settings_input_svideo_outlined = NotStr('''''') +icon_local_shipping_twotone = NotStr(''' + + +''') +icon_format_align_justify_filled = NotStr('''''') +icon_new_releases_twotone = NotStr(''' + + +''') +icon_poll_filled = NotStr('''''') +icon_sim_card_download_outlined = NotStr(''' + + +''') +icon_photo_size_select_small_twotone = NotStr('''''') +icon_spatial_audio_off_twotone = NotStr(''' + + + + +''') +icon_system_security_update_warning_round = NotStr(''' + + + +''') +icon_account_balance_twotone = NotStr(''' + + +''') +icon_signal_cellular_connected_no_internet2_bar_round = NotStr(''' + + +''') +icon_ramp_left_outlined = NotStr('''''') +icon_hourglass_full_round = NotStr('''''') +icon_hdr_off_select_twotone = NotStr('''''') +icon_batch_prediction_sharp = NotStr('''''') +icon_pin_invoke_round = NotStr('''''') +icon_pix_sharp = NotStr(''' + + +''') +icon_signal_cellular_no_sim_twotone = NotStr(''' + + +''') +icon_add_box_sharp = NotStr('''''') +icon_podcasts_outlined = NotStr('''''') +icon_vape_free_filled = NotStr('''''') +icon_bookmark_round = NotStr('''''') +icon_skip_previous_filled = NotStr('''''') +icon_fiber_pin_twotone = NotStr(''' + + + +''') +icon_view_compact_alt_sharp = NotStr('''''') +icon_insert_comment_outlined = NotStr('''''') +icon_device_thermostat_sharp = NotStr('''''') +icon_network_cell_sharp = NotStr('''''') +icon_md8_k_plus_outlined = NotStr(''' + + + +''') +icon_view_comfy_alt_outlined = NotStr(''' + + +''') +icon_iso_twotone = NotStr(''' + + +''') +icon_east_sharp = NotStr('''''') +icon_stroller_sharp = NotStr('''''') +icon_fireplace_round = NotStr('''''') +icon_perm_contact_calendar_outlined = NotStr('''''') +icon_phone_sharp = NotStr('''''') +icon_local_phone_sharp = NotStr('''''') +icon_local_florist_twotone = NotStr(''' + + +''') +icon_equals_outlined = NotStr('''''') +icon_pin_drop_sharp = NotStr('''''') +icon_panorama_vertical_outlined = NotStr('''''') +icon_settings_brightness_twotone = NotStr(''' + + +''') +icon_healing_round = NotStr('''''') +icon_unfold_less_round = NotStr('''''') +icon_border_left_round = NotStr('''''') +icon_photo_library_outlined = NotStr('''''') +icon_article_round = NotStr('''''') +icon_open_with_round = NotStr('''''') +icon_report_twotone = NotStr(''' + + + + +''') +icon_boy_round = NotStr('''''') +icon_directions_boat_filled_round = NotStr('''''') +icon_create_new_folder_sharp = NotStr('''''') +icon_phone_paused_filled = NotStr('''''') +icon_leave_bags_at_home_sharp = NotStr('''''') +icon_forest_outlined = NotStr('''''') +icon_phone_paused_twotone = NotStr(''' + + +''') +icon_edgesensor_high_round = NotStr('''''') +icon_file_upload_sharp = NotStr('''''') +icon_candlestick_chart_filled = NotStr('''''') +icon_turn_left_filled = NotStr('''''') +icon_kebab_dining_outlined = NotStr('''''') +icon_speaker_filled = NotStr('''''') +icon_less_than_outlined = NotStr('''''') +icon_apple_twotone = NotStr('''''') +icon_local_pizza_filled = NotStr('''''') +icon_publish_round = NotStr('''''') +icon_hd_twotone = NotStr(''' + + +''') +icon_wifi_outlined = NotStr('''''') +icon_assistant_photo_twotone = NotStr(''' + + +''') +icon_offline_bolt_filled = NotStr('''''') +icon_woo_commerce_twotone = NotStr('''''') +icon_zoom_out_map_outlined = NotStr('''''') +icon_directions_railway_round = NotStr('''''') +icon_phonelink_setup_filled = NotStr('''''') +icon_fitbit_round = NotStr('''''') +icon_brightness5_outlined = NotStr('''''') +icon_motion_photos_pause_filled = NotStr('''''') +icon_layers_clear_twotone = NotStr(''' + + +''') +icon_signal_cellular_alt1_bar_filled = NotStr('''''') +icon_lunch_dining_outlined = NotStr('''''') +icon_manage_search_sharp = NotStr('''''') +icon_drag_indicator_outlined = NotStr('''''') +icon_account_circle_sharp = NotStr('''''') +icon_south_sharp = NotStr('''''') +icon_contact_support_outlined = NotStr('''''') +icon_border_top_twotone = NotStr('''''') +icon_wb_cloudy_sharp = NotStr('''''') +icon_javascript_filled = NotStr('''''') +icon_rate_review_round = NotStr('''''') +icon_tv_off_filled = NotStr('''''') +icon_h_mobiledata_filled = NotStr('''''') +icon_shop_outlined = NotStr('''''') +icon_raw_off_sharp = NotStr('''''') +icon_videocam_filled = NotStr('''''') +icon_keyboard_double_arrow_down_sharp = NotStr(''' + + +''') +icon_table_rows_round = NotStr('''''') +icon_filter_alt_outlined = NotStr('''''') +icon_format_strikethrough_round = NotStr('''''') +icon_landscape_round = NotStr('''''') +icon_md22_mp_round = NotStr(''' + + +''') +icon_access_time_filled_sharp = NotStr('''''') +icon_markunread_outlined = NotStr('''''') +icon_do_not_disturb_off_twotone = NotStr(''' + + +''') +icon_straighten_twotone = NotStr(''' + + +''') +icon_content_paste_twotone = NotStr(''' + + +''') +icon_sentiment_very_dissatisfied_round = NotStr('''''') +icon_synagogue_outlined = NotStr(''' + + +''') +icon_developer_board_sharp = NotStr('''''') +icon_phone_missed_filled = NotStr('''''') +icon_sports_martial_arts_sharp = NotStr(''' + + +''') +icon_battery1_bar_filled = NotStr('''''') +icon_fort_round = NotStr('''''') +icon_night_shelter_sharp = NotStr('''''') +icon_tonality_filled = NotStr('''''') +icon_inventory2_round = NotStr('''''') +icon_scale_round = NotStr('''''') +icon_control_point_duplicate_outlined = NotStr('''''') +icon_move_up_round = NotStr('''''') +icon_restore_from_trash_twotone = NotStr(''' + + +''') +icon_subdirectory_arrow_left_twotone = NotStr('''''') +icon_area_chart_filled = NotStr('''''') +icon_attach_file_round = NotStr('''''') +icon_wifi2_bar_twotone = NotStr('''''') +icon_local_convenience_store_outlined = NotStr('''''') +icon_md9_k_twotone = NotStr(''' + + + + + +''') +icon_pie_chart_outline_twotone = NotStr('''''') +icon_wysiwyg_twotone = NotStr(''' + + +''') +icon_memory_twotone = NotStr(''' + + +''') +icon_calendar_month_outlined = NotStr('''''') +icon_format_italic_round = NotStr('''''') +icon_screen_share_filled = NotStr('''''') +icon_event_note_twotone = NotStr(''' + + +''') +icon_wb_sunny_round = NotStr('''''') +icon_hdr_enhanced_select_filled = NotStr('''''') +icon_shopping_cart_twotone = NotStr(''' + + +''') +icon_taxi_alert_sharp = NotStr(''' + + +''') +icon_bookmark_add_sharp = NotStr('''''') +icon_textsms_outlined = NotStr('''''') +icon_pageview_filled = NotStr('''''') +icon_sailing_outlined = NotStr('''''') +icon_kebab_dining_filled = NotStr('''''') +icon_filter8_outlined = NotStr('''''') +icon_no_photography_twotone = NotStr(''' + + +''') +icon_memory_sharp = NotStr('''''') +icon_e_mobiledata_round = NotStr('''''') +icon_assistant_outlined = NotStr('''''') +icon_not_interested_outlined = NotStr('''''') +icon_brightness_high_round = NotStr('''''') +icon_segment_round = NotStr('''''') +icon_book_sharp = NotStr('''''') +icon_filter_b_and_w_filled = NotStr('''''') +icon_adobe_sharp = NotStr('''''') +icon_switch_video_twotone = NotStr(''' + + +''') +icon_fork_right_filled = NotStr('''''') +icon_local_offer_outlined = NotStr(''' + + +''') +icon_thumbs_up_down_filled = NotStr('''''') +icon_read_more_filled = NotStr('''''') +icon_insert_page_break_round = NotStr('''''') +icon_tag_twotone = NotStr('''''') +icon_keyboard_tab_round = NotStr('''''') +icon_recommend_outlined = NotStr(''' + + +''') +icon_do_not_disturb_round = NotStr('''''') +icon_swipe_left_alt_twotone = NotStr(''' + + +''') +icon_people_round = NotStr('''''') +icon_charging_station_filled = NotStr('''''') +icon_all_inbox_twotone = NotStr(''' + + +''') +icon_perm_scan_wifi_filled = NotStr('''''') +icon_visibility_off_outlined = NotStr('''''') +icon_arrow_forward_sharp = NotStr('''''') +icon_price_change_twotone = NotStr(''' + + + +''') +icon_support_twotone = NotStr(''' + + +''') +icon_boy_sharp = NotStr('''''') +icon_stars_sharp = NotStr('''''') +icon_lens_filled = NotStr('''''') +icon_support_agent_sharp = NotStr(''' + + + + +''') +icon_md21_mp_round = NotStr(''' + + +''') +icon_stroller_filled = NotStr(''' + + + +''') +icon_spa_round = NotStr('''''') +icon_content_paste_search_twotone = NotStr(''' + + + +''') +icon_view_comfy_outlined = NotStr('''''') +icon_offline_share_filled = NotStr('''''') +icon_aod_outlined = NotStr('''''') +icon_pentagon_round = NotStr('''''') +icon_pause_circle_outline_filled = NotStr('''''') +icon_local_play_round = NotStr('''''') +icon_rv_hookup_sharp = NotStr('''''') +icon_text_rotate_vertical_twotone = NotStr('''''') +icon_call_made_outlined = NotStr('''''') +icon_trending_down_twotone = NotStr('''''') +icon_view_headline_twotone = NotStr('''''') +icon_vertical_align_top_round = NotStr('''''') +icon_all_inbox_outlined = NotStr('''''') +icon_format_list_bulleted_outlined = NotStr('''''') +icon_nightlight_round_round = NotStr('''''') +icon_directions_car_filled_round = NotStr('''''') +icon_align_horizontal_center_outlined = NotStr('''''') +icon_drag_handle_twotone = NotStr('''''') +icon_gamepad_sharp = NotStr('''''') +icon_density_large_sharp = NotStr('''''') +icon_exposure_plus2_outlined = NotStr('''''') +icon_mode_edit_filled = NotStr('''''') +icon_flourescent_filled = NotStr('''''') +icon_http_outlined = NotStr('''''') +icon_chair_alt_outlined = NotStr('''''') +icon_directions_transit_outlined = NotStr(''' + + + +''') +icon_cloud_sync_sharp = NotStr('''''') +icon_moped_outlined = NotStr(''' + + +''') +icon_publish_twotone = NotStr(''' + + +''') +icon_remove_road_sharp = NotStr('''''') +icon_account_box_sharp = NotStr('''''') +icon_equalizer_outlined = NotStr('''''') +icon_r_mobiledata_filled = NotStr('''''') +icon_text_format_round = NotStr('''''') +icon_favorite_border_filled = NotStr('''''') +icon_cloud_circle_filled = NotStr('''''') +icon_video_settings_round = NotStr(''' + + +''') +icon_mode_round = NotStr('''''') +icon_library_books_filled = NotStr('''''') +icon_explicit_round = NotStr('''''') +icon_phone_forwarded_sharp = NotStr('''''') +icon_perm_data_setting_sharp = NotStr('''''') +icon_price_check_twotone = NotStr('''''') +icon_calculate_sharp = NotStr('''''') +icon_self_improvement_filled = NotStr(''' + + +''') +icon_pest_control_rodent_round = NotStr('''''') +icon_md17_mp_sharp = NotStr(''' + + +''') +icon_md5_k_plus_round = NotStr('''''') +icon_share_arrival_time_sharp = NotStr('''''') +icon_device_hub_filled = NotStr('''''') +icon_md60_fps_select_outlined = NotStr('''''') +icon_favorite_round = NotStr('''''') +icon_label_important_round = NotStr('''''') +icon_subject_outlined = NotStr('''''') +icon_emoji_objects_filled = NotStr('''''') +icon_adb_sharp = NotStr('''''') +icon_open_in_browser_sharp = NotStr('''''') +icon_admin_panel_settings_filled = NotStr(''' + + +''') +icon_brightness3_sharp = NotStr('''''') +icon_account_balance_wallet_outlined = NotStr(''' + + +''') +icon_incomplete_circle_round = NotStr('''''') +icon_label_twotone = NotStr(''' + + +''') +icon_domain_add_twotone = NotStr(''' + + +''') +icon_md2_k_twotone = NotStr(''' + + + +''') +icon_camera_roll_filled = NotStr('''''') +icon_screenshot_round = NotStr('''''') +icon_expand_twotone = NotStr('''''') +icon_content_paste_sharp = NotStr('''''') +icon_play_circle_filled_outlined = NotStr('''''') +icon_download_done_sharp = NotStr('''''') +icon_access_alarm_twotone = NotStr(''' + + +''') +icon_outbond_sharp = NotStr('''''') +icon_nearby_off_sharp = NotStr('''''') +icon_folder_shared_filled = NotStr('''''') +icon_palette_sharp = NotStr('''''') +icon_scuba_diving_sharp = NotStr('''''') +icon_roofing_outlined = NotStr('''''') +icon_ssid_chart_sharp = NotStr('''''') +icon_add_link_outlined = NotStr('''''') +icon_grid_view_twotone = NotStr(''' + + +''') +icon_less_than_equal_round = NotStr(''' + + +''') +icon_room_sharp = NotStr('''''') +icon_sports_martial_arts_filled = NotStr(''' + + +''') +icon_mobile_screen_share_sharp = NotStr('''''') +icon_landslide_outlined = NotStr('''''') +icon_pan_tool_outlined = NotStr('''''') +icon_panorama_wide_angle_select_round = NotStr('''''') +icon_temple_hindu_round = NotStr('''''') +icon_near_me_disabled_twotone = NotStr(''' + + +''') +icon_soap_round = NotStr('''''') +icon_minimize_filled = NotStr('''''') +icon_signal_wifi_statusbar_null_twotone = NotStr('''''') +icon_person_add_alt_outlined = NotStr('''''') +icon_format_list_bulleted_round = NotStr('''''') +icon_gavel_outlined = NotStr('''''') +icon_videocam_off_filled = NotStr('''''') +icon_align_horizontal_center_round = NotStr('''''') +icon_inventory2_sharp = NotStr('''''') +icon_vertical_align_top_outlined = NotStr('''''') +icon_event_available_round = NotStr('''''') +icon_view_cozy_twotone = NotStr(''' + + + +''') +icon_roundabout_left_outlined = NotStr('''''') +icon_smart_screen_filled = NotStr(''' + + +''') +icon_science_sharp = NotStr('''''') +icon_camera_indoor_sharp = NotStr('''''') +icon_signal_wifi_statusbar_null_round = NotStr('''''') +icon_swipe_up_round = NotStr('''''') +icon_calendar_view_month_round = NotStr('''''') +icon_blender_filled = NotStr('''''') +icon_attach_money_filled = NotStr('''''') +icon_room_outlined = NotStr(''' + + +''') +icon_queue_twotone = NotStr(''' + + +''') +icon_display_settings_round = NotStr(''' + + +''') +icon_picture_in_picture_twotone = NotStr(''' + + + +''') +icon_arrow_circle_left_round = NotStr('''''') +icon_tsunami_sharp = NotStr('''''') +icon_horizontal_rule_sharp = NotStr('''''') +icon_drive_file_rename_outline_round = NotStr('''''') +icon_delete_sweep_outlined = NotStr('''''') +icon_front_hand_round = NotStr('''''') +icon_queue_music_round = NotStr('''''') +icon_subject_filled = NotStr('''''') +icon_swap_vert_filled = NotStr('''''') +icon_dark_mode_twotone = NotStr(''' + + +''') +icon_rule_round = NotStr('''''') +icon_north_west_outlined = NotStr('''''') +icon_corporate_fare_round = NotStr('''''') +icon_signal_wifi2_bar_outlined = NotStr(''' + + +''') +icon_notifications_paused_filled = NotStr('''''') +icon_perm_contact_calendar_twotone = NotStr(''' + + +''') +icon_drive_folder_upload_outlined = NotStr('''''') +icon_dns_outlined = NotStr('''''') +icon_mark_email_unread_filled = NotStr('''''') +icon_sync_disabled_round = NotStr('''''') +icon_sentiment_slightly_dissatisfied_twotone = NotStr(''' + + +''') +icon_no_cell_round = NotStr('''''') +icon_swap_calls_outlined = NotStr('''''') +icon_interests_sharp = NotStr('''''') +icon_warehouse_outlined = NotStr('''''') +icon_open_in_browser_round = NotStr('''''') +icon_wifi_find_twotone = NotStr(''' + + + +''') +icon_precision_manufacturing_twotone = NotStr(''' + + + +''') +icon_repeat_twotone = NotStr('''''') +icon_highlight_alt_outlined = NotStr('''''') +icon_masks_outlined = NotStr('''''') +icon_task_round = NotStr('''''') +icon_message_filled = NotStr('''''') +icon_horizontal_split_outlined = NotStr('''''') +icon_system_update_round = NotStr('''''') +icon_present_to_all_filled = NotStr('''''') +icon_crop75_outlined = NotStr('''''') +icon_nordic_walking_filled = NotStr('''''') +icon_group_add_sharp = NotStr('''''') +icon_hide_image_twotone = NotStr(''' + + +''') +icon_airlines_round = NotStr('''''') +icon_signal_cellular_connected_no_internet4_bar_outlined = NotStr('''''') +icon_panorama_horizontal_sharp = NotStr('''''') +icon_timer_twotone = NotStr(''' + + + +''') +icon_hotel_outlined = NotStr('''''') +icon_gpp_good_outlined = NotStr('''''') +icon_add_chart_outlined = NotStr(''' + + +''') +icon_file_download_outlined = NotStr('''''') +icon_md10_k_filled = NotStr('''''') +icon_door_sliding_round = NotStr('''''') +icon_dialpad_round = NotStr('''''') +icon_markunread_mailbox_round = NotStr('''''') +icon_account_box_filled = NotStr('''''') +icon_roundabout_left_filled = NotStr('''''') +icon_elderly_woman_round = NotStr('''''') +icon_person_add_filled = NotStr('''''') +icon_snippet_folder_filled = NotStr('''''') +icon_check_circle_outlined = NotStr('''''') +icon_light_mode_filled = NotStr('''''') +icon_insights_outlined = NotStr(''' + + +''') +icon_share_location_round = NotStr(''' + + +''') +icon_settings_system_daydream_outlined = NotStr('''''') +icon_print_sharp = NotStr('''''') +icon_label_important_twotone = NotStr(''' + + +''') +icon_assignment_ind_outlined = NotStr('''''') +icon_battery50_round = NotStr(''' + + +''') +icon_playlist_add_check_circle_sharp = NotStr('''''') +icon_battery20_sharp = NotStr(''' + + +''') +icon_system_update_alt_sharp = NotStr('''''') +icon_battery4_bar_filled = NotStr('''''') +icon_summarize_twotone = NotStr(''' + + + + + +''') +icon_battery60_outlined = NotStr(''' + + +''') +icon_gif_filled = NotStr('''''') +icon_exposure_outlined = NotStr('''''') +icon_star_border_purple500_filled = NotStr('''''') +icon_manage_accounts_twotone = NotStr(''' + + + +''') +icon_mode_comment_outlined = NotStr('''''') +icon_breakfast_dining_sharp = NotStr('''''') +icon_alternate_email_round = NotStr('''''') +icon_compare_arrows_round = NotStr('''''') +icon_exposure_plus1_round = NotStr('''''') +icon_do_disturb_off_twotone = NotStr(''' + + +''') +icon_delete_sweep_round = NotStr('''''') +icon_skateboarding_sharp = NotStr('''''') +icon_stay_primary_landscape_sharp = NotStr('''''') +icon_md12_mp_twotone = NotStr(''' + + + + + +''') +icon_incomplete_circle_twotone = NotStr('''''') +icon_cloud_circle_round = NotStr('''''') +icon_iso_round = NotStr('''''') +icon_import_contacts_filled = NotStr('''''') +icon_table_view_filled = NotStr('''''') +icon_storefront_outlined = NotStr('''''') +icon_extension_outlined = NotStr('''''') +icon_error_outline_outlined = NotStr('''''') +icon_stadium_round = NotStr('''''') +icon_widgets_sharp = NotStr('''''') +icon_motion_photos_pause_twotone = NotStr('''''') +icon_view_agenda_round = NotStr('''''') +icon_av_timer_twotone = NotStr(''' + + + + +''') +icon_screen_search_desktop_outlined = NotStr(''' + + +''') +icon_http_twotone = NotStr('''''') +icon_flood_sharp = NotStr('''''') +icon_south_east_filled = NotStr('''''') +icon_swipe_vertical_round = NotStr('''''') +icon_mark_email_read_round = NotStr('''''') +icon_turn_slight_right_round = NotStr('''''') +icon_visibility_off_sharp = NotStr('''''') +icon_bookmarks_outlined = NotStr('''''') +icon_beenhere_sharp = NotStr('''''') +icon_do_not_disturb_off_sharp = NotStr('''''') +icon_table_view_twotone = NotStr(''' + + +''') +icon_volume_up_outlined = NotStr('''''') +icon_battery_charging60_round = NotStr(''' + + +''') +icon_table_rows_filled = NotStr('''''') +icon_format_overline_filled = NotStr('''''') +icon_wb_auto_round = NotStr('''''') +icon_expand_outlined = NotStr('''''') +icon_production_quantity_limits_round = NotStr('''''') +icon_battery6_bar_sharp = NotStr('''''') +icon_bluetooth_connected_round = NotStr('''''') +icon_business_center_twotone = NotStr(''' + + +''') +icon_request_page_twotone = NotStr(''' + + +''') +icon_signal_cellular1_bar_sharp = NotStr(''' + + +''') +icon_line_axis_round = NotStr('''''') +icon_playlist_add_circle_outlined = NotStr('''''') +icon_add_chart_round = NotStr(''' + + + +''') +icon_health_and_safety_outlined = NotStr('''''') +icon_desktop_mac_sharp = NotStr('''''') +icon_wc_round = NotStr('''''') +icon_send_time_extension_twotone = NotStr(''' + + + +''') +icon_person_add_alt1_twotone = NotStr(''' + + + +''') +icon_phone_enabled_filled = NotStr('''''') +icon_offline_bolt_round = NotStr('''''') +icon_domain_verification_sharp = NotStr(''' + + +''') +icon_cloud_queue_outlined = NotStr('''''') +icon_waves_round = NotStr('''''') +icon_vertical_split_round = NotStr('''''') +icon_games_round = NotStr('''''') +icon_filter6_round = NotStr('''''') +icon_wb_iridescent_round = NotStr('''''') +icon_stay_primary_landscape_twotone = NotStr(''' + + +''') +icon_transgender_outlined = NotStr('''''') +icon_bluetooth_disabled_twotone = NotStr('''''') +icon_sentiment_neutral_twotone = NotStr(''' + + + + + +''') +icon_storm_twotone = NotStr(''' + + + + +''') +icon_alt_route_round = NotStr('''''') +icon_difference_sharp = NotStr('''''') +icon_mic_sharp = NotStr(''' + + +''') +icon_looks4_outlined = NotStr('''''') +icon_egg_alt_sharp = NotStr('''''') +icon_expand_more_outlined = NotStr('''''') +icon_battery5_bar_sharp = NotStr('''''') +icon_expand_less_round = NotStr('''''') +icon_flight_twotone = NotStr('''''') +icon_numbers_outlined = NotStr('''''') +icon_noise_aware_filled = NotStr(''' + + +''') +icon_support_agent_outlined = NotStr(''' + + + + +''') +icon_charging_station_round = NotStr('''''') +icon_text_rotation_none_round = NotStr('''''') +icon_push_pin_outlined = NotStr('''''') +icon_change_circle_twotone = NotStr(''' + + +''') +icon_cell_tower_twotone = NotStr(''' + + +''') +icon_format_size_outlined = NotStr('''''') +icon_undo_outlined = NotStr('''''') +icon_h_plus_mobiledata_filled = NotStr('''''') +icon_brightness_low_sharp = NotStr('''''') +icon_track_changes_round = NotStr('''''') +icon_nordic_walking_outlined = NotStr('''''') +icon_fastfood_filled = NotStr('''''') +icon_inbox_twotone = NotStr(''' + + +''') +icon_adjust_round = NotStr('''''') +icon_md8_k_round = NotStr('''''') +icon_speaker_notes_round = NotStr('''''') +icon_downhill_skiing_outlined = NotStr('''''') +icon_subtitles_off_twotone = NotStr(''' + + + +''') +icon_headphones_round = NotStr('''''') +icon_videogame_asset_off_filled = NotStr('''''') +icon_sports_motorsports_round = NotStr(''' + + +''') +icon_brightness4_sharp = NotStr('''''') +icon_house_siding_twotone = NotStr(''' + + +''') +icon_local_police_round = NotStr('''''') +icon_keyboard_option_key_filled = NotStr('''''') +icon_crib_twotone = NotStr(''' + + +''') +icon_markunread_filled = NotStr('''''') +icon_download_for_offline_filled = NotStr('''''') +icon_airline_seat_legroom_reduced_filled = NotStr('''''') +icon_post_add_filled = NotStr(''' + + +''') +icon_crop_sharp = NotStr('''''') +icon_agriculture_twotone = NotStr(''' + + + +''') +icon_electric_rickshaw_outlined = NotStr('''''') +icon_phonelink_lock_sharp = NotStr('''''') +icon_do_disturb_alt_outlined = NotStr('''''') +icon_format_shapes_round = NotStr('''''') +icon_filter_hdr_round = NotStr('''''') +icon_nearby_error_round = NotStr(''' + + + +''') +icon_backpack_filled = NotStr('''''') +icon_forward5_twotone = NotStr('''''') +icon_highlight_alt_round = NotStr('''''') +icon_move_up_twotone = NotStr(''' + + +''') +icon_exposure_sharp = NotStr('''''') +icon_copy_all_outlined = NotStr('''''') +icon_playlist_play_sharp = NotStr('''''') +icon_assignment_ind_filled = NotStr('''''') +icon_window_filled = NotStr('''''') +icon_pause_circle_filled_filled = NotStr('''''') +icon_calculate_filled = NotStr('''''') +icon_saved_search_twotone = NotStr(''' + + +''') +icon_remove_red_eye_outlined = NotStr('''''') +icon_discount_twotone = NotStr(''' + + + + +''') +icon_pix_round = NotStr(''' + + +''') +icon_star_border_round = NotStr('''''') +icon_add_shopping_cart_sharp = NotStr('''''') +icon_accessibility_new_filled = NotStr('''''') +icon_view_array_round = NotStr('''''') +icon_transfer_within_a_station_filled = NotStr('''''') +icon_flip_camera_ios_twotone = NotStr(''' + + + +''') +icon_md6_ft_apart_round = NotStr('''''') +icon_settings_accessibility_sharp = NotStr('''''') +icon_face_round = NotStr('''''') +icon_do_not_disturb_on_sharp = NotStr('''''') +icon_perm_device_information_filled = NotStr('''''') +icon_pending_actions_sharp = NotStr('''''') +icon_playlist_add_check_circle_round = NotStr('''''') +icon_deselect_filled = NotStr('''''') +icon_scoreboard_outlined = NotStr('''''') +icon_directions_bike_outlined = NotStr('''''') +icon_punch_clock_round = NotStr(''' + + +''') +icon_fax_round = NotStr('''''') +icon_wrong_location_twotone = NotStr(''' + + + +''') +icon_format_align_left_round = NotStr('''''') +icon_tsunami_outlined = NotStr('''''') +icon_dialer_sip_round = NotStr('''''') +icon_vaping_rooms_filled = NotStr('''''') +icon_pin_off_sharp = NotStr(''' + + +''') +icon_light_mode_sharp = NotStr('''''') +icon_emoji_transportation_filled = NotStr(''' + + + +''') +icon_check_circle_outline_sharp = NotStr('''''') +icon_sentiment_very_dissatisfied_sharp = NotStr('''''') +icon_open_in_new_twotone = NotStr('''''') +icon_view_headline_outlined = NotStr('''''') +icon_cyclone_round = NotStr(''' + + +''') +icon_divide_sharp = NotStr('''''') +icon_no_sim_round = NotStr('''''') +icon_calendar_view_day_round = NotStr('''''') +icon_border_top_round = NotStr('''''') +icon_toc_outlined = NotStr('''''') +icon_system_update_sharp = NotStr('''''') +icon_pie_chart_outline_filled = NotStr('''''') +icon_keyboard_tab_sharp = NotStr('''''') +icon_reply_round = NotStr('''''') +icon_person_pin_sharp = NotStr('''''') +icon_looks_one_outlined = NotStr('''''') +icon_camera_outdoor_round = NotStr('''''') +icon_calendar_view_day_sharp = NotStr('''''') +icon_md8_k_sharp = NotStr('''''') +icon_app_settings_alt_sharp = NotStr('''''') +icon_home_max_outlined = NotStr('''''') +icon_key_round = NotStr('''''') +icon_flaky_filled = NotStr('''''') +icon_card_membership_round = NotStr('''''') +icon_insights_twotone = NotStr(''' + + +''') +icon_warning_amber_sharp = NotStr('''''') +icon_local_car_wash_twotone = NotStr(''' + + + + +''') +icon_show_chart_sharp = NotStr('''''') +icon_signal_cellular_no_sim_round = NotStr('''''') +icon_personal_injury_filled = NotStr('''''') +icon_group_work_filled = NotStr('''''') +icon_loop_round = NotStr('''''') +icon_wb_iridescent_sharp = NotStr('''''') +icon_md15_mp_round = NotStr(''' + + +''') +icon_fiber_pin_filled = NotStr('''''') +icon_enhanced_encryption_twotone = NotStr(''' + + +''') +icon_battery_saver_twotone = NotStr('''''') +icon_shield_moon_outlined = NotStr(''' + + +''') +icon_upcoming_outlined = NotStr('''''') +icon_alternate_email_filled = NotStr('''''') +icon_snowmobile_round = NotStr('''''') +icon_pin_end_round = NotStr('''''') +icon_exposure_round = NotStr('''''') +icon_space_dashboard_sharp = NotStr('''''') +icon_iron_round = NotStr('''''') +icon_do_not_disturb_outlined = NotStr('''''') +icon_nature_people_twotone = NotStr(''' + + + +''') +icon_arrow_forward_outlined = NotStr('''''') +icon_install_desktop_filled = NotStr(''' + + +''') +icon_screen_lock_portrait_twotone = NotStr(''' + + +''') +icon_assignment_filled = NotStr('''''') +icon_video_file_filled = NotStr('''''') +icon_transfer_within_a_station_sharp = NotStr('''''') +icon_car_rental_sharp = NotStr('''''') +icon_volume_off_twotone = NotStr(''' + + +''') +icon_open_in_new_sharp = NotStr('''''') +icon_south_east_round = NotStr('''''') +icon_height_round = NotStr('''''') +icon_format_color_reset_sharp = NotStr('''''') +icon_swipe_twotone = NotStr(''' + + + +''') +icon_signal_cellular4_bar_round = NotStr('''''') +icon_expand_circle_down_outlined = NotStr('''''') +icon_add_comment_filled = NotStr('''''') +icon_import_export_filled = NotStr('''''') +icon_mark_as_unread_twotone = NotStr(''' + + + + +''') +icon_power_settings_new_outlined = NotStr('''''') +icon_reply_outlined = NotStr('''''') +icon_king_bed_sharp = NotStr('''''') +icon_dvr_outlined = NotStr('''''') +icon_motion_photos_on_round = NotStr('''''') +icon_keyboard_double_arrow_up_filled = NotStr(''' + + +''') +icon_military_tech_sharp = NotStr('''''') +icon_av_timer_filled = NotStr('''''') +icon_telegram_outlined = NotStr('''''') +icon_clear_outlined = NotStr('''''') +icon_no_encryption_filled = NotStr('''''') +icon_payment_round = NotStr('''''') +icon_holiday_village_filled = NotStr('''''') +icon_roundabout_right_round = NotStr('''''') +icon_departure_board_round = NotStr('''''') +icon_view_column_outlined = NotStr('''''') +icon_dry_cleaning_sharp = NotStr('''''') +icon_linear_scale_sharp = NotStr('''''') +icon_audio_file_filled = NotStr('''''') +icon_bedroom_child_round = NotStr(''' + + +''') +icon_forward_outlined = NotStr('''''') +icon_location_off_sharp = NotStr('''''') +icon_password_sharp = NotStr('''''') +icon_settings_input_antenna_filled = NotStr('''''') +icon_pause_round = NotStr('''''') +icon_list_twotone = NotStr('''''') +icon_medical_information_round = NotStr('''''') +icon_lunch_dining_round = NotStr('''''') +icon_network_locked_filled = NotStr('''''') +icon_local_pharmacy_round = NotStr('''''') +icon_co_present_filled = NotStr(''' + + + +''') +icon_car_repair_sharp = NotStr('''''') +icon_filter_tilt_shift_filled = NotStr('''''') +icon_pages_outlined = NotStr('''''') +icon_egg_alt_round = NotStr('''''') +icon_thunderstorm_outlined = NotStr('''''') +icon_dining_outlined = NotStr('''''') +icon_no_flash_outlined = NotStr('''''') +icon_bedroom_child_sharp = NotStr(''' + + +''') +icon_traffic_sharp = NotStr('''''') +icon_euro_round = NotStr('''''') +icon_wb_shade_twotone = NotStr('''''') +icon_assignment_turned_in_round = NotStr('''''') +icon_share_arrival_time_round = NotStr('''''') +icon_roller_skating_twotone = NotStr(''' + + +''') +icon_get_app_sharp = NotStr('''''') +icon_signal_wifi_bad_sharp = NotStr('''''') +icon_call_missed_sharp = NotStr('''''') +icon_md3_p_sharp = NotStr('''''') +icon_interests_round = NotStr('''''') +icon_read_more_sharp = NotStr('''''') +icon_call_end_filled = NotStr('''''') +icon_watch_later_outlined = NotStr('''''') +icon_browser_not_supported_filled = NotStr('''''') +icon_turn_slight_right_twotone = NotStr('''''') +icon_chrome_reader_mode_round = NotStr('''''') +icon_camera_filled = NotStr('''''') +icon_change_history_outlined = NotStr('''''') +icon_filter_center_focus_filled = NotStr('''''') +icon_poll_outlined = NotStr('''''') +icon_dry_filled = NotStr('''''') +icon_closed_caption_disabled_round = NotStr('''''') +icon_auto_fix_high_sharp = NotStr('''''') +icon_keyboard_arrow_right_sharp = NotStr('''''') +icon_segment_outlined = NotStr('''''') +icon_animation_sharp = NotStr('''''') +icon_css_sharp = NotStr('''''') +icon_format_bold_outlined = NotStr('''''') +icon_report_problem_filled = NotStr('''''') +icon_md4_g_mobiledata_twotone = NotStr('''''') +icon_youtube_searched_for_twotone = NotStr('''''') +icon_language_filled = NotStr('''''') +icon_local_library_round = NotStr('''''') +icon_publish_filled = NotStr('''''') +icon_fire_extinguisher_sharp = NotStr('''''') +icon_tune_sharp = NotStr('''''') +icon_content_paste_search_sharp = NotStr(''' + + +''') +icon_md15_mp_outlined = NotStr(''' + + + +''') +icon_emoji_nature_outlined = NotStr('''''') +icon_lens_blur_sharp = NotStr('''''') +icon_splitscreen_filled = NotStr('''''') +icon_fireplace_filled = NotStr('''''') +icon_gif_round = NotStr('''''') +icon_md4_mp_round = NotStr(''' + + +''') +icon_account_balance_filled = NotStr('''''') +icon_hdr_on_outlined = NotStr('''''') +icon_subscriptions_outlined = NotStr('''''') +icon_warning_amber_filled = NotStr(''' + + +''') +icon_offline_share_outlined = NotStr(''' + + + +''') +icon_cameraswitch_outlined = NotStr(''' + + + +''') +icon_cruelty_free_round = NotStr('''''') +icon_rtt_filled = NotStr('''''') +icon_pets_outlined = NotStr(''' + + + + + +''') +icon_h_plus_mobiledata_round = NotStr('''''') +icon_remove_shopping_cart_round = NotStr('''''') +icon_check_circle_round = NotStr('''''') +icon_local_laundry_service_filled = NotStr('''''') +icon_inventory_twotone = NotStr(''' + + + +''') +icon_mark_chat_read_sharp = NotStr('''''') +icon_connecting_airports_outlined = NotStr('''''') +icon_md60_fps_outlined = NotStr('''''') +icon_extension_filled = NotStr('''''') +icon_compost_round = NotStr('''''') +icon_border_left_twotone = NotStr('''''') +icon_sports_basketball_twotone = NotStr(''' + + +''') +icon_data_object_round = NotStr('''''') +icon_polyline_filled = NotStr('''''') +icon_align_vertical_center_filled = NotStr('''''') +icon_slideshow_filled = NotStr('''''') +icon_sports_motorsports_sharp = NotStr(''' + + +''') +icon_gite_round = NotStr('''''') +icon_subdirectory_arrow_right_filled = NotStr('''''') +icon_living_filled = NotStr(''' + + + +''') +icon_single_bed_outlined = NotStr('''''') +icon_rss_feed_filled = NotStr(''' + + +''') +icon_pan_tool_alt_round = NotStr('''''') +icon_temple_buddhist_filled = NotStr(''' + + + +''') +icon_edit_off_sharp = NotStr('''''') +icon_filter7_outlined = NotStr('''''') +icon_code_off_twotone = NotStr('''''') +icon_signal_cellular0_bar_round = NotStr('''''') +icon_record_voice_over_outlined = NotStr('''''') +icon_wifi1_bar_filled = NotStr('''''') +icon_playlist_add_check_filled = NotStr('''''') +icon_tablet_round = NotStr('''''') +icon_brightness5_twotone = NotStr(''' + + +''') +icon_contactless_twotone = NotStr(''' + + + +''') +icon_add_ic_call_outlined = NotStr('''''') +icon_hourglass_disabled_filled = NotStr('''''') +icon_ac_unit_outlined = NotStr('''''') +icon_trip_origin_twotone = NotStr('''''') +icon_schema_filled = NotStr('''''') +icon_hdr_enhanced_select_outlined = NotStr('''''') +icon_redo_outlined = NotStr('''''') +icon_mic_none_outlined = NotStr('''''') +icon_disc_full_round = NotStr('''''') +icon_two_wheeler_outlined = NotStr('''''') +icon_phone_callback_filled = NotStr('''''') +icon_drive_file_move_round = NotStr('''''') +icon_kitchen_sharp = NotStr('''''') +icon_cast_connected_sharp = NotStr('''''') +icon_notifications_none_filled = NotStr('''''') +icon_group_off_round = NotStr('''''') +icon_eject_round = NotStr('''''') +icon_html_round = NotStr('''''') +icon_system_update_outlined = NotStr('''''') +icon_score_round = NotStr('''''') +icon_brightness5_round = NotStr('''''') +icon_sports_soccer_filled = NotStr('''''') +icon_keyboard_control_key_sharp = NotStr('''''') +icon_delete_filled = NotStr('''''') +icon_directions_railway_filled_round = NotStr('''''') +icon_mark_unread_chat_alt_round = NotStr(''' + + +''') +icon_open_in_full_filled = NotStr('''''') +icon_php_outlined = NotStr('''''') +icon_keyboard_double_arrow_right_round = NotStr(''' + + +''') +icon_child_care_sharp = NotStr(''' + + + +''') +icon_file_upload_filled = NotStr('''''') +icon_donut_small_outlined = NotStr('''''') +icon_next_plan_sharp = NotStr('''''') +icon_local_printshop_sharp = NotStr('''''') +icon_align_horizontal_center_sharp = NotStr('''''') +icon_pause_circle_filled_sharp = NotStr('''''') +icon_electric_scooter_outlined = NotStr(''' + + +''') +icon_hdr_strong_sharp = NotStr('''''') +icon_https_sharp = NotStr('''''') +icon_directions_subway_filled_sharp = NotStr('''''') +icon_real_estate_agent_filled = NotStr('''''') +icon_multiple_stop_round = NotStr('''''') +icon_equals_sharp = NotStr('''''') +icon_download_twotone = NotStr(''' + + +''') +icon_emergency_share_outlined = NotStr('''''') +icon_folder_zip_round = NotStr('''''') +icon_stacked_bar_chart_filled = NotStr('''''') +icon_temple_buddhist_sharp = NotStr(''' + + + +''') +icon_vpn_key_off_outlined = NotStr('''''') +icon_chat_sharp = NotStr('''''') +icon_sports_volleyball_round = NotStr('''''') +icon_perm_scan_wifi_outlined = NotStr('''''') +icon_emoji_food_beverage_round = NotStr('''''') +icon_view_list_round = NotStr('''''') +icon_kayaking_outlined = NotStr('''''') +icon_earbuds_battery_outlined = NotStr('''''') +icon_add_circle_outline_round = NotStr('''''') +icon_md5_g_round = NotStr('''''') +icon_data_array_sharp = NotStr('''''') +icon_battery_charging30_outlined = NotStr(''' + + +''') +icon_app_shortcut_round = NotStr(''' + + +''') +icon_ondemand_video_twotone = NotStr(''' + + +''') +icon_battery3_bar_outlined = NotStr('''''') +icon_maximize_sharp = NotStr('''''') +icon_baby_changing_station_filled = NotStr('''''') +icon_security_sharp = NotStr('''''') +icon_md21_mp_sharp = NotStr(''' + + +''') +icon_chrome_reader_mode_sharp = NotStr('''''') +icon_margin_sharp = NotStr('''''') +icon_signal_cellular_off_round = NotStr('''''') +icon_flight_outlined = NotStr('''''') +icon_high_quality_outlined = NotStr('''''') +icon_keyboard_hide_twotone = NotStr(''' + + +''') +icon_screen_share_outlined = NotStr('''''') +icon_md4_mp_twotone = NotStr(''' + + + + + +''') +icon_looks3_twotone = NotStr(''' + + +''') +icon_hls_sharp = NotStr('''''') +icon_history_edu_outlined = NotStr('''''') +icon_unarchive_filled = NotStr('''''') +icon_no_transfer_filled = NotStr('''''') +icon_vpn_lock_sharp = NotStr('''''') +icon_connect_without_contact_round = NotStr('''''') +icon_view_headline_sharp = NotStr('''''') +icon_personal_injury_sharp = NotStr('''''') +icon_connected_tv_outlined = NotStr('''''') +icon_md4_k_twotone = NotStr(''' + + +''') +icon_leaderboard_twotone = NotStr(''' + + +''') +icon_battery_charging20_filled = NotStr(''' + + +''') +icon_contact_page_outlined = NotStr('''''') +icon_online_prediction_sharp = NotStr('''''') +icon_directions_off_twotone = NotStr(''' + + +''') +icon_wifi_protected_setup_sharp = NotStr(''' + + +''') +icon_sd_card_alert_twotone = NotStr(''' + + +''') +icon_settings_suggest_sharp = NotStr('''''') +icon_phonelink_erase_round = NotStr('''''') +icon_attach_email_round = NotStr(''' + + +''') +icon_snooze_sharp = NotStr('''''') +icon_qr_code_twotone = NotStr(''' + + +''') +icon_md18_mp_sharp = NotStr(''' + + + +''') +icon_photo_size_select_small_round = NotStr('''''') +icon_subscriptions_twotone = NotStr(''' + + +''') +icon_north_east_filled = NotStr('''''') +icon_edit_notifications_sharp = NotStr('''''') +icon_vrpano_filled = NotStr('''''') +icon_stop_circle_outlined = NotStr('''''') +icon_filter_alt_sharp = NotStr('''''') +icon_sentiment_slightly_dissatisfied_outlined = NotStr(''' + + + +''') +icon_settings_cell_twotone = NotStr(''' + + +''') +icon_qr_code_scanner_filled = NotStr('''''') +icon_playlist_add_check_circle_filled = NotStr('''''') +icon_currency_lira_outlined = NotStr('''''') +icon_alternate_email_twotone = NotStr('''''') +icon_task_alt_outlined = NotStr('''''') +icon_exposure_zero_round = NotStr('''''') +icon_square_twotone = NotStr(''' + + +''') +icon_md1_x_mobiledata_filled = NotStr('''''') +icon_brightness_medium_twotone = NotStr(''' + + +''') +icon_view_column_sharp = NotStr('''''') +icon_next_week_sharp = NotStr('''''') +icon_md7_k_round = NotStr('''''') +icon_sports_gymnastics_round = NotStr('''''') +icon_villa_filled = NotStr('''''') +icon_history_edu_twotone = NotStr(''' + + + +''') +icon_airline_seat_flat_angled_sharp = NotStr('''''') +icon_new_label_outlined = NotStr('''''') +icon_no_accounts_sharp = NotStr(''' + + +''') +icon_phonelink_lock_round = NotStr(''' + + +''') +icon_cancel_round = NotStr('''''') +icon_pageview_round = NotStr('''''') +icon_home_max_filled = NotStr('''''') +icon_font_download_twotone = NotStr(''' + + +''') +icon_link_outlined = NotStr('''''') +icon_send_and_archive_twotone = NotStr(''' + + + +''') +icon_wb_shade_filled = NotStr('''''') +icon_delete_outline_round = NotStr('''''') +icon_md11_mp_round = NotStr(''' + + +''') +icon_noise_aware_round = NotStr(''' + + +''') +icon_battery_unknown_filled = NotStr('''''') +icon_local_movies_filled = NotStr('''''') +icon_aspect_ratio_outlined = NotStr('''''') +icon_supervisor_account_outlined = NotStr('''''') +icon_assignment_returned_twotone = NotStr(''' + + +''') +icon_table_chart_round = NotStr('''''') +icon_euro_twotone = NotStr('''''') +icon_picture_as_pdf_round = NotStr('''''') +icon_code_off_outlined = NotStr('''''') +icon_fitness_center_twotone = NotStr('''''') +icon_access_time_filled = NotStr(''' + + +''') +icon_lock_reset_filled = NotStr('''''') +icon_laptop_windows_twotone = NotStr(''' + + +''') +icon_view_timeline_sharp = NotStr('''''') +icon_online_prediction_round = NotStr('''''') +icon_stop_screen_share_sharp = NotStr('''''') +icon_apple_filled = NotStr('''''') +icon_warning_twotone = NotStr(''' + + +''') +icon_arrow_circle_right_outlined = NotStr('''''') +icon_emoji_events_twotone = NotStr(''' + + +''') +icon_construction_twotone = NotStr('''''') +icon_volume_mute_outlined = NotStr('''''') +icon_md5_k_filled = NotStr('''''') +icon_blur_off_twotone = NotStr(''' + + + + + + + + + + + + + +''') +icon_directions_bus_sharp = NotStr('''''') +icon_scanner_round = NotStr('''''') +icon_build_circle_outlined = NotStr(''' + + +''') +icon_loyalty_outlined = NotStr(''' + + + +''') +icon_filter3_twotone = NotStr(''' + + +''') +icon_star_rate_filled = NotStr('''''') +icon_insert_invitation_sharp = NotStr('''''') +icon_tour_outlined = NotStr('''''') +icon_medication_round = NotStr('''''') +icon_incomplete_circle_filled = NotStr('''''') +icon_backup_filled = NotStr('''''') +icon_skateboarding_filled = NotStr('''''') +icon_sim_card_round = NotStr('''''') +icon_network_wifi2_bar_outlined = NotStr('''''') +icon_save_outlined = NotStr('''''') +icon_access_alarm_round = NotStr('''''') +icon_shopping_bag_sharp = NotStr('''''') +icon_format_quote_filled = NotStr('''''') +icon_dirty_lens_round = NotStr('''''') +icon_text_rotation_down_sharp = NotStr('''''') +icon_theater_comedy_round = NotStr(''' + + +''') +icon_forward30_sharp = NotStr('''''') +icon_subway_twotone = NotStr(''' + + +''') +icon_mark_chat_read_twotone = NotStr(''' + + +''') +icon_stadium_outlined = NotStr('''''') +icon_directions_subway_filled_twotone = NotStr(''' + + + + +''') +icon_store_mall_directory_twotone = NotStr(''' + + +''') +icon_speed_outlined = NotStr(''' + + +''') +icon_motion_photos_auto_twotone = NotStr('''''') +icon_charging_station_outlined = NotStr('''''') +icon_disabled_visible_outlined = NotStr('''''') +icon_directions_boat_filled_twotone = NotStr(''' + + +''') +icon_flare_twotone = NotStr('''''') +icon_offline_pin_sharp = NotStr('''''') +icon_color_lens_outlined = NotStr(''' + + + + + +''') +icon_vertical_align_bottom_outlined = NotStr('''''') +icon_directions_walk_round = NotStr('''''') +icon_call_missed_outlined = NotStr('''''') +icon_navigate_before_sharp = NotStr('''''') +icon_pause_circle_filled_twotone = NotStr(''' + + + +''') +icon_md30_fps_select_twotone = NotStr('''''') +icon_running_with_errors_round = NotStr('''''') +icon_south_filled = NotStr('''''') +icon_control_point_twotone = NotStr(''' + + +''') +icon_people_outline_filled = NotStr('''''') +icon_md6_ft_apart_twotone = NotStr('''''') +icon_remove_from_queue_round = NotStr('''''') +icon_vertical_split_outlined = NotStr('''''') +icon_add_circle_outline_twotone = NotStr('''''') +icon_download_for_offline_sharp = NotStr('''''') +icon_swipe_up_alt_sharp = NotStr('''''') +icon_sentiment_very_dissatisfied_filled = NotStr(''' + + + +''') +icon_attachment_outlined = NotStr('''''') +icon_currency_yuan_outlined = NotStr('''''') +icon_sports_hockey_sharp = NotStr('''''') +icon_camera_alt_sharp = NotStr(''' + + +''') +icon_commute_outlined = NotStr('''''') +icon_stay_current_portrait_twotone = NotStr(''' + + +''') +icon_nightlife_filled = NotStr('''''') +icon_u_turn_right_outlined = NotStr('''''') +icon_straight_round = NotStr('''''') +icon_text_rotation_angledown_twotone = NotStr('''''') +icon_remove_circle_outline_twotone = NotStr('''''') +icon_snapchat_twotone = NotStr('''''') +icon_restaurant_twotone = NotStr('''''') +icon_settings_filled = NotStr('''''') +icon_php_filled = NotStr('''''') +icon_swipe_up_filled = NotStr('''''') +icon_directions_subway_filled_round = NotStr('''''') +icon_signal_cellular_connected_no_internet4_bar_sharp = NotStr('''''') +icon_recommend_filled = NotStr('''''') +icon_call_missed_filled = NotStr('''''') +icon_fmd_good_filled = NotStr('''''') +icon_car_rental_round = NotStr('''''') +icon_motion_photos_paused_round = NotStr('''''') +icon_coronavirus_filled = NotStr('''''') +icon_security_update_sharp = NotStr('''''') +icon_md60_fps_twotone = NotStr('''''') +icon_straighten_sharp = NotStr('''''') +icon_play_circle_outline_twotone = NotStr('''''') +icon_play_for_work_sharp = NotStr('''''') +icon_elderly_round = NotStr('''''') +icon_add_location_filled = NotStr('''''') +icon_notifications_outlined = NotStr('''''') +icon_local_police_outlined = NotStr('''''') +icon_usb_round = NotStr('''''') +icon_sync_disabled_filled = NotStr('''''') +icon_ad_units_outlined = NotStr(''' + + +''') +icon_flare_filled = NotStr('''''') +icon_send_to_mobile_filled = NotStr('''''') +icon_hardware_twotone = NotStr(''' + + +''') +icon_nightlife_twotone = NotStr('''''') +icon_agriculture_round = NotStr(''' + + +''') +icon_spatial_audio_off_filled = NotStr(''' + + + +''') +icon_design_services_filled = NotStr('''''') +icon_notes_sharp = NotStr('''''') +icon_info_twotone = NotStr(''' + + +''') +icon_swap_horizontal_circle_sharp = NotStr('''''') +icon_swap_horiz_round = NotStr('''''') +icon_border_vertical_outlined = NotStr('''''') +icon_admin_panel_settings_outlined = NotStr(''' + + + +''') +icon_get_app_filled = NotStr('''''') +icon_md9_mp_outlined = NotStr(''' + + + +''') +icon_woman_outlined = NotStr(''' + + +''') +icon_unarchive_sharp = NotStr('''''') +icon_swap_horiz_filled = NotStr('''''') +icon_kebab_dining_sharp = NotStr('''''') +icon_text_rotation_angleup_round = NotStr('''''') +icon_tab_unselected_round = NotStr('''''') +icon_mic_none_twotone = NotStr(''' + + +''') +icon_cable_outlined = NotStr('''''') +icon_filter7_round = NotStr('''''') +icon_sync_lock_sharp = NotStr('''''') +icon_settings_input_antenna_outlined = NotStr('''''') +icon_ssid_chart_filled = NotStr('''''') +icon_settings_input_composite_round = NotStr('''''') +icon_do_not_disturb_on_outlined = NotStr('''''') +icon_linear_scale_filled = NotStr('''''') +icon_airplanemode_inactive_round = NotStr('''''') +icon_sports_kabaddi_filled = NotStr(''' + + + +''') +icon_volume_mute_sharp = NotStr('''''') +icon_campaign_outlined = NotStr('''''') +icon_brightness_auto_twotone = NotStr(''' + + +''') +icon_add_reaction_round = NotStr('''''') +icon_cruelty_free_filled = NotStr('''''') +icon_zoom_in_round = NotStr('''''') +icon_plus_sharp = NotStr('''''') +icon_edit_location_alt_filled = NotStr(''' + + +''') +icon_workspaces_sharp = NotStr('''''') +icon_note_add_twotone = NotStr(''' + + +''') +icon_favorite_twotone = NotStr(''' + + +''') +icon_clear_all_twotone = NotStr('''''') +icon_arrow_back_ios_sharp = NotStr('''''') +icon_panorama_horizontal_twotone = NotStr(''' + + +''') +icon_cast_filled = NotStr('''''') +icon_timer3_select_outlined = NotStr('''''') +icon_assignment_return_round = NotStr('''''') +icon_switch_account_twotone = NotStr(''' + + +''') +icon_place_outlined = NotStr('''''') +icon_forward_round = NotStr('''''') +icon_add_location_outlined = NotStr('''''') +icon_directions_off_sharp = NotStr('''''') +icon_md24_mp_outlined = NotStr(''' + + + +''') +icon_monochrome_photos_outlined = NotStr('''''') +icon_chair_alt_filled = NotStr('''''') +icon_emergency_share_twotone = NotStr(''' + + +''') +icon_flashlight_off_twotone = NotStr(''' + + +''') +icon_no_drinks_sharp = NotStr('''''') +icon_phone_twotone = NotStr(''' + + +''') +icon_microwave_sharp = NotStr('''''') +icon_local_parking_twotone = NotStr('''''') +icon_video_stable_round = NotStr(''' + + +''') +icon_currency_yen_filled = NotStr('''''') +icon_volume_down_filled = NotStr('''''') +icon_gif_box_sharp = NotStr('''''') +icon_settings_phone_sharp = NotStr('''''') +icon_dehaze_sharp = NotStr('''''') +icon_flourescent_sharp = NotStr('''''') +icon_pivot_table_chart_round = NotStr('''''') +icon_switch_left_filled = NotStr('''''') +icon_laptop_mac_twotone = NotStr(''' + + +''') +icon_traffic_filled = NotStr('''''') +icon_apps_outlined = NotStr('''''') +icon_power_outlined = NotStr('''''') +icon_visibility_off_twotone = NotStr(''' + + +''') +icon_filter_twotone = NotStr(''' + + +''') +icon_settings_input_hdmi_round = NotStr('''''') +icon_fort_twotone = NotStr(''' + + +''') +icon_battery_charging50_round = NotStr(''' + + +''') +icon_yard_sharp = NotStr(''' + + +''') +icon_people_outline_sharp = NotStr('''''') +icon_text_rotate_vertical_outlined = NotStr('''''') +icon_api_outlined = NotStr('''''') +icon_devices_fold_filled = NotStr('''''') +icon_tapas_round = NotStr('''''') +icon_settings_applications_round = NotStr(''' + + +''') +icon_turn_right_sharp = NotStr('''''') +icon_bar_chart_round = NotStr('''''') +icon_airline_seat_recline_normal_twotone = NotStr('''''') +icon_downloading_outlined = NotStr('''''') +icon_control_point_duplicate_round = NotStr('''''') +icon_record_voice_over_filled = NotStr(''' + + +''') +icon_battery_full_round = NotStr('''''') +icon_arrow_drop_down_twotone = NotStr('''''') +icon_campaign_twotone = NotStr(''' + + +''') +icon_auto_fix_off_outlined = NotStr('''''') +icon_play_arrow_twotone = NotStr(''' + + +''') +icon_crop54_filled = NotStr('''''') +icon_alarm_add_outlined = NotStr('''''') +icon_vpn_key_outlined = NotStr('''''') +icon_perm_device_information_outlined = NotStr('''''') +icon_pentagon_twotone = NotStr(''' + + +''') +icon_center_focus_weak_outlined = NotStr('''''') +icon_qr_code2_outlined = NotStr('''''') +icon_no_meals_sharp = NotStr('''''') +icon_toggle_on_twotone = NotStr(''' + + +''') +icon_percent_twotone = NotStr('''''') +icon_pattern_twotone = NotStr('''''') +icon_web_asset_off_outlined = NotStr('''''') +icon_account_circle_twotone = NotStr(''' + + +''') +icon_fax_twotone = NotStr(''' + + + + + + + +''') +icon_panorama_wide_angle_sharp = NotStr('''''') +icon_view_carousel_filled = NotStr('''''') +icon_remove_circle_sharp = NotStr('''''') +icon_snowshoeing_round = NotStr('''''') +icon_closed_caption_disabled_twotone = NotStr(''' + + +''') +icon_location_disabled_round = NotStr('''''') +icon_md23_mp_outlined = NotStr(''' + + + +''') +icon_local_post_office_sharp = NotStr('''''') +icon_female_round = NotStr('''''') +icon_view_sidebar_round = NotStr('''''') +icon_deblur_sharp = NotStr(''' + + + + + + + + + + + + + +''') +icon_play_disabled_twotone = NotStr(''' + + +''') +icon_hd_round = NotStr('''''') +icon_mark_email_unread_sharp = NotStr('''''') +icon_no_cell_outlined = NotStr('''''') +icon_horizontal_split_sharp = NotStr('''''') +icon_maps_home_work_sharp = NotStr(''' + + +''') +icon_sim_card_alert_filled = NotStr('''''') +icon_divide_filled = NotStr('''''') +icon_fast_forward_sharp = NotStr('''''') +icon_monitor_round = NotStr('''''') +icon_battery30_twotone = NotStr(''' + + +''') +icon_bike_scooter_round = NotStr(''' + + +''') +icon_amp_stories_round = NotStr('''''') +icon_single_bed_filled = NotStr('''''') +icon_more_horiz_filled = NotStr('''''') +icon_snooze_twotone = NotStr('''''') +icon_format_list_numbered_rtl_outlined = NotStr('''''') +icon_camera_rear_filled = NotStr('''''') +icon_burst_mode_filled = NotStr('''''') +icon_spatial_audio_sharp = NotStr(''' + + + +''') +icon_blur_linear_sharp = NotStr('''''') +icon_emergency_sharp = NotStr('''''') +icon_lock_clock_twotone = NotStr(''' + + + +''') +icon_auto_graph_round = NotStr('''''') +icon_emergency_recording_outlined = NotStr('''''') +icon_format_clear_sharp = NotStr('''''') +icon_fork_left_filled = NotStr('''''') +icon_science_twotone = NotStr(''' + + +''') +icon_imagesearch_roller_round = NotStr('''''') +icon_mp_twotone = NotStr(''' + + + + +''') +icon_lightbulb_filled = NotStr('''''') +icon_signal_cellular4_bar_sharp = NotStr('''''') +icon_airline_seat_flat_round = NotStr('''''') +icon_restore_page_filled = NotStr('''''') +icon_local_grocery_store_filled = NotStr('''''') +icon_comments_disabled_round = NotStr('''''') +icon_local_activity_outlined = NotStr('''''') +icon_hdr_on_select_twotone = NotStr('''''') +icon_blur_on_sharp = NotStr('''''') +icon_compost_sharp = NotStr('''''') +icon_file_download_sharp = NotStr('''''') +icon_md5_mp_twotone = NotStr(''' + + + + + +''') +icon_videogame_asset_outlined = NotStr(''' + + + +''') +icon_factory_round = NotStr('''''') +icon_cancel_schedule_send_outlined = NotStr(''' + + +''') +icon_grid_goldenratio_twotone = NotStr('''''') +icon_attachment_filled = NotStr('''''') +icon_person_add_disabled_outlined = NotStr('''''') +icon_md360_outlined = NotStr('''''') +icon_person_search_outlined = NotStr('''''') +icon_group_add_filled = NotStr('''''') +icon_video_label_twotone = NotStr(''' + + +''') +icon_dock_outlined = NotStr('''''') +icon_panorama_vertical_sharp = NotStr('''''') +icon_view_comfy_alt_sharp = NotStr('''''') +icon_sms_failed_twotone = NotStr(''' + + +''') +icon_pageview_outlined = NotStr('''''') +icon_turn_sharp_right_twotone = NotStr('''''') +icon_install_desktop_outlined = NotStr(''' + + +''') +icon_recent_actors_sharp = NotStr('''''') +icon_sensors_outlined = NotStr('''''') +icon_golf_course_round = NotStr(''' + + +''') +icon_credit_card_off_outlined = NotStr('''''') +icon_directions_sharp = NotStr('''''') +icon_circle_notifications_filled = NotStr('''''') +icon_backpack_outlined = NotStr('''''') +icon_pinch_round = NotStr('''''') +icon_shopping_cart_round = NotStr('''''') +icon_mic_off_filled = NotStr('''''') +icon_facebook_twotone = NotStr('''''') +icon_electrical_services_twotone = NotStr(''' + + +''') +icon_hdr_off_round = NotStr('''''') +icon_md2_mp_filled = NotStr('''''') +icon_compare_sharp = NotStr('''''') +icon_male_sharp = NotStr('''''') +icon_assignment_return_sharp = NotStr('''''') +icon_waves_twotone = NotStr('''''') +icon_forward_to_inbox_twotone = NotStr(''' + + +''') +icon_repeat_one_outlined = NotStr('''''') +icon_assignment_ind_round = NotStr('''''') +icon_bakery_dining_twotone = NotStr(''' + + +''') +icon_rectangle_round = NotStr('''''') +icon_swap_vertical_circle_twotone = NotStr(''' + + +''') +icon_directions_twotone = NotStr(''' + + +''') +icon_flag_circle_sharp = NotStr('''''') +icon_key_off_sharp = NotStr('''''') +icon_how_to_vote_filled = NotStr('''''') +icon_grid_off_sharp = NotStr('''''') +icon_filter1_round = NotStr('''''') +icon_airplanemode_inactive_sharp = NotStr('''''') +icon_vpn_key_sharp = NotStr('''''') +icon_keyboard_double_arrow_right_outlined = NotStr(''' + + +''') +icon_fmd_bad_round = NotStr('''''') +icon_shuffle_twotone = NotStr('''''') +icon_festival_outlined = NotStr('''''') +icon_rowing_sharp = NotStr('''''') +icon_auto_fix_high_outlined = NotStr('''''') +icon_nfc_twotone = NotStr('''''') +icon_thumb_down_outlined = NotStr('''''') +icon_request_quote_sharp = NotStr('''''') +icon_no_transfer_round = NotStr('''''') +icon_create_round = NotStr('''''') +icon_crop_rotate_round = NotStr('''''') +icon_navigate_before_round = NotStr('''''') +icon_backspace_outlined = NotStr('''''') +icon_add_circle_outline_sharp = NotStr('''''') +icon_screen_search_desktop_twotone = NotStr(''' + + + +''') +icon_notification_add_round = NotStr('''''') +icon_linear_scale_round = NotStr('''''') +icon_play_circle_round = NotStr('''''') +icon_insert_photo_outlined = NotStr('''''') +icon_md3_d_rotation_twotone = NotStr('''''') +icon_drafts_filled = NotStr('''''') +icon_grid_on_sharp = NotStr('''''') +icon_turn_slight_right_filled = NotStr('''''') +icon_star_purple500_sharp = NotStr('''''') +icon_crop_original_outlined = NotStr('''''') +icon_fact_check_sharp = NotStr('''''') +icon_save_as_filled = NotStr('''''') +icon_note_add_filled = NotStr('''''') +icon_contrast_twotone = NotStr('''''') +icon_format_strikethrough_outlined = NotStr('''''') +icon_face_retouching_natural_round = NotStr(''' + + + + +''') +icon_airline_seat_legroom_extra_filled = NotStr('''''') +icon_delete_round = NotStr('''''') +icon_terminal_filled = NotStr('''''') +icon_web_asset_off_round = NotStr('''''') +icon_dialpad_outlined = NotStr('''''') +icon_panorama_vertical_select_sharp = NotStr('''''') +icon_screen_search_desktop_round = NotStr(''' + + +''') +icon_wifi_find_filled = NotStr(''' + + +''') +icon_phonelink_erase_outlined = NotStr('''''') +icon_control_camera_sharp = NotStr(''' + + +''') +icon_music_video_round = NotStr(''' + + +''') +icon_business_center_outlined = NotStr('''''') +icon_bus_alert_outlined = NotStr(''' + + + + +''') +icon_headset_sharp = NotStr('''''') +icon_image_aspect_ratio_filled = NotStr('''''') +icon_safety_check_outlined = NotStr('''''') +icon_flash_auto_sharp = NotStr('''''') +icon_child_friendly_twotone = NotStr(''' + + +''') +icon_data_exploration_twotone = NotStr(''' + + +''') +icon_hourglass_empty_sharp = NotStr('''''') +icon_snapchat_sharp = NotStr('''''') +icon_pest_control_outlined = NotStr(''' + + +''') +icon_bloodtype_sharp = NotStr('''''') +icon_signal_wifi3_bar_twotone = NotStr(''' + + +''') +icon_filter_hdr_twotone = NotStr(''' + + +''') +icon_numbers_twotone = NotStr('''''') +icon_signal_cellular_alt1_bar_sharp = NotStr('''''') +icon_density_small_outlined = NotStr('''''') +icon_thumb_up_off_alt_sharp = NotStr('''''') +icon_signal_wifi1_bar_lock_twotone = NotStr(''' + + +''') +icon_local_pizza_outlined = NotStr('''''') +icon_hub_round = NotStr('''''') +icon_do_not_touch_twotone = NotStr(''' + + +''') +icon_flag_twotone = NotStr(''' + + +''') +icon_downloading_round = NotStr('''''') +icon_message_round = NotStr('''''') +icon_analytics_outlined = NotStr(''' + + +''') +icon_forward5_round = NotStr('''''') +icon_redeem_filled = NotStr('''''') +icon_keyboard_backspace_round = NotStr('''''') +icon_directions_car_outlined = NotStr(''' + + + +''') +icon_park_round = NotStr('''''') +icon_mediation_sharp = NotStr('''''') +icon_videocam_twotone = NotStr(''' + + +''') +icon_radio_outlined = NotStr(''' + + +''') +icon_display_settings_sharp = NotStr(''' + + +''') +icon_network_wifi1_bar_filled = NotStr('''''') +icon_motion_photos_off_outlined = NotStr('''''') +icon_gite_filled = NotStr('''''') +icon_medical_services_sharp = NotStr('''''') +icon_call_to_action_round = NotStr('''''') +icon_signal_wifi_statusbar_null_sharp = NotStr('''''') +icon_perm_scan_wifi_round = NotStr('''''') +icon_sports_baseball_twotone = NotStr(''' + + + + +''') +icon_backup_table_sharp = NotStr(''' + + +''') +icon_add_to_photos_filled = NotStr('''''') +icon_app_registration_round = NotStr(''' + + + + + + +''') +icon_highlight_off_round = NotStr('''''') +icon_add_to_photos_round = NotStr('''''') +icon_ballot_filled = NotStr('''''') +icon_pie_chart_outlined = NotStr('''''') +icon_dashboard_customize_twotone = NotStr(''' + + +''') +icon_merge_type_sharp = NotStr('''''') +icon_remove_shopping_cart_twotone = NotStr(''' + + + +''') +icon_waving_hand_sharp = NotStr('''''') +icon_equals_twotone = NotStr('''''') +icon_catching_pokemon_filled = NotStr('''''') +icon_bolt_outlined = NotStr('''''') +icon_local_gas_station_filled = NotStr('''''') +icon_control_camera_round = NotStr(''' + + +''') +icon_rice_bowl_outlined = NotStr('''''') +icon_water_twotone = NotStr('''''') +icon_widgets_filled = NotStr('''''') +icon_card_giftcard_filled = NotStr('''''') +icon_screen_lock_rotation_sharp = NotStr('''''') +icon_add_card_round = NotStr('''''') +icon_share_filled = NotStr('''''') +icon_whatsapp_outlined = NotStr('''''') +icon_south_east_twotone = NotStr('''''') +icon_settings_overscan_twotone = NotStr(''' + + +''') +icon_library_music_filled = NotStr('''''') +icon_filter_tilt_shift_round = NotStr('''''') +icon_delivery_dining_twotone = NotStr(''' + + + +''') +icon_not_started_filled = NotStr('''''') +icon_image_search_sharp = NotStr('''''') +icon_md4_k_filled = NotStr('''''') +icon_monitor_twotone = NotStr(''' + + +''') +icon_linear_scale_twotone = NotStr('''''') +icon_photo_size_select_actual_twotone = NotStr(''' + + +''') +icon_star_outline_round = NotStr('''''') +icon_border_bottom_sharp = NotStr('''''') +icon_my_location_round = NotStr('''''') +icon_hardware_sharp = NotStr('''''') +icon_arrow_left_filled = NotStr('''''') +icon_person_search_twotone = NotStr(''' + + + + +''') +icon_horizontal_split_filled = NotStr('''''') +icon_important_devices_twotone = NotStr(''' + + +''') +icon_equalizer_twotone = NotStr('''''') +icon_dns_sharp = NotStr('''''') +icon_skip_previous_twotone = NotStr(''' + + +''') +icon_thumb_up_alt_sharp = NotStr('''''') +icon_vrpano_round = NotStr('''''') +icon_report_off_twotone = NotStr(''' + + + + +''') +icon_deblur_twotone = NotStr(''' + + + + + + + + + + + + + + +''') +icon_airline_seat_legroom_extra_sharp = NotStr('''''') +icon_hail_filled = NotStr('''''') +icon_sports_soccer_round = NotStr('''''') +icon_folder_special_outlined = NotStr('''''') +icon_control_point_filled = NotStr('''''') +icon_md9_k_filled = NotStr('''''') +icon_audio_file_sharp = NotStr('''''') +icon_church_round = NotStr('''''') +icon_checkroom_outlined = NotStr('''''') +icon_high_quality_round = NotStr('''''') +icon_comment_filled = NotStr('''''') +icon_md3_k_plus_round = NotStr('''''') +icon_motorcycle_twotone = NotStr(''' + + +''') +icon_system_security_update_warning_twotone = NotStr(''' + + + + +''') +icon_center_focus_weak_sharp = NotStr('''''') +icon_supervisor_account_filled = NotStr('''''') +icon_rounded_corner_sharp = NotStr('''''') +icon_battery_charging_full_filled = NotStr('''''') +icon_taxi_alert_outlined = NotStr(''' + + + + +''') +icon_table_restaurant_round = NotStr('''''') +icon_settings_input_component_round = NotStr('''''') +icon_view_module_sharp = NotStr('''''') +icon_free_cancellation_round = NotStr('''''') +icon_directions_filled = NotStr('''''') +icon_power_settings_new_round = NotStr('''''') +icon_videogame_asset_filled = NotStr('''''') +icon_track_changes_twotone = NotStr('''''') +icon_medical_services_twotone = NotStr(''' + + + +''') +icon_flash_on_round = NotStr('''''') +icon_playlist_play_twotone = NotStr('''''') +icon_vpn_key_filled = NotStr('''''') +icon_dns_round = NotStr('''''') +icon_panorama_fish_eye_outlined = NotStr('''''') +icon_volume_down_round = NotStr('''''') +icon_local_phone_round = NotStr('''''') +icon_security_update_good_twotone = NotStr(''' + + +''') +icon_flip_to_back_filled = NotStr('''''') +icon_data_thresholding_outlined = NotStr(''' + + +''') +icon_md3_k_sharp = NotStr('''''') +icon_local_post_office_twotone = NotStr(''' + + +''') +icon_audiotrack_round = NotStr('''''') +icon_no_photography_outlined = NotStr('''''') +icon_no_drinks_round = NotStr('''''') +icon_hourglass_top_twotone = NotStr(''' + + + +''') +icon_reorder_outlined = NotStr('''''') +icon_tune_twotone = NotStr('''''') +icon_rv_hookup_twotone = NotStr(''' + + +''') +icon_piano_sharp = NotStr('''''') +icon_bluetooth_drive_twotone = NotStr(''' + + + + + +''') +icon_follow_the_signs_filled = NotStr('''''') +icon_checkroom_filled = NotStr('''''') +icon_md2_mp_sharp = NotStr(''' + + +''') +icon_satellite_sharp = NotStr('''''') +icon_signal_cellular_null_sharp = NotStr('''''') +icon_pan_tool_round = NotStr('''''') +icon_forest_twotone = NotStr(''' + + +''') +icon_more_horiz_twotone = NotStr('''''') +icon_sms_round = NotStr('''''') +icon_reviews_sharp = NotStr('''''') +icon_support_agent_twotone = NotStr(''' + + + + +''') +icon_pending_filled = NotStr('''''') +icon_severe_cold_filled = NotStr('''''') +icon_girl_round = NotStr('''''') +icon_score_twotone = NotStr(''' + + +''') +icon_disabled_by_default_round = NotStr('''''') +icon_camera_roll_outlined = NotStr('''''') +icon_mobile_friendly_round = NotStr('''''') +icon_stay_primary_portrait_twotone = NotStr(''' + + +''') +icon_directions_subway_outlined = NotStr(''' + + + +''') +icon_waving_hand_filled = NotStr('''''') +icon_video_call_sharp = NotStr('''''') +icon_directions_bike_round = NotStr('''''') +icon_tire_repair_sharp = NotStr(''' + + +''') +icon_signal_cellular0_bar_outlined = NotStr('''''') +icon_cloud_off_filled = NotStr('''''') +icon_md4_k_plus_round = NotStr('''''') +icon_local_mall_outlined = NotStr('''''') +icon_u_turn_right_round = NotStr('''''') +icon_bluetooth_round = NotStr('''''') +icon_shuffle_on_outlined = NotStr('''''') +icon_book_online_round = NotStr('''''') +icon_border_style_round = NotStr('''''') +icon_sports_mma_outlined = NotStr(''' + + +''') +icon_mic_none_filled = NotStr('''''') +icon_loupe_sharp = NotStr('''''') +icon_camera_rear_round = NotStr('''''') +icon_unpublished_sharp = NotStr('''''') +icon_blur_circular_filled = NotStr('''''') +icon_airline_seat_individual_suite_filled = NotStr('''''') +icon_invert_colors_off_filled = NotStr('''''') +icon_on_device_training_sharp = NotStr(''' + + + +''') +icon_navigate_next_sharp = NotStr('''''') +icon_timer10_select_outlined = NotStr('''''') +icon_save_all_round = NotStr(''' + + +''') +icon_event_available_filled = NotStr('''''') +icon_iron_sharp = NotStr('''''') +icon_local_gas_station_outlined = NotStr('''''') +icon_carpenter_outlined = NotStr('''''') +icon_keyboard_backspace_sharp = NotStr('''''') +icon_insert_emoticon_sharp = NotStr('''''') +icon_check_box_outline_blank_filled = NotStr('''''') +icon_send_sharp = NotStr('''''') +icon_adobe_twotone = NotStr('''''') +icon_flip_camera_android_sharp = NotStr(''' + + +''') +icon_portrait_twotone = NotStr(''' + + +''') +icon_format_underlined_twotone = NotStr('''''') +icon_brightness5_sharp = NotStr('''''') +icon_local_taxi_filled = NotStr('''''') +icon_currency_yuan_twotone = NotStr('''''') +icon_signal_cellular_connected_no_internet3_bar_twotone = NotStr(''' + + +''') +icon_hdr_strong_filled = NotStr('''''') +icon_keyboard_voice_sharp = NotStr('''''') +icon_search_filled = NotStr('''''') +icon_camera_sharp = NotStr('''''') +icon_toys_filled = NotStr('''''') +icon_play_circle_sharp = NotStr('''''') +icon_golf_course_outlined = NotStr(''' + + +''') +icon_file_download_done_filled = NotStr('''''') +icon_redeem_outlined = NotStr('''''') +icon_hearing_round = NotStr('''''') +icon_text_snippet_outlined = NotStr('''''') +icon_exit_to_app_sharp = NotStr('''''') +icon_format_italic_twotone = NotStr('''''') +icon_shopping_bag_outlined = NotStr('''''') +icon_volunteer_activism_round = NotStr('''''') +icon_forward5_filled = NotStr(''' + + +''') +icon_ios_share_sharp = NotStr(''' + + +''') +icon_festival_filled = NotStr('''''') +icon_data_object_outlined = NotStr('''''') +icon_align_vertical_center_round = NotStr('''''') +icon_travel_explore_round = NotStr('''''') +icon_speaker_notes_off_sharp = NotStr('''''') +icon_web_asset_off_filled = NotStr('''''') +icon_data_thresholding_sharp = NotStr('''''') +icon_cancel_presentation_round = NotStr('''''') +icon_border_outer_sharp = NotStr('''''') +icon_border_outer_twotone = NotStr('''''') +icon_smoke_free_outlined = NotStr('''''') +icon_event_twotone = NotStr(''' + + +''') +icon_earbuds_battery_round = NotStr('''''') +icon_reply_twotone = NotStr('''''') +icon_battery_charging80_outlined = NotStr(''' + + +''') +icon_report_filled = NotStr('''''') +icon_perm_device_information_twotone = NotStr(''' + + +''') +icon_folder_special_sharp = NotStr('''''') +icon_cloud_filled = NotStr('''''') +icon_people_filled = NotStr('''''') +icon_engineering_twotone = NotStr(''' + + +''') +icon_whatshot_sharp = NotStr('''''') +icon_swap_horiz_twotone = NotStr('''''') +icon_density_large_filled = NotStr('''''') +icon_mark_email_unread_twotone = NotStr(''' + + +''') +icon_other_houses_twotone = NotStr(''' + + +''') +icon_commit_round = NotStr('''''') +icon_grading_filled = NotStr('''''') +icon_query_builder_sharp = NotStr('''''') +icon_wifi_protected_setup_twotone = NotStr(''' + + +''') +icon_stay_current_landscape_sharp = NotStr('''''') +icon_remove_circle_outline_sharp = NotStr('''''') +icon_photo_camera_round = NotStr(''' + + +''') +icon_roller_skating_outlined = NotStr('''''') +icon_gesture_round = NotStr('''''') +icon_md8_mp_sharp = NotStr(''' + + + +''') +icon_mosque_twotone = NotStr(''' + + +''') +icon_holiday_village_round = NotStr('''''') +icon_md7_mp_round = NotStr(''' + + +''') +icon_bedroom_baby_round = NotStr(''' + + +''') +icon_shopping_bag_twotone = NotStr(''' + + +''') +icon_swipe_left_alt_outlined = NotStr('''''') +icon_lunch_dining_twotone = NotStr(''' + + +''') +icon_medical_information_twotone = NotStr(''' + + +''') +icon_local_taxi_twotone = NotStr(''' + + + + +''') +icon_female_outlined = NotStr('''''') +icon_gps_fixed_round = NotStr('''''') +icon_smoking_rooms_twotone = NotStr(''' + + +''') +icon_perm_data_setting_round = NotStr('''''') +icon_signal_cellular_off_twotone = NotStr('''''') +icon_md2_k_plus_filled = NotStr('''''') +icon_restore_outlined = NotStr('''''') +icon_spellcheck_round = NotStr('''''') +icon_signal_cellular0_bar_twotone = NotStr('''''') +icon_volume_off_outlined = NotStr('''''') +icon_lock_open_filled = NotStr('''''') +icon_quora_round = NotStr('''''') +icon_arrow_upward_sharp = NotStr('''''') +icon_restore_filled = NotStr('''''') +icon_grain_twotone = NotStr('''''') +icon_photo_camera_front_twotone = NotStr(''' + + +''') +icon_filter_vintage_round = NotStr('''''') +icon_no_flash_sharp = NotStr('''''') +icon_vertical_split_sharp = NotStr('''''') +icon_no_backpack_round = NotStr('''''') +icon_disabled_visible_round = NotStr('''''') +icon_today_filled = NotStr('''''') +icon_queue_music_outlined = NotStr('''''') +icon_interpreter_mode_twotone = NotStr(''' + + +''') +icon_line_weight_round = NotStr('''''') +icon_note_alt_outlined = NotStr(''' + + +''') +icon_mood_bad_outlined = NotStr('''''') +icon_stadium_twotone = NotStr(''' + + +''') +icon_swap_horizontal_circle_twotone = NotStr(''' + + +''') +icon_u_turn_left_round = NotStr('''''') +icon_move_up_filled = NotStr('''''') +icon_phone_locked_twotone = NotStr(''' + + + +''') +icon_directions_subway_round = NotStr('''''') +icon_landscape_twotone = NotStr(''' + + +''') +icon_data_array_twotone = NotStr('''''') +icon_bookmark_remove_filled = NotStr('''''') +icon_checklist_filled = NotStr('''''') +icon_burst_mode_round = NotStr('''''') +icon_md60_fps_select_twotone = NotStr('''''') +icon_notifications_off_filled = NotStr('''''') +icon_mood_outlined = NotStr('''''') +icon_nightlight_outlined = NotStr('''''') +icon_leak_remove_outlined = NotStr('''''') +icon_spa_twotone = NotStr(''' + + + + +''') +icon_border_inner_filled = NotStr('''''') +icon_md9_k_plus_filled = NotStr('''''') +icon_polyline_twotone = NotStr(''' + + +''') +icon_local_pharmacy_twotone = NotStr(''' + + +''') +icon_keyboard_return_round = NotStr('''''') +icon_password_outlined = NotStr('''''') +icon_data_array_filled = NotStr('''''') +icon_recycling_filled = NotStr('''''') +icon_rss_feed_outlined = NotStr(''' + + +''') +icon_warning_filled = NotStr('''''') +icon_airline_seat_flat_outlined = NotStr('''''') +icon_elderly_woman_sharp = NotStr('''''') +icon_single_bed_twotone = NotStr(''' + + +''') +icon_flip_camera_ios_sharp = NotStr('''''') +icon_keyboard_double_arrow_left_outlined = NotStr(''' + + +''') +icon_sign_language_sharp = NotStr('''''') +icon_battery60_sharp = NotStr(''' + + +''') +icon_call_received_sharp = NotStr('''''') +icon_map_twotone = NotStr(''' + + +''') +icon_accessibility_round = NotStr('''''') +icon_west_sharp = NotStr('''''') +icon_next_plan_filled = NotStr('''''') +icon_place_twotone = NotStr(''' + + +''') +icon_carpenter_round = NotStr('''''') +icon_text_rotation_none_sharp = NotStr('''''') +icon_flutter_dash_sharp = NotStr('''''') +icon_card_giftcard_outlined = NotStr('''''') +icon_elevator_filled = NotStr('''''') +icon_ac_unit_round = NotStr('''''') +icon_arrow_back_ios_filled = NotStr('''''') +icon_library_add_check_outlined = NotStr('''''') +icon_folder_copy_outlined = NotStr('''''') +icon_sledding_filled = NotStr('''''') +icon_transit_enterexit_round = NotStr('''''') +icon_dangerous_sharp = NotStr('''''') +icon_brightness3_round = NotStr('''''') +icon_gps_not_fixed_sharp = NotStr('''''') +icon_gpp_bad_filled = NotStr('''''') +icon_flashlight_on_outlined = NotStr(''' + + +''') +icon_brightness7_twotone = NotStr(''' + + + +''') +icon_pie_chart_sharp = NotStr('''''') +icon_tapas_filled = NotStr('''''') +icon_text_snippet_twotone = NotStr(''' + + +''') +icon_more_horiz_round = NotStr('''''') +icon_multiple_stop_twotone = NotStr('''''') +icon_pin_drop_outlined = NotStr(''' + + +''') +icon_reduce_capacity_round = NotStr('''''') +icon_no_encryption_gmailerrorred_twotone = NotStr(''' + + +''') +icon_signal_wifi0_bar_twotone = NotStr('''''') +icon_pause_circle_outline_sharp = NotStr('''''') +icon_directions_outlined = NotStr('''''') +icon_vertical_align_center_filled = NotStr('''''') +icon_call_missed_outgoing_outlined = NotStr('''''') +icon_local_mall_sharp = NotStr('''''') +icon_attach_money_round = NotStr('''''') +icon_supervised_user_circle_outlined = NotStr('''''') +icon_signal_wifi4_bar_round = NotStr('''''') +icon_restaurant_filled = NotStr('''''') +icon_piano_off_sharp = NotStr('''''') +icon_ramp_left_filled = NotStr('''''') +icon_arrow_back_outlined = NotStr('''''') +icon_md8_k_filled = NotStr('''''') +icon_directions_boat_filled_outlined = NotStr('''''') +icon_screen_rotation_alt_round = NotStr('''''') +icon_hourglass_full_sharp = NotStr('''''') +icon_repeat_outlined = NotStr('''''') +icon_currency_bitcoin_outlined = NotStr('''''') +icon_crop54_round = NotStr('''''') +icon_md1_k_plus_sharp = NotStr('''''') +icon_mood_bad_filled = NotStr('''''') +icon_snowshoeing_twotone = NotStr('''''') +icon_accessible_sharp = NotStr(''' + + +''') +icon_currency_pound_outlined = NotStr('''''') +icon_paid_filled = NotStr('''''') +icon_history_outlined = NotStr('''''') +icon_today_round = NotStr('''''') +icon_wifi2_bar_sharp = NotStr('''''') +icon_room_service_round = NotStr('''''') +icon_wifi_channel_twotone = NotStr(''' + + +''') +icon_merge_type_filled = NotStr('''''') +icon_safety_divider_sharp = NotStr('''''') +icon_label_off_sharp = NotStr('''''') +icon_church_sharp = NotStr('''''') +icon_umbrella_sharp = NotStr('''''') +icon_unsubscribe_twotone = NotStr(''' + + +''') +icon_play_circle_outline_round = NotStr('''''') +icon_broken_image_sharp = NotStr('''''') +icon_icecream_twotone = NotStr(''' + + +''') +icon_text_rotate_up_sharp = NotStr('''''') +icon_plus_one_round = NotStr('''''') +icon_polyline_outlined = NotStr('''''') +icon_local_fire_department_round = NotStr(''' + + +''') +icon_add_photo_alternate_twotone = NotStr(''' + + + +''') +icon_perm_contact_calendar_round = NotStr('''''') +icon_library_books_round = NotStr('''''') +icon_houseboat_sharp = NotStr('''''') +icon_change_circle_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet2_bar_outlined = NotStr(''' + + +''') +icon_crop_square_round = NotStr('''''') +icon_library_music_sharp = NotStr('''''') +icon_token_twotone = NotStr(''' + + +''') +icon_warning_outlined = NotStr('''''') +icon_dry_cleaning_round = NotStr('''''') +icon_gpp_good_round = NotStr('''''') +icon_flight_land_filled = NotStr('''''') +icon_query_stats_outlined = NotStr('''''') +icon_filter5_outlined = NotStr('''''') +icon_balance_filled = NotStr('''''') +icon_list_alt_round = NotStr('''''') +icon_format_paint_outlined = NotStr('''''') +icon_event_busy_sharp = NotStr('''''') +icon_location_city_twotone = NotStr('''''') +icon_attach_money_sharp = NotStr('''''') +icon_sms_failed_sharp = NotStr('''''') +icon_display_settings_outlined = NotStr(''' + + +''') +icon_business_center_round = NotStr('''''') +icon_voice_over_off_outlined = NotStr('''''') +icon_done_outline_round = NotStr('''''') +icon_money_outlined = NotStr('''''') +icon_flip_twotone = NotStr('''''') +icon_synagogue_twotone = NotStr(''' + + + +''') +icon_lan_outlined = NotStr('''''') +icon_swipe_right_sharp = NotStr('''''') +icon_mark_as_unread_filled = NotStr('''''') +icon_smartphone_twotone = NotStr(''' + + +''') +icon_perm_media_twotone = NotStr(''' + + +''') +icon_more_sharp = NotStr('''''') +icon_child_friendly_outlined = NotStr('''''') +icon_check_box_outline_blank_sharp = NotStr('''''') +icon_arrow_circle_down_twotone = NotStr(''' + + +''') +icon_gif_box_twotone = NotStr(''' + + +''') +icon_military_tech_twotone = NotStr(''' + + +''') +icon_print_disabled_round = NotStr('''''') +icon_aspect_ratio_sharp = NotStr('''''') +icon_streetview_sharp = NotStr(''' + + + +''') +icon_incomplete_circle_sharp = NotStr('''''') +icon_check_box_outline_blank_round = NotStr('''''') +icon_drive_file_move_rtl_outlined = NotStr('''''') +icon_laptop_chromebook_filled = NotStr('''''') +icon_visibility_off_round = NotStr('''''') +icon_baby_changing_station_twotone = NotStr('''''') +icon_play_arrow_round = NotStr('''''') +icon_microwave_twotone = NotStr(''' + + +''') +icon_md11_mp_twotone = NotStr(''' + + + + + +''') +icon_border_bottom_round = NotStr('''''') +icon_notification_add_outlined = NotStr('''''') +icon_schedule_sharp = NotStr('''''') +icon_clear_all_filled = NotStr('''''') +icon_inventory_sharp = NotStr(''' + + +''') +icon_reply_filled = NotStr('''''') +icon_perm_contact_calendar_filled = NotStr('''''') +icon_format_align_left_sharp = NotStr('''''') +icon_developer_mode_round = NotStr('''''') +icon_elderly_outlined = NotStr('''''') +icon_android_outlined = NotStr('''''') +icon_headset_off_filled = NotStr('''''') +icon_fitbit_outlined = NotStr('''''') +icon_view_quilt_sharp = NotStr('''''') +icon_flaky_round = NotStr('''''') +icon_polymer_round = NotStr('''''') +icon_apps_outage_twotone = NotStr('''''') +icon_shopping_bag_filled = NotStr('''''') +icon_fiber_manual_record_sharp = NotStr('''''') +icon_high_quality_twotone = NotStr(''' + + +''') +icon_wifi1_bar_sharp = NotStr('''''') +icon_cloud_twotone = NotStr(''' + + +''') +icon_close_fullscreen_round = NotStr('''''') +icon_do_disturb_alt_twotone = NotStr('''''') +icon_airplay_round = NotStr('''''') +icon_flashlight_on_twotone = NotStr(''' + + + +''') +icon_thumb_down_twotone = NotStr(''' + + +''') +icon_more_round = NotStr('''''') +icon_accessibility_twotone = NotStr('''''') +icon_paid_sharp = NotStr('''''') +icon_place_round = NotStr('''''') +icon_design_services_round = NotStr('''''') +icon_king_bed_round = NotStr('''''') +icon_check_circle_outline_round = NotStr('''''') +icon_payment_outlined = NotStr('''''') +icon_qr_code2_filled = NotStr('''''') +icon_flight_class_round = NotStr('''''') +icon_subtitles_off_outlined = NotStr(''' + + +''') +icon_code_sharp = NotStr('''''') +icon_sports_soccer_sharp = NotStr('''''') +icon_key_off_twotone = NotStr(''' + + +''') +icon_favorite_border_sharp = NotStr('''''') +icon_format_strikethrough_twotone = NotStr('''''') +icon_settings_cell_round = NotStr('''''') +icon_camera_alt_outlined = NotStr('''''') +icon_sensor_window_twotone = NotStr(''' + + +''') +icon_car_crash_sharp = NotStr('''''') +icon_format_italic_outlined = NotStr('''''') +icon_headphones_battery_filled = NotStr('''''') +icon_call_merge_round = NotStr('''''') +icon_coffee_filled = NotStr('''''') +icon_keyboard_double_arrow_left_sharp = NotStr(''' + + +''') +icon_merge_type_outlined = NotStr('''''') +icon_schedule_send_filled = NotStr('''''') +icon_add_photo_alternate_outlined = NotStr('''''') +icon_contact_mail_round = NotStr('''''') +icon_euro_filled = NotStr('''''') +icon_roundabout_left_twotone = NotStr('''''') +icon_featured_video_sharp = NotStr('''''') +icon_hdr_enhanced_select_round = NotStr('''''') +icon_broken_image_outlined = NotStr('''''') +icon_swipe_up_outlined = NotStr('''''') +icon_contact_page_sharp = NotStr('''''') +icon_baby_changing_station_sharp = NotStr('''''') +icon_android_sharp = NotStr('''''') +icon_format_line_spacing_filled = NotStr('''''') +icon_palette_twotone = NotStr(''' + + + + + + +''') +icon_battery_charging60_sharp = NotStr(''' + + +''') +icon_person_outline_filled = NotStr('''''') +icon_add_a_photo_sharp = NotStr('''''') +icon_calendar_month_filled = NotStr('''''') +icon_backup_table_twotone = NotStr(''' + + + +''') +icon_brightness_auto_filled = NotStr('''''') +icon_wifi_calling3_outlined = NotStr(''' + + + +''') +icon_add_photo_alternate_round = NotStr('''''') +icon_align_vertical_center_twotone = NotStr('''''') +icon_text_snippet_round = NotStr('''''') +icon_filter9_plus_round = NotStr('''''') +icon_roundabout_right_twotone = NotStr('''''') +icon_pivot_table_chart_sharp = NotStr('''''') +icon_location_on_twotone = NotStr(''' + + + +''') +icon_border_outer_outlined = NotStr('''''') +icon_battery_charging50_outlined = NotStr(''' + + +''') +icon_newspaper_filled = NotStr('''''') +icon_sports_kabaddi_sharp = NotStr(''' + + + +''') +icon_sailing_round = NotStr('''''') +icon_gpp_maybe_sharp = NotStr('''''') +icon_cell_wifi_twotone = NotStr('''''') +icon_person_off_filled = NotStr('''''') +icon_cameraswitch_round = NotStr(''' + + +''') +icon_reset_tv_filled = NotStr('''''') +icon_e_mobiledata_sharp = NotStr('''''') +icon_swipe_right_alt_twotone = NotStr(''' + + +''') +icon_scuba_diving_round = NotStr('''''') +icon_airline_seat_legroom_reduced_sharp = NotStr('''''') +icon_fork_right_round = NotStr('''''') +icon_card_travel_filled = NotStr('''''') +icon_text_rotate_vertical_round = NotStr('''''') +icon_shuffle_round = NotStr('''''') +icon_diamond_sharp = NotStr('''''') +icon_border_all_round = NotStr('''''') +icon_reorder_sharp = NotStr('''''') +icon_start_filled = NotStr('''''') +icon_work_outline_sharp = NotStr('''''') +icon_logo_dev_filled = NotStr(''' + + +''') +icon_post_add_twotone = NotStr(''' + + +''') +icon_wb_iridescent_twotone = NotStr(''' + + +''') +icon_read_more_outlined = NotStr('''''') +icon_h_mobiledata_outlined = NotStr('''''') +icon_timer3_twotone = NotStr('''''') +icon_fiber_pin_round = NotStr('''''') +icon_bedtime_off_sharp = NotStr('''''') +icon_md123_outlined = NotStr('''''') +icon_sports_bar_filled = NotStr('''''') +icon_bathroom_outlined = NotStr('''''') +icon_new_releases_sharp = NotStr('''''') +icon_divide_outlined = NotStr('''''') +icon_smoke_free_round = NotStr('''''') +icon_extension_off_round = NotStr('''''') +icon_face_retouching_off_outlined = NotStr(''' + + +''') +icon_arrow_left_twotone = NotStr('''''') +icon_folder_twotone = NotStr(''' + + +''') +icon_format_list_bulleted_twotone = NotStr(''' + + + + +''') +icon_priority_high_sharp = NotStr(''' + + +''') +icon_spa_filled = NotStr('''''') +icon_medication_outlined = NotStr('''''') +icon_portrait_sharp = NotStr('''''') +icon_create_new_folder_round = NotStr('''''') +icon_data_thresholding_filled = NotStr('''''') +icon_no_transfer_outlined = NotStr('''''') +icon_density_large_outlined = NotStr('''''') +icon_quickreply_twotone = NotStr(''' + + + +''') +icon_network_check_filled = NotStr('''''') +icon_lte_plus_mobiledata_round = NotStr('''''') +icon_repeat_one_round = NotStr('''''') +icon_upload_file_sharp = NotStr('''''') +icon_lte_mobiledata_outlined = NotStr('''''') +icon_folder_delete_filled = NotStr('''''') +icon_format_strikethrough_sharp = NotStr('''''') +icon_filter_tilt_shift_twotone = NotStr('''''') +icon_house_outlined = NotStr(''' + + +''') +icon_launch_sharp = NotStr('''''') +icon_motion_photos_on_twotone = NotStr('''''') +icon_summarize_filled = NotStr('''''') +icon_segment_twotone = NotStr('''''') +icon_home_max_sharp = NotStr('''''') +icon_mic_external_on_sharp = NotStr('''''') +icon_account_circle_outlined = NotStr('''''') +icon_panorama_vertical_select_twotone = NotStr('''''') +icon_shortcut_round = NotStr('''''') +icon_expand_more_sharp = NotStr('''''') +icon_phone_locked_round = NotStr(''' + + +''') +icon_contactless_sharp = NotStr('''''') +icon_paid_outlined = NotStr('''''') +icon_tty_round = NotStr('''''') +icon_folder_special_filled = NotStr('''''') +icon_keyboard_double_arrow_up_round = NotStr(''' + + +''') +icon_directions_car_filled_filled = NotStr('''''') +icon_tiktok_sharp = NotStr('''''') +icon_call_missed_outgoing_twotone = NotStr('''''') +icon_segment_filled = NotStr('''''') +icon_flash_on_twotone = NotStr('''''') +icon_transfer_within_a_station_outlined = NotStr('''''') +icon_telegram_filled = NotStr('''''') +icon_warning_amber_outlined = NotStr('''''') +icon_battery0_bar_twotone = NotStr(''' + + +''') +icon_motorcycle_round = NotStr('''''') +icon_tram_sharp = NotStr('''''') +icon_format_indent_decrease_filled = NotStr('''''') +icon_tag_filled = NotStr('''''') +icon_camera_enhance_twotone = NotStr(''' + + +''') +icon_manage_search_filled = NotStr('''''') +icon_phone_missed_sharp = NotStr('''''') +icon_card_membership_sharp = NotStr('''''') +icon_edit_notifications_outlined = NotStr('''''') +icon_sim_card_alert_twotone = NotStr(''' + + + +''') +icon_play_lesson_round = NotStr(''' + + +''') +icon_person_add_alt1_sharp = NotStr('''''') +icon_fast_rewind_outlined = NotStr('''''') +icon_storefront_sharp = NotStr('''''') +icon_do_not_disturb_on_total_silence_twotone = NotStr('''''') +icon_local_dining_sharp = NotStr('''''') +icon_place_sharp = NotStr('''''') +icon_request_quote_filled = NotStr('''''') +icon_play_circle_filled_white_sharp = NotStr('''''') +icon_dynamic_form_filled = NotStr('''''') +icon_line_style_twotone = NotStr('''''') +icon_bubble_chart_twotone = NotStr(''' + + + + +''') +icon_airplanemode_active_outlined = NotStr('''''') +icon_money_filled = NotStr(''' + + +''') +icon_line_weight_twotone = NotStr('''''') +icon_chrome_reader_mode_outlined = NotStr('''''') +icon_signal_wifi4_bar_twotone = NotStr('''''') +icon_view_array_sharp = NotStr('''''') +icon_closed_caption_off_twotone = NotStr(''' + + + +''') +icon_vaccines_outlined = NotStr('''''') +icon_cloud_outlined = NotStr('''''') +icon_vertical_distribute_outlined = NotStr('''''') +icon_lens_outlined = NotStr('''''') +icon_play_circle_twotone = NotStr(''' + + + +''') +icon_swap_vertical_circle_sharp = NotStr('''''') +icon_move_down_twotone = NotStr(''' + + +''') +icon_library_music_round = NotStr('''''') +icon_format_clear_filled = NotStr('''''') +icon_thumb_down_alt_twotone = NotStr(''' + + +''') +icon_mic_off_sharp = NotStr('''''') +icon_timer_off_round = NotStr('''''') +icon_bluetooth_connected_filled = NotStr('''''') +icon_local_convenience_store_twotone = NotStr(''' + + +''') +icon_brightness7_sharp = NotStr('''''') +icon_forward_to_inbox_sharp = NotStr('''''') +icon_auto_delete_filled = NotStr(''' + + +''') +icon_change_circle_sharp = NotStr('''''') +icon_filter_list_off_twotone = NotStr('''''') +icon_backup_outlined = NotStr('''''') +icon_newspaper_twotone = NotStr('''''') +icon_offline_bolt_twotone = NotStr(''' + + +''') +icon_stacked_bar_chart_sharp = NotStr('''''') +icon_mode_edit_outline_filled = NotStr('''''') +icon_computer_twotone = NotStr(''' + + +''') +icon_keyboard_double_arrow_left_round = NotStr(''' + + +''') +icon_zoom_out_map_round = NotStr('''''') +icon_credit_score_outlined = NotStr('''''') +icon_format_list_numbered_filled = NotStr('''''') +icon_brightness_low_outlined = NotStr('''''') +icon_style_twotone = NotStr(''' + + + + +''') +icon_thumb_down_alt_filled = NotStr('''''') +icon_notifications_active_filled = NotStr('''''') +icon_no_encryption_round = NotStr('''''') +icon_slow_motion_video_twotone = NotStr('''''') +icon_timer3_round = NotStr('''''') +icon_assignment_twotone = NotStr(''' + + +''') +icon_wrap_text_sharp = NotStr('''''') +icon_checklist_rtl_filled = NotStr('''''') +icon_west_twotone = NotStr('''''') +icon_agriculture_sharp = NotStr(''' + + +''') +icon_gps_not_fixed_twotone = NotStr('''''') +icon_qr_code_filled = NotStr('''''') +icon_md2_mp_outlined = NotStr(''' + + + +''') +icon_local_cafe_round = NotStr('''''') +icon_foundation_sharp = NotStr('''''') +icon_browser_not_supported_sharp = NotStr('''''') +icon_report_off_sharp = NotStr('''''') +icon_ac_unit_twotone = NotStr('''''') +icon_card_membership_filled = NotStr('''''') +icon_radar_outlined = NotStr('''''') +icon_checklist_sharp = NotStr('''''') +icon_ballot_round = NotStr('''''') +icon_flatware_sharp = NotStr('''''') +icon_book_online_outlined = NotStr('''''') +icon_format_align_left_twotone = NotStr('''''') +icon_align_vertical_bottom_round = NotStr('''''') +icon_md1_k_filled = NotStr('''''') +icon_settings_system_daydream_twotone = NotStr(''' + + +''') +icon_turn_sharp_right_filled = NotStr('''''') +icon_highlight_off_sharp = NotStr('''''') +icon_burst_mode_outlined = NotStr('''''') +icon_format_align_right_filled = NotStr('''''') +icon_folder_sharp = NotStr('''''') +icon_dynamic_feed_round = NotStr(''' + + +''') +icon_volume_off_sharp = NotStr('''''') +icon_switch_video_sharp = NotStr('''''') +icon_queue_music_twotone = NotStr(''' + + +''') +icon_md9_k_plus_outlined = NotStr(''' + + + +''') +icon_switch_access_shortcut_add_twotone = NotStr('''''') +icon_pie_chart_filled = NotStr('''''') +icon_nearby_error_twotone = NotStr('''''') +icon_qr_code_sharp = NotStr('''''') +icon_rectangle_outlined = NotStr('''''') +icon_mail_sharp = NotStr('''''') +icon_contact_phone_sharp = NotStr('''''') +icon_mode_edit_outline_round = NotStr('''''') +icon_local_fire_department_sharp = NotStr('''''') +icon_motion_photos_off_round = NotStr(''' + + +''') +icon_hotel_class_twotone = NotStr(''' + + +''') +icon_pause_circle_filled_round = NotStr('''''') +icon_comments_disabled_sharp = NotStr('''''') +icon_wallpaper_twotone = NotStr('''''') +icon_hub_outlined = NotStr('''''') +icon_no_crash_sharp = NotStr('''''') +icon_assistant_photo_sharp = NotStr('''''') +icon_refresh_round = NotStr('''''') +icon_food_bank_outlined = NotStr('''''') +icon_blur_circular_twotone = NotStr(''' + + + + + + + + +''') +icon_transform_round = NotStr('''''') +icon_person_off_round = NotStr('''''') +icon_summarize_sharp = NotStr('''''') +icon_call_to_action_filled = NotStr('''''') +icon_center_focus_strong_twotone = NotStr(''' + + +''') +icon_font_download_off_outlined = NotStr('''''') +icon_compost_twotone = NotStr('''''') +icon_md8_k_plus_filled = NotStr('''''') +icon_coronavirus_outlined = NotStr('''''') +icon_compress_sharp = NotStr('''''') +icon_bookmark_added_outlined = NotStr('''''') +icon_remove_done_round = NotStr('''''') +icon_card_travel_round = NotStr('''''') +icon_more_vert_sharp = NotStr('''''') +icon_handshake_filled = NotStr('''''') +icon_wifi_tethering_error_twotone = NotStr('''''') +icon_pause_twotone = NotStr('''''') +icon_forward5_sharp = NotStr('''''') +icon_emoji_nature_filled = NotStr('''''') +icon_emoji_people_outlined = NotStr(''' + + +''') +icon_explicit_twotone = NotStr(''' + + +''') +icon_flip_camera_android_outlined = NotStr(''' + + +''') +icon_settings_voice_round = NotStr('''''') +icon_bike_scooter_sharp = NotStr(''' + + +''') +icon_area_chart_sharp = NotStr('''''') +icon_start_round = NotStr('''''') +icon_edit_calendar_sharp = NotStr('''''') +icon_format_color_fill_outlined = NotStr('''''') +icon_fitbit_filled = NotStr('''''') +icon_upload_file_round = NotStr('''''') +icon_timeline_filled = NotStr('''''') +icon_scoreboard_twotone = NotStr(''' + + +''') +icon_view_carousel_sharp = NotStr('''''') +icon_lightbulb_circle_filled = NotStr('''''') +icon_commute_sharp = NotStr('''''') +icon_surfing_round = NotStr('''''') +icon_unarchive_round = NotStr('''''') +icon_donut_large_filled = NotStr('''''') +icon_bookmarks_sharp = NotStr('''''') +icon_hot_tub_sharp = NotStr(''' + + +''') +icon_superscript_filled = NotStr('''''') +icon_library_add_filled = NotStr('''''') +icon_chrome_reader_mode_twotone = NotStr(''' + + +''') +icon_restaurant_menu_twotone = NotStr('''''') +icon_turned_in_not_outlined = NotStr('''''') +icon_light_mode_twotone = NotStr(''' + + +''') +icon_roofing_round = NotStr('''''') +icon_medication_liquid_round = NotStr('''''') +icon_bookmark_border_round = NotStr('''''') +icon_settings_input_antenna_sharp = NotStr('''''') +icon_gps_off_round = NotStr('''''') +icon_view_list_sharp = NotStr('''''') +icon_date_range_outlined = NotStr('''''') +icon_grid4_x4_twotone = NotStr('''''') +icon_punch_clock_twotone = NotStr(''' + + + + +''') +icon_send_and_archive_sharp = NotStr(''' + + +''') +icon_park_filled = NotStr('''''') +icon_domain_disabled_outlined = NotStr('''''') +icon_perm_media_outlined = NotStr('''''') +icon_update_disabled_filled = NotStr('''''') +icon_account_tree_filled = NotStr('''''') +icon_assignment_ind_sharp = NotStr('''''') +icon_help_outline_sharp = NotStr('''''') +icon_do_not_disturb_alt_filled = NotStr('''''') +icon_currency_lira_twotone = NotStr('''''') +icon_format_indent_decrease_sharp = NotStr('''''') +icon_settings_input_composite_outlined = NotStr('''''') +icon_fiber_dvr_filled = NotStr('''''') +icon_waterfall_chart_sharp = NotStr('''''') +icon_settings_system_daydream_sharp = NotStr('''''') +icon_toggle_on_sharp = NotStr('''''') +icon_edit_location_filled = NotStr('''''') +icon_monitor_heart_twotone = NotStr(''' + + + + +''') +icon_emoji_symbols_twotone = NotStr(''' + + + + +''') +icon_settings_accessibility_outlined = NotStr('''''') +icon_table_rows_outlined = NotStr('''''') +icon_md6_mp_twotone = NotStr(''' + + + + + +''') +icon_keyboard_hide_round = NotStr('''''') +icon_key_off_filled = NotStr('''''') +icon_workspace_premium_round = NotStr('''''') +icon_movie_creation_round = NotStr('''''') +icon_assistant_filled = NotStr('''''') +icon_battery4_bar_round = NotStr('''''') +icon_zoom_out_map_sharp = NotStr('''''') +icon_plus_one_sharp = NotStr('''''') +icon_signal_cellular1_bar_round = NotStr(''' + + +''') +icon_play_lesson_twotone = NotStr(''' + + + +''') +icon_pin_off_filled = NotStr(''' + + +''') +icon_switch_access_shortcut_twotone = NotStr('''''') +icon_departure_board_filled = NotStr('''''') +icon_battery20_round = NotStr(''' + + +''') +icon_man_filled = NotStr(''' + + +''') +icon_discord_sharp = NotStr('''''') +icon_set_meal_filled = NotStr('''''') +icon_control_point_duplicate_filled = NotStr('''''') +icon_production_quantity_limits_sharp = NotStr('''''') +icon_brightness6_twotone = NotStr(''' + + +''') +icon_sports_filled = NotStr(''' + + +''') +icon_layers_filled = NotStr('''''') +icon_shop2_round = NotStr(''' + + +''') +icon_arrow_drop_up_outlined = NotStr('''''') +icon_egg_alt_twotone = NotStr(''' + + + +''') +icon_reply_all_twotone = NotStr('''''') +icon_content_paste_off_outlined = NotStr('''''') +icon_outdoor_grill_round = NotStr('''''') +icon_settings_input_hdmi_twotone = NotStr(''' + + +''') +icon_percent_round = NotStr('''''') +icon_assignment_late_twotone = NotStr(''' + + +''') +icon_set_meal_round = NotStr('''''') +icon_how_to_reg_twotone = NotStr(''' + + + +''') +icon_query_stats_sharp = NotStr('''''') +icon_fork_left_twotone = NotStr('''''') +icon_remove_road_outlined = NotStr('''''') +icon_bed_twotone = NotStr(''' + + +''') +icon_bookmark_added_round = NotStr('''''') +icon_lock_clock_round = NotStr(''' + + +''') +icon_switch_camera_sharp = NotStr('''''') +icon_emoji_events_round = NotStr('''''') +icon_signal_wifi_connected_no_internet4_sharp = NotStr('''''') +icon_how_to_vote_sharp = NotStr('''''') +icon_arrow_right_round = NotStr('''''') +icon_md21_mp_outlined = NotStr(''' + + +''') +icon_record_voice_over_round = NotStr(''' + + +''') +icon_leak_remove_round = NotStr('''''') +icon_find_in_page_outlined = NotStr('''''') +icon_celebration_outlined = NotStr('''''') +icon_remove_from_queue_filled = NotStr('''''') +icon_payments_sharp = NotStr('''''') +icon_change_history_sharp = NotStr('''''') +icon_photo_camera_back_filled = NotStr('''''') +icon_stairs_filled = NotStr('''''') +icon_playlist_add_check_twotone = NotStr('''''') +icon_room_preferences_filled = NotStr('''''') +icon_north_filled = NotStr('''''') +icon_flash_off_sharp = NotStr('''''') +icon_legend_toggle_twotone = NotStr('''''') +icon_hearing_filled = NotStr('''''') +icon_mobile_screen_share_twotone = NotStr(''' + + +''') +icon_hiking_sharp = NotStr('''''') +icon_html_outlined = NotStr('''''') +icon_call_end_outlined = NotStr('''''') +icon_camera_twotone = NotStr(''' + + +''') +icon_wallpaper_filled = NotStr('''''') +icon_car_rental_twotone = NotStr(''' + + + + +''') +icon_how_to_reg_outlined = NotStr('''''') +icon_image_not_supported_filled = NotStr('''''') +icon_view_in_ar_twotone = NotStr(''' + + +''') +icon_device_unknown_filled = NotStr('''''') +icon_apartment_twotone = NotStr('''''') +icon_emoji_events_outlined = NotStr('''''') +icon_local_phone_outlined = NotStr('''''') +icon_crop_rotate_sharp = NotStr('''''') +icon_airline_stops_twotone = NotStr('''''') +icon_dry_cleaning_twotone = NotStr(''' + + +''') +icon_save_all_twotone = NotStr(''' + + + + + +''') +icon_tire_repair_round = NotStr(''' + + +''') +icon_question_mark_round = NotStr('''''') +icon_waterfall_chart_round = NotStr('''''') +icon_keyboard_tab_filled = NotStr('''''') +icon_emoji_emotions_filled = NotStr('''''') +icon_dark_mode_sharp = NotStr('''''') +icon_details_outlined = NotStr('''''') +icon_do_not_touch_filled = NotStr('''''') +icon_exit_to_app_filled = NotStr('''''') +icon_church_filled = NotStr('''''') +icon_voice_over_off_filled = NotStr('''''') +icon_settings_accessibility_filled = NotStr('''''') +icon_insert_link_filled = NotStr('''''') +icon_flight_takeoff_sharp = NotStr('''''') +icon_wifi_tethering_twotone = NotStr('''''') +icon_md60_fps_sharp = NotStr('''''') +icon_reset_tv_twotone = NotStr('''''') +icon_temple_hindu_filled = NotStr('''''') +icon_free_breakfast_filled = NotStr('''''') +icon_restart_alt_twotone = NotStr('''''') +icon_flag_circle_round = NotStr('''''') +icon_mark_as_unread_round = NotStr(''' + + +''') +icon_minus_round = NotStr('''''') +icon_network_wifi3_bar_round = NotStr('''''') +icon_assignment_turned_in_twotone = NotStr(''' + + +''') +icon_lte_plus_mobiledata_sharp = NotStr('''''') +icon_radar_sharp = NotStr('''''') +icon_flight_sharp = NotStr('''''') +icon_dirty_lens_twotone = NotStr(''' + + + +''') +icon_lock_sharp = NotStr('''''') +icon_satellite_twotone = NotStr(''' + + +''') +icon_gif_box_outlined = NotStr('''''') +icon_airline_seat_recline_extra_outlined = NotStr('''''') +icon_show_chart_outlined = NotStr('''''') +icon_moped_filled = NotStr(''' + + +''') +icon_calendar_view_day_outlined = NotStr('''''') +icon_hotel_class_round = NotStr('''''') +icon_hot_tub_outlined = NotStr(''' + + +''') +icon_window_twotone = NotStr(''' + + +''') +icon_explore_sharp = NotStr('''''') +icon_pending_actions_twotone = NotStr(''' + + +''') +icon_info_round = NotStr('''''') +icon_do_not_disturb_alt_sharp = NotStr('''''') +icon_invert_colors_filled = NotStr('''''') +icon_format_underlined_round = NotStr('''''') +icon_playlist_play_filled = NotStr('''''') +icon_filter_sharp = NotStr('''''') +icon_candlestick_chart_round = NotStr('''''') +icon_currency_ruble_sharp = NotStr('''''') +icon_fiber_new_filled = NotStr('''''') +icon_workspaces_twotone = NotStr(''' + + + + +''') +icon_filter_vintage_twotone = NotStr(''' + + +''') +icon_grid4_x4_sharp = NotStr('''''') +icon_unsubscribe_outlined = NotStr('''''') +icon_keyboard_double_arrow_up_twotone = NotStr(''' + + +''') +icon_compass_calibration_twotone = NotStr(''' + + + +''') +icon_local_gas_station_twotone = NotStr(''' + + +''') +icon_keyboard_twotone = NotStr(''' + + +''') +icon_router_twotone = NotStr(''' + + +''') +icon_savings_outlined = NotStr('''''') +icon_timer3_select_round = NotStr('''''') +icon_preview_filled = NotStr('''''') +icon_motion_photos_pause_sharp = NotStr('''''') +icon_wechat_filled = NotStr(''' + + +''') +icon_rsvp_sharp = NotStr('''''') +icon_gamepad_outlined = NotStr('''''') +icon_plus_one_twotone = NotStr('''''') +icon_speaker_group_outlined = NotStr('''''') +icon_offline_share_sharp = NotStr(''' + + + +''') +icon_raw_off_filled = NotStr('''''') +icon_currency_rupee_round = NotStr('''''') +icon_wrap_text_filled = NotStr('''''') +icon_rule_sharp = NotStr('''''') +icon_swipe_down_alt_sharp = NotStr('''''') +icon_app_shortcut_sharp = NotStr(''' + + +''') +icon_query_builder_twotone = NotStr(''' + + +''') +icon_videocam_sharp = NotStr('''''') +icon_monitor_weight_outlined = NotStr('''''') +icon_family_restroom_twotone = NotStr('''''') +icon_face_sharp = NotStr('''''') +icon_auto_awesome_filled = NotStr('''''') +icon_star_border_purple500_sharp = NotStr('''''') +icon_remove_shopping_cart_filled = NotStr('''''') +icon_start_twotone = NotStr('''''') +icon_plus_twotone = NotStr('''''') +icon_comments_disabled_filled = NotStr('''''') +icon_directions_walk_twotone = NotStr('''''') +icon_md3_g_mobiledata_outlined = NotStr('''''') +icon_notifications_paused_round = NotStr('''''') +icon_cloud_upload_twotone = NotStr(''' + + +''') +icon_masks_sharp = NotStr('''''') +icon_aod_sharp = NotStr('''''') +icon_photo_filter_outlined = NotStr('''''') +icon_noise_control_off_round = NotStr('''''') +icon_file_open_round = NotStr('''''') +icon_forward_to_inbox_round = NotStr('''''') +icon_align_vertical_bottom_filled = NotStr('''''') +icon_horizontal_distribute_filled = NotStr('''''') +icon_casino_round = NotStr('''''') +icon_flag_outlined = NotStr('''''') +icon_emoji_nature_twotone = NotStr(''' + + + + +''') +icon_rtt_sharp = NotStr('''''') +icon_md6_mp_sharp = NotStr(''' + + + +''') +icon_do_not_disturb_on_total_silence_outlined = NotStr('''''') +icon_contact_support_sharp = NotStr('''''') +icon_directions_railway_filled_filled = NotStr('''''') +icon_model_training_round = NotStr('''''') +icon_touch_app_twotone = NotStr(''' + + +''') +icon_hdr_plus_twotone = NotStr(''' + + + + +''') +icon_source_outlined = NotStr('''''') +icon_invert_colors_off_outlined = NotStr('''''') +icon_screen_share_round = NotStr('''''') +icon_topic_filled = NotStr('''''') +icon_mark_chat_unread_round = NotStr('''''') +icon_font_download_off_filled = NotStr('''''') +icon_badge_round = NotStr('''''') +icon_car_repair_twotone = NotStr(''' + + + + +''') +icon_motion_photos_auto_filled = NotStr('''''') +icon_view_sidebar_twotone = NotStr(''' + + +''') +icon_arrow_circle_right_filled = NotStr('''''') +icon_drag_indicator_sharp = NotStr('''''') +icon_apple_sharp = NotStr('''''') +icon_density_medium_sharp = NotStr('''''') +icon_sports_mma_sharp = NotStr('''''') +icon_recommend_sharp = NotStr('''''') +icon_bento_filled = NotStr('''''') +icon_power_settings_new_sharp = NotStr('''''') +icon_drive_eta_round = NotStr('''''') +icon_security_outlined = NotStr('''''') +icon_insert_drive_file_sharp = NotStr('''''') +icon_wb_shade_outlined = NotStr('''''') +icon_theater_comedy_outlined = NotStr(''' + + + + + + + +''') +icon_timer3_select_twotone = NotStr('''''') +icon_sailing_twotone = NotStr(''' + + +''') +icon_panorama_vertical_round = NotStr('''''') +icon_local_activity_twotone = NotStr(''' + + +''') +icon_search_twotone = NotStr('''''') +icon_call_split_round = NotStr('''''') +icon_directions_subway_filled = NotStr('''''') +icon_snowboarding_outlined = NotStr('''''') +icon_headphones_outlined = NotStr('''''') +icon_g_translate_filled = NotStr('''''') +icon_filter_frames_round = NotStr('''''') +icon_flaky_sharp = NotStr('''''') +icon_compare_arrows_filled = NotStr('''''') +icon_data_array_outlined = NotStr('''''') +icon_launch_round = NotStr('''''') +icon_route_sharp = NotStr('''''') +icon_bluetooth_audio_filled = NotStr('''''') +icon_hvac_outlined = NotStr(''' + + +''') +icon_system_security_update_warning_sharp = NotStr(''' + + +''') +icon_sports_sharp = NotStr(''' + + +''') +icon_nature_round = NotStr('''''') +icon_panorama_vertical_select_filled = NotStr('''''') +icon_align_horizontal_left_outlined = NotStr('''''') +icon_north_east_round = NotStr('''''') +icon_no_photography_filled = NotStr('''''') +icon_location_searching_filled = NotStr('''''') +icon_synagogue_filled = NotStr('''''') +icon_label_off_filled = NotStr('''''') +icon_difference_twotone = NotStr(''' + + +''') +icon_delete_outline_filled = NotStr('''''') +icon_md4_k_outlined = NotStr('''''') +icon_accessible_round = NotStr(''' + + +''') +icon_verified_filled = NotStr('''''') +icon_bathroom_round = NotStr('''''') +icon_other_houses_round = NotStr('''''') +icon_code_round = NotStr('''''') +icon_restart_alt_filled = NotStr('''''') +icon_looks6_outlined = NotStr('''''') +icon_blur_on_filled = NotStr('''''') +icon_smoking_rooms_sharp = NotStr('''''') +icon_file_open_sharp = NotStr('''''') +icon_video_call_outlined = NotStr('''''') +icon_signal_cellular_connected_no_internet0_bar_sharp = NotStr('''''') +icon_first_page_round = NotStr('''''') +icon_priority_high_filled = NotStr(''' + + +''') +icon_video_settings_outlined = NotStr(''' + + +''') +icon_headset_off_outlined = NotStr('''''') +icon_remove_done_twotone = NotStr('''''') +icon_toggle_off_round = NotStr('''''') +icon_local_hotel_outlined = NotStr('''''') +icon_auto_fix_off_twotone = NotStr(''' + + +''') +icon_find_replace_round = NotStr('''''') +icon_disc_full_sharp = NotStr('''''') +icon_bakery_dining_outlined = NotStr('''''') +icon_sentiment_very_satisfied_filled = NotStr(''' + + + +''') +icon_sync_outlined = NotStr('''''') +icon_create_twotone = NotStr(''' + + +''') +icon_pool_sharp = NotStr(''' + + +''') +icon_duo_twotone = NotStr('''''') +icon_source_twotone = NotStr(''' + + +''') +icon_device_hub_round = NotStr('''''') +icon_filter_alt_off_sharp = NotStr('''''') +icon_family_restroom_sharp = NotStr('''''') +icon_airplanemode_active_sharp = NotStr('''''') +icon_backspace_filled = NotStr('''''') +icon_grid_on_outlined = NotStr('''''') +icon_house_siding_filled = NotStr('''''') +icon_speaker_notes_off_filled = NotStr('''''') +icon_noise_aware_twotone = NotStr(''' + + +''') +icon_forward5_outlined = NotStr('''''') +icon_music_note_twotone = NotStr(''' + + +''') +icon_grade_outlined = NotStr('''''') +icon_text_fields_outlined = NotStr('''''') +icon_mic_external_off_round = NotStr('''''') +icon_drive_eta_twotone = NotStr(''' + + + + +''') +icon_leaderboard_sharp = NotStr('''''') +icon_directions_off_outlined = NotStr(''' + + +''') +icon_voice_over_off_twotone = NotStr(''' + + +''') +icon_folder_delete_sharp = NotStr('''''') +icon_edit_location_round = NotStr('''''') +icon_fit_screen_sharp = NotStr('''''') +icon_account_box_round = NotStr('''''') +icon_drive_file_rename_outline_sharp = NotStr('''''') +icon_car_crash_filled = NotStr('''''') +icon_stacked_line_chart_sharp = NotStr('''''') +icon_directions_transit_sharp = NotStr('''''') +icon_flip_camera_android_twotone = NotStr(''' + + + +''') +icon_widgets_outlined = NotStr('''''') +icon_opacity_filled = NotStr('''''') +icon_speaker_notes_filled = NotStr('''''') +icon_electric_car_sharp = NotStr('''''') +icon_label_off_outlined = NotStr('''''') +icon_currency_ruble_outlined = NotStr('''''') +icon_room_round = NotStr('''''') +icon_scoreboard_round = NotStr('''''') +icon_md8_mp_filled = NotStr('''''') +icon_people_twotone = NotStr(''' + + + +''') +icon_sports_esports_round = NotStr('''''') +icon_add_to_queue_round = NotStr('''''') +icon_kayaking_filled = NotStr('''''') +icon_last_page_round = NotStr('''''') +icon_assistant_direction_twotone = NotStr(''' + + + +''') +icon_hdr_strong_outlined = NotStr('''''') +icon_headset_round = NotStr('''''') +icon_md30_fps_round = NotStr('''''') +icon_headphones_battery_twotone = NotStr(''' + + +''') +icon_refresh_filled = NotStr('''''') +icon_anchor_filled = NotStr('''''') +icon_wrap_text_outlined = NotStr('''''') +icon_screen_rotation_alt_outlined = NotStr('''''') +icon_price_check_filled = NotStr('''''') +icon_format_overline_round = NotStr('''''') +icon_domain_verification_filled = NotStr(''' + + +''') +icon_female_twotone = NotStr('''''') +icon_grid_goldenratio_filled = NotStr('''''') +icon_battery90_outlined = NotStr(''' + + +''') +icon_double_arrow_filled = NotStr(''' + + +''') +icon_mood_bad_twotone = NotStr(''' + + + + +''') +icon_closed_caption_outlined = NotStr('''''') +icon_link_twotone = NotStr('''''') +icon_streetview_outlined = NotStr(''' + + + +''') +icon_hdr_off_filled = NotStr('''''') +icon_content_paste_round = NotStr('''''') +icon_hls_off_round = NotStr('''''') +icon_snooze_filled = NotStr('''''') +icon_folder_open_filled = NotStr('''''') +icon_signal_cellular2_bar_twotone = NotStr(''' + + +''') +icon_wb_incandescent_filled = NotStr('''''') +icon_home_max_twotone = NotStr(''' + + +''') +icon_portrait_filled = NotStr('''''') +icon_grid_view_outlined = NotStr('''''') +icon_mode_edit_outline_outlined = NotStr('''''') +icon_md24_mp_round = NotStr(''' + + +''') +icon_sync_alt_round = NotStr('''''') +icon_settings_suggest_twotone = NotStr(''' + + +''') +icon_duo_filled = NotStr('''''') +icon_security_twotone = NotStr(''' + + +''') +icon_hdr_auto_round = NotStr(''' + + +''') +icon_forum_round = NotStr('''''') +icon_dining_round = NotStr('''''') +icon_rice_bowl_filled = NotStr('''''') +icon_height_sharp = NotStr('''''') +icon_shopping_cart_filled = NotStr('''''') +icon_on_device_training_outlined = NotStr(''' + + + +''') +icon_system_update_alt_round = NotStr('''''') +icon_view_week_filled = NotStr('''''') +icon_sort_filled = NotStr('''''') +icon_headphones_battery_outlined = NotStr('''''') +icon_local_cafe_filled = NotStr('''''') +icon_browse_gallery_round = NotStr(''' + + +''') +icon_video_label_round = NotStr('''''') +icon_md19_mp_sharp = NotStr(''' + + +''') +icon_currency_franc_outlined = NotStr('''''') +icon_leaderboard_round = NotStr('''''') +icon_wifi_tethering_round = NotStr('''''') +icon_timer3_sharp = NotStr('''''') +icon_add_to_photos_outlined = NotStr('''''') +icon_screen_lock_portrait_filled = NotStr('''''') +icon_border_vertical_round = NotStr('''''') +icon_text_format_outlined = NotStr('''''') +icon_filter2_twotone = NotStr(''' + + +''') +icon_directions_boat_outlined = NotStr('''''') +icon_blur_circular_outlined = NotStr('''''') +icon_receipt_sharp = NotStr('''''') +icon_logo_dev_sharp = NotStr(''' + + +''') +icon_fmd_good_sharp = NotStr('''''') +icon_query_builder_outlined = NotStr('''''') +icon_private_connectivity_sharp = NotStr('''''') +icon_file_download_done_outlined = NotStr('''''') +icon_back_hand_outlined = NotStr('''''') +icon_bug_report_twotone = NotStr(''' + + +''') +icon_feedback_sharp = NotStr('''''') +icon_person_add_round = NotStr('''''') +icon_format_textdirection_r_to_l_round = NotStr('''''') +icon_md5_k_sharp = NotStr('''''') +icon_turn_slight_right_sharp = NotStr('''''') +icon_rotate90_degrees_ccw_twotone = NotStr(''' + + +''') +icon_call_made_sharp = NotStr('''''') +icon_swipe_vertical_twotone = NotStr(''' + + +''') +icon_battery4_bar_outlined = NotStr('''''') +icon_airline_stops_round = NotStr('''''') +icon_beach_access_outlined = NotStr('''''') +icon_dining_filled = NotStr('''''') +icon_hdr_enhanced_select_sharp = NotStr('''''') +icon_expand_filled = NotStr('''''') +icon_wb_auto_filled = NotStr('''''') +icon_brightness4_filled = NotStr('''''') +icon_close_filled = NotStr('''''') +icon_open_with_outlined = NotStr('''''') +icon_import_export_twotone = NotStr('''''') +icon_collections_bookmark_sharp = NotStr('''''') +icon_device_unknown_outlined = NotStr('''''') +icon_view_kanban_filled = NotStr('''''') +icon_title_sharp = NotStr('''''') +icon_hourglass_full_twotone = NotStr(''' + + +''') +icon_picture_as_pdf_filled = NotStr('''''') +icon_work_filled = NotStr('''''') +icon_not_accessible_filled = NotStr('''''') +icon_waving_hand_twotone = NotStr(''' + + +''') +icon_md7_mp_twotone = NotStr(''' + + + + + +''') +icon_nearby_error_filled = NotStr('''''') +icon_anchor_outlined = NotStr('''''') +icon_animation_outlined = NotStr('''''') +icon_skip_next_filled = NotStr('''''') +icon_sports_handball_filled = NotStr(''' + + +''') +icon_close_round = NotStr('''''') +icon_mark_email_read_twotone = NotStr(''' + + +''') +icon_volume_up_sharp = NotStr('''''') +icon_search_sharp = NotStr('''''') +icon_add_to_drive_outlined = NotStr('''''') +icon_block_twotone = NotStr('''''') +icon_grid_goldenratio_outlined = NotStr('''''') +icon_contact_support_round = NotStr('''''') +icon_featured_video_outlined = NotStr('''''') +icon_directions_boat_filled = NotStr('''''') +icon_upload_file_twotone = NotStr(''' + + + +''') +icon_add_a_photo_twotone = NotStr(''' + + +''') +icon_horizontal_rule_outlined = NotStr('''''') +icon_tram_filled = NotStr('''''') +icon_agriculture_outlined = NotStr(''' + + +''') +icon_table_bar_outlined = NotStr('''''') +icon_mode_comment_round = NotStr('''''') +icon_input_filled = NotStr('''''') +icon_comment_bank_twotone = NotStr(''' + + + +''') +icon_add_to_home_screen_sharp = NotStr('''''') +icon_arrow_drop_down_circle_filled = NotStr('''''') +icon_format_quote_round = NotStr('''''') +icon_sip_sharp = NotStr(''' + + +''') +icon_vignette_sharp = NotStr('''''') +icon_pending_round = NotStr('''''') +icon_filter_alt_round = NotStr('''''') +icon_approval_sharp = NotStr('''''') +icon_paragliding_sharp = NotStr('''''') +icon_music_video_sharp = NotStr('''''') +icon_currency_franc_sharp = NotStr('''''') +icon_auto_awesome_round = NotStr('''''') +icon_auto_awesome_mosaic_round = NotStr('''''') +icon_currency_pound_round = NotStr('''''') +icon_escalator_warning_filled = NotStr('''''') +icon_piano_twotone = NotStr(''' + + +''') +icon_next_plan_twotone = NotStr(''' + + + +''') +icon_forward10_filled = NotStr(''' + + +''') +icon_slow_motion_video_filled = NotStr('''''') +icon_md7_mp_outlined = NotStr(''' + + + +''') +icon_sports_handball_outlined = NotStr(''' + + +''') +icon_remove_road_twotone = NotStr('''''') +icon_alarm_on_twotone = NotStr(''' + + +''') +icon_open_with_filled = NotStr('''''') +icon_tap_and_play_filled = NotStr('''''') +icon_landscape_sharp = NotStr('''''') +icon_cloud_done_sharp = NotStr('''''') +icon_subtitles_filled = NotStr('''''') +icon_public_round = NotStr('''''') +icon_developer_board_off_outlined = NotStr('''''') +icon_usb_off_twotone = NotStr('''''') +icon_vrpano_outlined = NotStr(''' + + +''') +icon_bluetooth_connected_sharp = NotStr('''''') +icon_announcement_filled = NotStr('''''') +icon_folder_shared_sharp = NotStr('''''') +icon_sd_card_twotone = NotStr(''' + + +''') +icon_directions_bike_sharp = NotStr('''''') +icon_dynamic_feed_twotone = NotStr(''' + + + +''') +icon_looks_two_filled = NotStr('''''') +icon_insert_photo_sharp = NotStr('''''') +icon_dry_twotone = NotStr(''' + + +''') +icon_featured_play_list_filled = NotStr('''''') +icon_compass_calibration_outlined = NotStr('''''') +icon_festival_sharp = NotStr('''''') +icon_chat_bubble_twotone = NotStr(''' + + +''') +icon_inbox_sharp = NotStr('''''') +icon_directions_boat_sharp = NotStr('''''') +icon_delivery_dining_sharp = NotStr(''' + + +''') +icon_drag_handle_filled = NotStr('''''') +icon_md2_mp_round = NotStr(''' + + +''') +icon_wrap_text_round = NotStr('''''') +icon_tab_outlined = NotStr('''''') +icon_camera_front_twotone = NotStr(''' + + +''') +icon_stay_current_landscape_round = NotStr('''''') +icon_sync_problem_filled = NotStr('''''') +icon_group_remove_round = NotStr('''''') +icon_skip_previous_round = NotStr('''''') +icon_commit_outlined = NotStr('''''') +icon_text_rotate_up_round = NotStr('''''') +icon_streetview_round = NotStr(''' + + + +''') +icon_no_meeting_room_twotone = NotStr(''' + + +''') +icon_paragliding_round = NotStr('''''') +icon_waving_hand_outlined = NotStr('''''') +icon_barcode_filled = NotStr('''''') +icon_sports_tennis_twotone = NotStr('''''') +icon_animation_round = NotStr('''''') +icon_markunread_mailbox_outlined = NotStr('''''') +icon_touch_app_filled = NotStr('''''') +icon_grid3_x3_twotone = NotStr('''''') +icon_add_comment_outlined = NotStr('''''') +icon_try_sharp = NotStr('''''') +icon_electric_car_twotone = NotStr(''' + + + + + +''') +icon_feed_twotone = NotStr(''' + + +''') +icon_group_off_filled = NotStr('''''') +icon_drive_file_move_twotone = NotStr(''' + + + +''') +icon_u_turn_right_sharp = NotStr('''''') +icon_sentiment_dissatisfied_sharp = NotStr(''' + + + +''') +icon_ring_volume_twotone = NotStr(''' + + +''') +icon_crop75_sharp = NotStr('''''') +icon_local_movies_twotone = NotStr(''' + + +''') +icon_emergency_outlined = NotStr('''''') +icon_border_horizontal_sharp = NotStr('''''') +icon_attach_email_outlined = NotStr(''' + + +''') +icon_filter_list_round = NotStr('''''') +icon_note_filled = NotStr('''''') +icon_md2_k_round = NotStr('''''') +icon_gradient_filled = NotStr('''''') +icon_remove_moderator_twotone = NotStr(''' + + +''') +icon_dashboard_outlined = NotStr('''''') +icon_wc_twotone = NotStr('''''') +icon_flatware_filled = NotStr('''''') +icon_notifications_off_outlined = NotStr('''''') +icon_sms_failed_outlined = NotStr('''''') +icon_currency_lira_filled = NotStr('''''') +icon_restart_alt_outlined = NotStr('''''') +icon_wb_iridescent_filled = NotStr('''''') +icon_eco_filled = NotStr('''''') +icon_store_filled = NotStr('''''') +icon_watch_off_sharp = NotStr('''''') +icon_text_rotation_down_filled = NotStr('''''') +icon_settings_accessibility_round = NotStr('''''') +icon_crisis_alert_round = NotStr('''''') +icon_arrow_upward_round = NotStr('''''') +icon_cancel_twotone = NotStr(''' + + +''') +icon_priority_high_twotone = NotStr(''' + + +''') +icon_mode_edit_outline_sharp = NotStr('''''') +icon_wallpaper_outlined = NotStr('''''') +icon_sensor_window_filled = NotStr('''''') +icon_bookmark_added_filled = NotStr('''''') +icon_qr_code_scanner_round = NotStr('''''') +icon_video_camera_front_twotone = NotStr(''' + + +''') +icon_navigation_twotone = NotStr(''' + + +''') +icon_settings_input_composite_sharp = NotStr('''''') +icon_signal_wifi_bad_round = NotStr(''' + + +''') +icon_group_filled = NotStr('''''') +icon_microwave_round = NotStr('''''') +icon_pause_circle_outline_round = NotStr('''''') +icon_no_encryption_gmailerrorred_filled = NotStr('''''') +icon_battery_charging20_outlined = NotStr(''' + + +''') +icon_biotech_filled = NotStr(''' + + + +''') +icon_network_cell_outlined = NotStr('''''') +icon_slideshow_outlined = NotStr('''''') +icon_commute_round = NotStr('''''') +icon_shuffle_on_sharp = NotStr('''''') +icon_timer_outlined = NotStr('''''') +icon_add_shopping_cart_round = NotStr('''''') +icon_restaurant_menu_filled = NotStr('''''') +icon_sync_problem_outlined = NotStr('''''') +icon_signal_cellular_alt_outlined = NotStr('''''') +icon_local_mall_round = NotStr('''''') +icon_filter8_filled = NotStr('''''') +icon_military_tech_filled = NotStr('''''') +icon_perm_contact_calendar_sharp = NotStr('''''') +icon_format_textdirection_l_to_r_round = NotStr('''''') +icon_science_round = NotStr('''''') +icon_no_meeting_room_filled = NotStr('''''') +icon_video_stable_twotone = NotStr(''' + + +''') +icon_calendar_view_month_filled = NotStr('''''') +icon_airline_seat_recline_normal_round = NotStr('''''') +icon_arrow_circle_left_filled = NotStr('''''') +icon_grade_filled = NotStr('''''') +icon_transgender_round = NotStr('''''') +icon_published_with_changes_sharp = NotStr('''''') +icon_info_outlined = NotStr('''''') +icon_signal_wifi_statusbar4_bar_filled = NotStr('''''') +icon_import_export_sharp = NotStr('''''') +icon_cell_tower_outlined = NotStr(''' + + +''') +icon_person_add_disabled_twotone = NotStr(''' + + +''') +icon_battery50_twotone = NotStr(''' + + +''') +icon_nature_outlined = NotStr('''''') +icon_soup_kitchen_round = NotStr('''''') +icon_fiber_dvr_outlined = NotStr('''''') +icon_unarchive_twotone = NotStr(''' + + +''') +icon_topic_round = NotStr('''''') +icon_md10_mp_twotone = NotStr(''' + + + + +''') +icon_radio_button_checked_round = NotStr(''' + + +''') +icon_villa_sharp = NotStr('''''') +icon_text_rotate_up_outlined = NotStr('''''') +icon_insert_photo_round = NotStr('''''') +icon_shopping_bag_round = NotStr('''''') +icon_md13_mp_outlined = NotStr(''' + + +''') +icon_tablet_mac_filled = NotStr('''''') +icon_monitor_weight_round = NotStr(''' + + + + +''') +icon_no_encryption_gmailerrorred_outlined = NotStr('''''') +icon_edit_road_sharp = NotStr('''''') +icon_assignment_late_outlined = NotStr('''''') +icon_error_outlined = NotStr('''''') +icon_security_update_good_sharp = NotStr('''''') +icon_medication_liquid_outlined = NotStr('''''') +icon_star_purple500_outlined = NotStr('''''') +icon_route_filled = NotStr('''''') +icon_earbuds_filled = NotStr('''''') +icon_media_bluetooth_on_sharp = NotStr('''''') +icon_save_filled = NotStr('''''') +icon_donut_small_filled = NotStr('''''') +icon_child_friendly_round = NotStr('''''') +icon_bluetooth_drive_round = NotStr(''' + + +''') +icon_looks_two_round = NotStr('''''') +icon_md5_mp_sharp = NotStr(''' + + +''') +icon_more_vert_twotone = NotStr('''''') +icon_panorama_horizontal_outlined = NotStr('''''') +icon_desktop_windows_outlined = NotStr('''''') +icon_merge_type_twotone = NotStr('''''') +icon_lightbulb_sharp = NotStr('''''') +icon_track_changes_outlined = NotStr('''''') +icon_wallpaper_sharp = NotStr('''''') +icon_fullscreen_exit_twotone = NotStr('''''') +icon_call_merge_sharp = NotStr('''''') +icon_apartment_filled = NotStr('''''') +icon_filter1_filled = NotStr('''''') +icon_biotech_outlined = NotStr('''''') +icon_keyboard_return_sharp = NotStr('''''') +icon_view_quilt_twotone = NotStr(''' + + +''') +icon_surfing_twotone = NotStr('''''') +icon_arrow_forward_filled = NotStr('''''') +icon_photo_size_select_actual_round = NotStr('''''') +icon_wifi_protected_setup_filled = NotStr(''' + + +''') +icon_umbrella_twotone = NotStr(''' + + +''') +icon_screen_rotation_sharp = NotStr('''''') +icon_fax_filled = NotStr('''''') +icon_email_sharp = NotStr('''''') +icon_wb_sunny_sharp = NotStr('''''') +icon_flip_sharp = NotStr('''''') +icon_paragliding_outlined = NotStr('''''') +icon_nordic_walking_sharp = NotStr('''''') +icon_sip_filled = NotStr(''' + + +''') +icon_restore_sharp = NotStr('''''') +icon_md3_p_round = NotStr('''''') +icon_accessibility_new_round = NotStr('''''') +icon_battery0_bar_outlined = NotStr('''''') +icon_qr_code2_sharp = NotStr('''''') +icon_sd_filled = NotStr('''''') +icon_power_input_filled = NotStr('''''') +icon_crop_square_filled = NotStr('''''') +icon_not_listed_location_twotone = NotStr(''' + + +''') +icon_battery_charging_full_sharp = NotStr('''''') +icon_battery_charging90_round = NotStr(''' + + +''') +icon_upgrade_sharp = NotStr('''''') +icon_not_accessible_sharp = NotStr('''''') +icon_raw_off_outlined = NotStr('''''') +icon_rotate90_degrees_cw_round = NotStr(''' + + +''') +icon_date_range_round = NotStr('''''') +icon_smart_display_twotone = NotStr(''' + + + +''') +icon_fmd_bad_outlined = NotStr(''' + + +''') +icon_person_pin_round = NotStr('''''') +icon_sort_by_alpha_sharp = NotStr('''''') +icon_quiz_filled = NotStr(''' + + +''') +icon_satellite_filled = NotStr('''''') +icon_sensor_door_sharp = NotStr('''''') +icon_hourglass_empty_twotone = NotStr('''''') +icon_event_note_filled = NotStr('''''') +icon_handshake_round = NotStr('''''') +icon_emoji_symbols_round = NotStr(''' + + + + +''') +icon_settings_round = NotStr('''''') +icon_group_twotone = NotStr(''' + + + +''') +icon_pix_filled = NotStr(''' + + +''') +icon_not_equal_twotone = NotStr(''' + + +''') +icon_filter_frames_sharp = NotStr('''''') +icon_model_training_filled = NotStr('''''') +icon_cell_wifi_sharp = NotStr('''''') +icon_storage_outlined = NotStr('''''') +icon_swipe_up_alt_outlined = NotStr('''''') +icon_fork_left_outlined = NotStr('''''') +icon_short_text_outlined = NotStr('''''') +icon_md30_fps_outlined = NotStr('''''') +icon_view_week_round = NotStr('''''') +icon_expand_sharp = NotStr('''''') +icon_space_dashboard_outlined = NotStr('''''') +icon_spoke_sharp = NotStr('''''') +icon_straight_sharp = NotStr('''''') +icon_workspace_premium_outlined = NotStr('''''') +icon_mouse_twotone = NotStr(''' + + +''') +icon_add_circle_outline_outlined = NotStr('''''') +icon_timer_sharp = NotStr('''''') +icon_start_outlined = NotStr('''''') +icon_error_round = NotStr('''''') +icon_event_note_sharp = NotStr('''''') +icon_report_problem_sharp = NotStr('''''') +icon_add_moderator_round = NotStr(''' + + +''') +icon_keyboard_return_filled = NotStr('''''') +icon_science_outlined = NotStr('''''') +icon_devices_fold_twotone = NotStr(''' + + +''') +icon_sentiment_satisfied_filled = NotStr(''' + + + +''') +icon_signal_wifi2_bar_round = NotStr(''' + + +''') +icon_stream_twotone = NotStr(''' + + + + + +''') +icon_medical_services_round = NotStr('''''') +icon_restart_alt_round = NotStr('''''') +icon_view_agenda_outlined = NotStr('''''') +icon_perm_data_setting_filled = NotStr('''''') +icon_satellite_alt_filled = NotStr('''''') +icon_home_twotone = NotStr(''' + + +''') +icon_panorama_twotone = NotStr(''' + + +''') +icon_looks6_filled = NotStr('''''') +icon_content_copy_round = NotStr('''''') +icon_backspace_twotone = NotStr(''' + + +''') +icon_batch_prediction_outlined = NotStr('''''') +icon_forward30_round = NotStr('''''') +icon_corporate_fare_outlined = NotStr('''''') +icon_straighten_round = NotStr('''''') +icon_contact_phone_twotone = NotStr(''' + + +''') +icon_auto_graph_filled = NotStr('''''') +icon_movie_twotone = NotStr(''' + + +''') +icon_no_accounts_round = NotStr(''' + + +''') +icon_punch_clock_filled = NotStr(''' + + +''') +icon_house_siding_round = NotStr('''''') +icon_bluetooth_drive_outlined = NotStr(''' + + + + +''') +icon_highlight_off_twotone = NotStr(''' + + +''') +icon_alarm_add_twotone = NotStr(''' + + +''') +icon_not_equal_sharp = NotStr(''' + + +''') +icon_time_to_leave_sharp = NotStr('''''') +icon_campaign_round = NotStr('''''') +icon_man_sharp = NotStr(''' + + +''') +icon_emergency_recording_filled = NotStr('''''') +icon_atm_twotone = NotStr('''''') +icon_integration_instructions_round = NotStr('''''') +icon_wb_auto_sharp = NotStr('''''') +icon_present_to_all_round = NotStr('''''') +icon_album_sharp = NotStr('''''') +icon_view_timeline_round = NotStr('''''') +icon_school_sharp = NotStr('''''') +icon_line_weight_filled = NotStr('''''') +icon_video_call_filled = NotStr('''''') +icon_kayaking_sharp = NotStr('''''') +icon_keyboard_return_outlined = NotStr('''''') +icon_lightbulb_circle_sharp = NotStr('''''') +icon_remove_circle_outline_filled = NotStr('''''') +icon_keyboard_backspace_twotone = NotStr('''''') +icon_photo_album_filled = NotStr('''''') +icon_contactless_filled = NotStr('''''') +icon_adb_twotone = NotStr('''''') +icon_waterfall_chart_outlined = NotStr('''''') +icon_navigate_next_twotone = NotStr('''''') +icon_speaker_group_filled = NotStr(''' + + + +''') +icon_visibility_round = NotStr('''''') +icon_batch_prediction_twotone = NotStr(''' + + +''') +icon_border_color_round = NotStr('''''') +icon_egg_filled = NotStr('''''') +icon_brightness6_outlined = NotStr('''''') +icon_queue_play_next_sharp = NotStr('''''') +icon_dvr_twotone = NotStr(''' + + +''') +icon_signal_wifi_statusbar_connected_no_internet4_filled = NotStr(''' + + +''') +icon_link_off_twotone = NotStr('''''') +icon_slideshow_twotone = NotStr(''' + + +''') +icon_celebration_twotone = NotStr(''' + + +''') +icon_multiline_chart_twotone = NotStr('''''') +icon_sports_mma_filled = NotStr('''''') +icon_sentiment_very_satisfied_sharp = NotStr('''''') +icon_accessible_forward_outlined = NotStr(''' + + +''') +icon_preview_outlined = NotStr('''''') +icon_delete_sweep_filled = NotStr('''''') +icon_source_sharp = NotStr('''''') +icon_network_locked_round = NotStr('''''') +icon_streetview_twotone = NotStr(''' + + + +''') +icon_work_outlined = NotStr('''''') +icon_amp_stories_filled = NotStr('''''') +icon_navigate_next_round = NotStr('''''') +icon_file_copy_filled = NotStr('''''') +icon_crop_portrait_twotone = NotStr('''''') +icon_games_outlined = NotStr('''''') +icon_add_to_photos_sharp = NotStr('''''') +icon_forward30_twotone = NotStr('''''') +icon_network_ping_round = NotStr('''''') +icon_system_security_update_good_filled = NotStr('''''') +icon_nfc_filled = NotStr('''''') +icon_cloud_sync_outlined = NotStr('''''') +icon_pin_invoke_sharp = NotStr('''''') +icon_bed_filled = NotStr('''''') +icon_headset_mic_filled = NotStr('''''') +icon_arrow_drop_up_twotone = NotStr('''''') +icon_pin_invoke_twotone = NotStr('''''') +icon_playlist_play_round = NotStr('''''') +icon_bookmark_remove_twotone = NotStr(''' + + +''') +icon_featured_play_list_twotone = NotStr(''' + + +''') +icon_connect_without_contact_filled = NotStr('''''') +icon_laptop_twotone = NotStr(''' + + +''') +icon_quiz_twotone = NotStr(''' + + +''') +icon_map_sharp = NotStr('''''') +icon_stop_circle_round = NotStr('''''') +icon_male_filled = NotStr('''''') +icon_supervisor_account_twotone = NotStr(''' + + + +''') +icon_md30_fps_select_outlined = NotStr('''''') +icon_md3_d_rotation_round = NotStr('''''') +icon_charging_station_twotone = NotStr(''' + + +''') +icon_ev_station_sharp = NotStr('''''') +icon_bathtub_filled = NotStr(''' + + +''') +icon_battery_saver_filled = NotStr('''''') +icon_no_meeting_room_outlined = NotStr('''''') +icon_save_all_sharp = NotStr(''' + + +''') +icon_tty_outlined = NotStr('''''') +icon_alt_route_outlined = NotStr('''''') +icon_bakery_dining_filled = NotStr('''''') +icon_sentiment_satisfied_twotone = NotStr(''' + + + + +''') +icon_no_meals_twotone = NotStr('''''') +icon_swipe_outlined = NotStr(''' + + +''') +icon_arrow_forward_ios_outlined = NotStr('''''') +icon_chat_bubble_outline_round = NotStr('''''') +icon_power_input_round = NotStr('''''') +icon_abc_round = NotStr('''''') +icon_quiz_sharp = NotStr(''' + + +''') +icon_mark_email_read_sharp = NotStr('''''') +icon_router_sharp = NotStr('''''') +icon_signal_cellular_connected_no_internet4_bar_twotone = NotStr('''''') +icon_token_sharp = NotStr('''''') +icon_book_round = NotStr('''''') +icon_call_end_twotone = NotStr(''' + + +''') +icon_adb_round = NotStr('''''') +icon_phonelink_setup_outlined = NotStr('''''') +icon_apps_filled = NotStr('''''') +icon_volcano_outlined = NotStr('''''') +icon_find_in_page_twotone = NotStr(''' + + +''') +icon_radar_round = NotStr('''''') +icon_list_filled = NotStr('''''') +icon_camera_roll_twotone = NotStr(''' + + +''') +icon_voice_chat_round = NotStr('''''') +icon_repeat_on_twotone = NotStr('''''') +icon_switch_access_shortcut_add_outlined = NotStr('''''') +icon_md15_mp_filled = NotStr('''''') +icon_adjust_outlined = NotStr('''''') +icon_flip_to_back_outlined = NotStr('''''') +icon_drive_file_move_rtl_twotone = NotStr(''' + + +''') +icon_transform_sharp = NotStr('''''') +icon_mobiledata_off_twotone = NotStr('''''') +icon_domain_add_sharp = NotStr('''''') +icon_public_off_outlined = NotStr('''''') +icon_border_inner_round = NotStr('''''') +icon_assignment_turned_in_outlined = NotStr('''''') +icon_drive_file_rename_outline_twotone = NotStr(''' + + +''') +icon_spatial_tracking_twotone = NotStr(''' + + + + + +''') +icon_h_plus_mobiledata_sharp = NotStr('''''') +icon_campaign_filled = NotStr('''''') +icon_space_dashboard_filled = NotStr('''''') +icon_thumb_up_off_alt_round = NotStr('''''') +icon_shield_round = NotStr('''''') +icon_handshake_twotone = NotStr(''' + + +''') +icon_outbox_outlined = NotStr(''' + + +''') +icon_md3_k_round = NotStr('''''') +icon_format_size_round = NotStr('''''') +icon_insert_emoticon_filled = NotStr('''''') +icon_speaker_phone_twotone = NotStr(''' + + +''') +icon_dehaze_round = NotStr('''''') +icon_no_luggage_outlined = NotStr('''''') +icon_pattern_filled = NotStr('''''') +icon_stars_outlined = NotStr('''''') +icon_md8_mp_outlined = NotStr(''' + + + +''') +icon_discount_round = NotStr(''' + + +''') +icon_garage_filled = NotStr(''' + + + + +''') +icon_autofps_select_twotone = NotStr(''' + + +''') +icon_clear_all_sharp = NotStr('''''') +icon_lock_reset_round = NotStr('''''') +icon_smoke_free_sharp = NotStr('''''') +icon_elderly_woman_filled = NotStr('''''') +icon_turn_sharp_left_outlined = NotStr('''''') +icon_swipe_right_alt_sharp = NotStr('''''') +icon_hexagon_outlined = NotStr('''''') +icon_play_circle_filled_sharp = NotStr('''''') +icon_phone_iphone_sharp = NotStr('''''') +icon_traffic_twotone = NotStr(''' + + +''') +icon_people_outlined = NotStr('''''') +icon_local_play_filled = NotStr('''''') +icon_whatshot_filled = NotStr('''''') +icon_pregnant_woman_round = NotStr('''''') +icon_arrow_drop_down_circle_sharp = NotStr('''''') +icon_fullscreen_exit_sharp = NotStr('''''') +icon_playlist_play_outlined = NotStr('''''') +icon_flare_round = NotStr('''''') +icon_collections_sharp = NotStr('''''') +icon_drive_eta_outlined = NotStr(''' + + + +''') +icon_skip_next_twotone = NotStr(''' + + +''') +icon_grass_filled = NotStr('''''') +icon_minus_filled = NotStr('''''') +icon_person_add_outlined = NotStr('''''') +icon_earbuds_battery_filled = NotStr('''''') +icon_sports_gymnastics_twotone = NotStr('''''') +icon_repeat_sharp = NotStr('''''') +icon_rowing_twotone = NotStr('''''') +icon_signal_wifi_statusbar_connected_no_internet4_twotone = NotStr(''' + + +''') +icon_event_repeat_twotone = NotStr(''' + + +''') +icon_bungalow_sharp = NotStr('''''') +icon_view_week_twotone = NotStr(''' + + +''') +icon_view_array_outlined = NotStr('''''') +icon_catching_pokemon_round = NotStr('''''') +icon_stream_filled = NotStr(''' + + + + + +''') +icon_view_compact_alt_filled = NotStr('''''') +icon_room_service_sharp = NotStr('''''') +icon_emergency_round = NotStr('''''') +icon_touch_app_sharp = NotStr('''''') +icon_iron_twotone = NotStr(''' + + +''') +icon_signal_cellular_connected_no_internet1_bar_sharp = NotStr(''' + + +''') +icon_video_file_twotone = NotStr(''' + + +''') +icon_snowboarding_round = NotStr('''''') +icon_cell_wifi_round = NotStr(''' + + +''') +icon_web_asset_off_sharp = NotStr('''''') +icon_remove_from_queue_twotone = NotStr(''' + + +''') +icon_timer_off_filled = NotStr('''''') +icon_edit_off_filled = NotStr('''''') +icon_spatial_tracking_sharp = NotStr(''' + + + +''') +icon_whatsapp_twotone = NotStr('''''') +icon_highlight_outlined = NotStr('''''') +icon_flare_sharp = NotStr('''''') +icon_view_compact_twotone = NotStr(''' + + +''') +icon_md9_k_outlined = NotStr(''' + + + +''') +icon_queue_play_next_filled = NotStr('''''') +icon_md30_fps_twotone = NotStr('''''') +icon_cloud_queue_round = NotStr('''''') +icon_spatial_audio_off_sharp = NotStr(''' + + + +''') +icon_subtitles_outlined = NotStr('''''') +icon_filter_alt_off_round = NotStr('''''') +icon_bug_report_round = NotStr('''''') +icon_signal_cellular_null_outlined = NotStr('''''') +icon_first_page_sharp = NotStr('''''') +icon_delivery_dining_outlined = NotStr(''' + + +''') +icon_surround_sound_filled = NotStr('''''') +icon_house_round = NotStr('''''') +icon_star_border_filled = NotStr('''''') +icon_commute_twotone = NotStr('''''') +icon_system_security_update_filled = NotStr('''''') +icon_line_weight_outlined = NotStr('''''') +icon_mood_bad_sharp = NotStr('''''') +icon_draw_filled = NotStr('''''') +icon_screen_lock_landscape_twotone = NotStr(''' + + +''') +icon_local_offer_sharp = NotStr('''''') +icon_terminal_outlined = NotStr('''''') +icon_group_add_twotone = NotStr(''' + + + +''') +icon_developer_board_off_filled = NotStr('''''') +icon_history_toggle_off_filled = NotStr('''''') +icon_bathroom_filled = NotStr('''''') +icon_free_breakfast_twotone = NotStr(''' + + +''') +icon_devices_other_round = NotStr('''''') +icon_electrical_services_filled = NotStr(''' + + +''') +icon_price_change_filled = NotStr('''''') +icon_battery_alert_round = NotStr('''''') +icon_format_color_reset_round = NotStr('''''') +icon_piano_off_filled = NotStr('''''') +icon_sanitizer_filled = NotStr('''''') +icon_sports_score_filled = NotStr('''''') +icon_room_twotone = NotStr(''' + + + +''') +icon_cabin_filled = NotStr('''''') +icon_manage_search_round = NotStr('''''') +icon_credit_card_off_round = NotStr('''''') +icon_signal_wifi3_bar_lock_filled = NotStr(''' + + +''') +icon_density_large_round = NotStr('''''') +icon_brightness1_outlined = NotStr('''''') +icon_done_round = NotStr('''''') +icon_drafts_sharp = NotStr('''''') +icon_cabin_outlined = NotStr('''''') +icon_how_to_vote_outlined = NotStr('''''') +icon_equalizer_sharp = NotStr('''''') +icon_device_thermostat_round = NotStr('''''') +icon_accessible_twotone = NotStr(''' + + +''') +icon_filter_list_sharp = NotStr('''''') +icon_school_twotone = NotStr(''' + + +''') +icon_save_as_twotone = NotStr(''' + + +''') +icon_videogame_asset_off_twotone = NotStr(''' + + +''') +icon_do_disturb_on_round = NotStr('''''') +icon_assignment_return_outlined = NotStr('''''') +icon_price_change_round = NotStr('''''') +icon_filter_none_filled = NotStr('''''') +icon_currency_pound_filled = NotStr('''''') +icon_minor_crash_outlined = NotStr('''''') +icon_r_mobiledata_round = NotStr('''''') +icon_edit_off_outlined = NotStr('''''') +icon_newspaper_round = NotStr('''''') +icon_imagesearch_roller_sharp = NotStr('''''') +icon_room_preferences_twotone = NotStr(''' + + +''') +icon_camera_rear_outlined = NotStr('''''') +icon_analytics_round = NotStr('''''') +icon_md7_mp_filled = NotStr('''''') +icon_md1_x_mobiledata_outlined = NotStr('''''') +icon_telegram_sharp = NotStr('''''') +icon_air_round = NotStr('''''') +icon_device_hub_twotone = NotStr('''''') +icon_link_off_outlined = NotStr('''''') +icon_airplane_ticket_twotone = NotStr(''' + + + +''') +icon_surround_sound_outlined = NotStr(''' + + +''') +icon_star_half_round = NotStr('''''') +icon_switch_left_sharp = NotStr('''''') +icon_vibration_outlined = NotStr('''''') +icon_airline_seat_individual_suite_sharp = NotStr('''''') +icon_tram_twotone = NotStr(''' + + +''') +icon_assistant_sharp = NotStr('''''') +icon_light_filled = NotStr('''''') +icon_ring_volume_outlined = NotStr('''''') +icon_gps_off_sharp = NotStr('''''') +icon_md2_k_sharp = NotStr('''''') +icon_auto_awesome_mosaic_filled = NotStr('''''') +icon_panorama_wide_angle_round = NotStr('''''') +icon_no_drinks_twotone = NotStr(''' + + +''') +icon_manage_search_twotone = NotStr('''''') +icon_join_right_twotone = NotStr(''' + + +''') +icon_savings_twotone = NotStr(''' + + +''') +icon_filter_none_round = NotStr('''''') +icon_favorite_border_twotone = NotStr('''''') +icon_border_inner_sharp = NotStr('''''') +icon_md7_k_twotone = NotStr(''' + + + +''') +icon_developer_mode_outlined = NotStr('''''') +icon_arrow_drop_down_circle_outlined = NotStr('''''') +icon_calendar_today_round = NotStr('''''') +icon_swap_vert_twotone = NotStr('''''') +icon_signal_wifi0_bar_outlined = NotStr('''''') +icon_point_of_sale_filled = NotStr('''''') +icon_text_rotation_angledown_filled = NotStr('''''') +icon_gpp_maybe_round = NotStr('''''') +icon_unarchive_outlined = NotStr('''''') +icon_check_box_filled = NotStr('''''') +icon_speaker_sharp = NotStr('''''') +icon_shortcut_twotone = NotStr('''''') +icon_swap_horiz_sharp = NotStr('''''') +icon_work_off_sharp = NotStr('''''') +icon_hexagon_round = NotStr('''''') +icon_arrow_back_twotone = NotStr('''''') +icon_payments_twotone = NotStr(''' + + + +''') +icon_volcano_round = NotStr('''''') +icon_luggage_twotone = NotStr(''' + + +''') +icon_hotel_class_outlined = NotStr('''''') +icon_pages_twotone = NotStr(''' + + +''') +icon_content_paste_go_outlined = NotStr(''' + + +''') +icon_no_crash_filled = NotStr('''''') +icon_reviews_round = NotStr('''''') +icon_location_city_filled = NotStr('''''') +icon_sd_storage_twotone = NotStr(''' + + +''') +icon_motion_photos_paused_filled = NotStr('''''') +icon_stop_screen_share_twotone = NotStr(''' + + + +''') +icon_view_in_ar_sharp = NotStr('''''') +icon_assessment_filled = NotStr('''''') +icon_sick_twotone = NotStr('''''') +icon_nfc_sharp = NotStr('''''') +icon_co2_twotone = NotStr('''''') +icon_dangerous_outlined = NotStr('''''') +icon_blur_on_round = NotStr('''''') +icon_turn_slight_left_round = NotStr('''''') +icon_cases_outlined = NotStr(''' + + +''') +icon_ssid_chart_twotone = NotStr('''''') +icon_bike_scooter_outlined = NotStr(''' + + +''') +icon_remove_moderator_sharp = NotStr('''''') +icon_tablet_android_outlined = NotStr('''''') +icon_record_voice_over_sharp = NotStr(''' + + +''') +icon_gps_off_filled = NotStr('''''') +icon_task_twotone = NotStr(''' + + +''') +icon_drag_indicator_filled = NotStr('''''') +icon_browser_updated_sharp = NotStr('''''') +icon_md123_filled = NotStr('''''') +icon_signal_cellular3_bar_outlined = NotStr(''' + + +''') +icon_arrow_drop_down_round = NotStr('''''') +icon_loyalty_twotone = NotStr(''' + + + + +''') +icon_sentiment_satisfied_round = NotStr(''' + + + +''') +icon_video_library_sharp = NotStr('''''') +icon_view_module_round = NotStr('''''') +icon_battery60_twotone = NotStr(''' + + +''') +icon_flash_auto_filled = NotStr('''''') +icon_image_search_round = NotStr('''''') +icon_star_filled = NotStr('''''') +icon_history_sharp = NotStr('''''') +icon_balcony_sharp = NotStr('''''') +icon_person_outline_twotone = NotStr(''' + + + +''') +icon_keyboard_double_arrow_right_twotone = NotStr(''' + + +''') +icon_dining_twotone = NotStr(''' + + + +''') +icon_keyboard_backspace_filled = NotStr('''''') +icon_airline_seat_recline_extra_sharp = NotStr('''''') +icon_panorama_horizontal_select_round = NotStr('''''') +icon_thumbs_up_down_outlined = NotStr('''''') +icon_pinch_twotone = NotStr(''' + + +''') +icon_screen_rotation_alt_filled = NotStr('''''') +icon_keyboard_filled = NotStr('''''') +icon_collections_filled = NotStr('''''') +icon_domain_verification_outlined = NotStr(''' + + +''') +icon_update_outlined = NotStr('''''') +icon_missed_video_call_filled = NotStr('''''') +icon_menu_book_twotone = NotStr(''' + + + +''') +icon_contact_mail_twotone = NotStr(''' + + +''') +icon_lock_outlined = NotStr('''''') +icon_space_bar_sharp = NotStr('''''') +icon_auto_awesome_motion_sharp = NotStr('''''') +icon_priority_high_round = NotStr(''' + + +''') +icon_md1_k_twotone = NotStr(''' + + + +''') +icon_phone_in_talk_twotone = NotStr(''' + + +''') +icon_thermostat_auto_outlined = NotStr('''''') +icon_monitor_outlined = NotStr('''''') +icon_family_restroom_outlined = NotStr('''''') +icon_md1_k_plus_round = NotStr('''''') +icon_r_mobiledata_twotone = NotStr('''''') +icon_back_hand_sharp = NotStr('''''') +icon_handyman_twotone = NotStr(''' + + + +''') +icon_surfing_filled = NotStr('''''') +icon_stop_round = NotStr('''''') +icon_format_paint_round = NotStr('''''') +icon_square_sharp = NotStr('''''') +icon_align_vertical_bottom_twotone = NotStr('''''') +icon_thumb_up_off_alt_twotone = NotStr(''' + + +''') +icon_local_gas_station_round = NotStr('''''') +icon_media_bluetooth_on_twotone = NotStr('''''') +icon_photo_camera_front_sharp = NotStr('''''') +icon_print_disabled_filled = NotStr('''''') +icon_plumbing_twotone = NotStr(''' + + +''') +icon_find_in_page_sharp = NotStr('''''') +icon_publish_sharp = NotStr('''''') +icon_format_underlined_filled = NotStr('''''') +icon_home_round = NotStr('''''') +icon_reset_tv_sharp = NotStr('''''') +icon_undo_sharp = NotStr('''''') +icon_slow_motion_video_outlined = NotStr('''''') +icon_nightlight_sharp = NotStr('''''') +icon_motion_photos_auto_sharp = NotStr('''''') +icon_sd_card_alert_sharp = NotStr('''''') +icon_toll_filled = NotStr('''''') +icon_light_sharp = NotStr('''''') +icon_filter5_twotone = NotStr(''' + + +''') +icon_closed_caption_disabled_sharp = NotStr('''''') +icon_group_round = NotStr('''''') +icon_description_round = NotStr('''''') +icon_local_bar_twotone = NotStr(''' + + +''') +icon_icecream_sharp = NotStr('''''') +icon_sensors_off_round = NotStr('''''') +icon_phone_callback_round = NotStr('''''') +icon_report_gmailerrorred_outlined = NotStr(''' + + + +''') +icon_my_location_outlined = NotStr('''''') +icon_laptop_sharp = NotStr('''''') +icon_fiber_smart_record_outlined = NotStr('''''') +icon_interpreter_mode_sharp = NotStr('''''') +icon_signal_wifi0_bar_sharp = NotStr('''''') +icon_ios_share_outlined = NotStr('''''') +icon_chat_bubble_round = NotStr('''''') +icon_data_thresholding_twotone = NotStr(''' + + + +''') +icon_highlight_alt_sharp = NotStr('''''') +icon_edit_note_outlined = NotStr('''''') +icon_unfold_more_round = NotStr('''''') +icon_signal_cellular_no_sim_filled = NotStr('''''') +icon_card_giftcard_twotone = NotStr(''' + + +''') +icon_checklist_twotone = NotStr('''''') +icon_devices_round = NotStr('''''') +icon_library_add_check_round = NotStr('''''') +icon_access_time_round = NotStr('''''') +icon_folder_zip_filled = NotStr('''''') +icon_weekend_twotone = NotStr(''' + + +''') +icon_add_reaction_filled = NotStr('''''') +icon_block_sharp = NotStr('''''') +icon_trending_up_sharp = NotStr('''''') +icon_star_purple500_round = NotStr('''''') +icon_airplay_sharp = NotStr('''''') +icon_lte_mobiledata_round = NotStr('''''') +icon_contact_phone_filled = NotStr('''''') +icon_upgrade_outlined = NotStr('''''') +icon_event_seat_outlined = NotStr('''''') +icon_sync_problem_twotone = NotStr('''''') +icon_attractions_outlined = NotStr('''''') +icon_battery0_bar_round = NotStr('''''') +icon_terrain_sharp = NotStr('''''') +icon_monochrome_photos_twotone = NotStr(''' + + +''') +icon_scatter_plot_twotone = NotStr(''' + + + + +''') +icon_fort_outlined = NotStr('''''') +icon_share_arrival_time_twotone = NotStr(''' + + +''') +icon_gradient_twotone = NotStr('''''') +icon_assistant_direction_sharp = NotStr('''''') +icon_auto_awesome_sharp = NotStr('''''') +icon_groups_round = NotStr('''''') +icon_medication_twotone = NotStr(''' + + + +''') +icon_replay5_sharp = NotStr('''''') +icon_switch_right_twotone = NotStr(''' + + +''') +icon_trending_up_filled = NotStr('''''') +icon_shop2_twotone = NotStr(''' + + + + +''') +icon_time_to_leave_outlined = NotStr(''' + + + +''') +icon_add_location_alt_outlined = NotStr('''''') +icon_skip_previous_outlined = NotStr('''''') +icon_open_in_new_outlined = NotStr('''''') +icon_border_bottom_filled = NotStr('''''') +icon_av_timer_outlined = NotStr('''''') +icon_directions_off_round = NotStr('''''') +icon_people_alt_sharp = NotStr(''' + + + +''') +icon_domain_add_filled = NotStr('''''') +icon_smart_screen_outlined = NotStr(''' + + +''') +icon_table_bar_twotone = NotStr(''' + + +''') +icon_turned_in_not_filled = NotStr('''''') +icon_grid4_x4_round = NotStr('''''') +icon_fence_sharp = NotStr('''''') +icon_g_mobiledata_round = NotStr('''''') +icon_not_accessible_round = NotStr('''''') +icon_exposure_plus1_twotone = NotStr('''''') +icon_tap_and_play_outlined = NotStr('''''') +icon_developer_mode_twotone = NotStr('''''') +icon_settings_phone_twotone = NotStr(''' + + +''') +icon_person_off_outlined = NotStr('''''') +icon_repeat_filled = NotStr('''''') +icon_sports_kabaddi_round = NotStr(''' + + + +''') +icon_cloud_circle_sharp = NotStr('''''') +icon_mode_of_travel_filled = NotStr('''''') +icon_blur_linear_round = NotStr('''''') +icon_browse_gallery_filled = NotStr(''' + + +''') +icon_filter6_twotone = NotStr(''' + + +''') +icon_route_round = NotStr('''''') +icon_install_desktop_twotone = NotStr(''' + + + +''') +icon_mic_external_off_outlined = NotStr('''''') +icon_factory_twotone = NotStr(''' + + +''') +icon_remove_twotone = NotStr('''''') +icon_lock_clock_sharp = NotStr('''''') +icon_camera_indoor_round = NotStr('''''') +icon_health_and_safety_twotone = NotStr(''' + + +''') +icon_photo_size_select_actual_sharp = NotStr('''''') +icon_md14_mp_twotone = NotStr(''' + + + + + +''') +icon_drafts_round = NotStr('''''') +icon_snippet_folder_round = NotStr('''''') +icon_polymer_filled = NotStr('''''') +icon_bluetooth_disabled_sharp = NotStr('''''') +icon_restore_page_round = NotStr('''''') +icon_md3_p_twotone = NotStr(''' + + +''') +icon_notification_important_twotone = NotStr(''' + + +''') +icon_local_police_sharp = NotStr('''''') +icon_local_post_office_filled = NotStr('''''') +icon_square_foot_filled = NotStr('''''') +icon_group_remove_twotone = NotStr(''' + + +''') +icon_call_merge_outlined = NotStr('''''') +icon_thunderstorm_sharp = NotStr('''''') +icon_emoji_objects_outlined = NotStr(''' + + + + +''') +icon_chrome_reader_mode_filled = NotStr('''''') +icon_local_airport_filled = NotStr('''''') +icon_add_task_sharp = NotStr('''''') +icon_person_search_round = NotStr(''' + + +''') +icon_landslide_round = NotStr('''''') +icon_account_balance_sharp = NotStr('''''') +icon_media_bluetooth_off_twotone = NotStr('''''') +icon_view_carousel_twotone = NotStr(''' + + +''') +icon_align_horizontal_right_round = NotStr('''''') +icon_shower_round = NotStr(''' + + + + + + + +''') +icon_podcasts_sharp = NotStr('''''') +icon_cookie_twotone = NotStr(''' + + + + + +''') +icon_mobile_off_sharp = NotStr('''''') +icon_mic_round = NotStr('''''') +icon_extension_off_filled = NotStr('''''') +icon_bedroom_parent_filled = NotStr(''' + + +''') +icon_departure_board_outlined = NotStr(''' + + + +''') +icon_museum_sharp = NotStr('''''') +icon_cancel_schedule_send_filled = NotStr(''' + + +''') +icon_radio_filled = NotStr('''''') +icon_local_drink_outlined = NotStr('''''') +icon_photo_size_select_small_outlined = NotStr('''''') +icon_battery_charging_full_round = NotStr('''''') +icon_flight_land_twotone = NotStr('''''') +icon_polymer_outlined = NotStr('''''') +icon_view_comfy_round = NotStr('''''') +icon_ac_unit_sharp = NotStr('''''') +icon_downloading_twotone = NotStr('''''') +icon_note_add_sharp = NotStr('''''') +icon_wechat_round = NotStr(''' + + +''') +icon_emoji_emotions_twotone = NotStr(''' + + + + + +''') +icon_note_alt_round = NotStr('''''') +icon_people_outline_outlined = NotStr('''''') +icon_wordpress_round = NotStr('''''') +icon_add_sharp = NotStr('''''') +icon_panorama_photosphere_round = NotStr('''''') +icon_playlist_remove_sharp = NotStr('''''') +icon_insert_invitation_round = NotStr('''''') +icon_live_tv_filled = NotStr('''''') +icon_landslide_sharp = NotStr('''''') +icon_thermostat_filled = NotStr('''''') +icon_airline_seat_legroom_extra_twotone = NotStr('''''') +icon_deselect_outlined = NotStr('''''') +icon_minor_crash_filled = NotStr('''''') +icon_wb_cloudy_outlined = NotStr('''''') +icon_md8_k_twotone = NotStr(''' + + + + + +''') +icon_phonelink_setup_round = NotStr('''''') +icon_ev_station_filled = NotStr('''''') +icon_format_align_justify_round = NotStr('''''') +icon_hdr_off_twotone = NotStr('''''') +icon_do_disturb_alt_round = NotStr('''''') +icon_backup_twotone = NotStr(''' + + +''') +icon_safety_divider_filled = NotStr('''''') +icon_golf_course_twotone = NotStr(''' + + + + +''') +icon_format_shapes_sharp = NotStr('''''') +icon_filter1_outlined = NotStr('''''') +icon_screen_rotation_twotone = NotStr(''' + + +''') +icon_spa_sharp = NotStr('''''') +icon_man_round = NotStr(''' + + +''') +icon_south_round = NotStr('''''') +icon_phonelink_off_outlined = NotStr('''''') +icon_holiday_village_twotone = NotStr(''' + + +''') +icon_keyboard_control_key_twotone = NotStr('''''') +icon_article_filled = NotStr('''''') +icon_gpp_maybe_filled = NotStr('''''') +icon_text_decrease_filled = NotStr('''''') +icon_power_off_sharp = NotStr('''''') +icon_comment_bank_filled = NotStr('''''') +icon_image_not_supported_twotone = NotStr(''' + + +''') +icon_looks_one_filled = NotStr('''''') +icon_tsunami_twotone = NotStr(''' + + +''') +icon_browser_updated_outlined = NotStr('''''') +icon_phone_in_talk_sharp = NotStr('''''') +icon_call_to_action_outlined = NotStr('''''') +icon_design_services_sharp = NotStr('''''') +icon_format_shapes_twotone = NotStr(''' + + +''') +icon_fax_sharp = NotStr('''''') +icon_door_sliding_sharp = NotStr('''''') +icon_exposure_zero_twotone = NotStr('''''') +icon_confirmation_number_round = NotStr('''''') +icon_pin_end_twotone = NotStr('''''') +icon_remember_me_filled = NotStr(''' + + +''') +icon_opacity_twotone = NotStr(''' + + +''') +icon_shield_moon_filled = NotStr('''''') +icon_movie_round = NotStr('''''') +icon_bungalow_outlined = NotStr('''''') +icon_text_rotation_angledown_sharp = NotStr('''''') +icon_sports_bar_outlined = NotStr('''''') +icon_event_seat_sharp = NotStr('''''') +icon_dialer_sip_outlined = NotStr('''''') +icon_exposure_neg1_twotone = NotStr('''''') +icon_iron_filled = NotStr('''''') +icon_electric_car_outlined = NotStr(''' + + + + +''') +icon_camera_front_filled = NotStr('''''') +icon_crop_landscape_filled = NotStr('''''') +icon_north_east_outlined = NotStr('''''') +icon_notification_important_round = NotStr('''''') +icon_layers_clear_round = NotStr('''''') +icon_upcoming_filled = NotStr('''''') +icon_web_twotone = NotStr(''' + + +''') +icon_terminal_twotone = NotStr(''' + + + + +''') +icon_mode_standby_twotone = NotStr('''''') +icon_nearby_error_outlined = NotStr('''''') +icon_roller_skating_sharp = NotStr('''''') +icon_task_filled = NotStr('''''') +icon_class_filled = NotStr('''''') +icon_electrical_services_round = NotStr('''''') +icon_md8_k_outlined = NotStr(''' + + + +''') +icon_laptop_filled = NotStr('''''') +icon_local_library_outlined = NotStr('''''') +icon_soup_kitchen_sharp = NotStr('''''') +icon_settings_input_antenna_round = NotStr('''''') +icon_folder_open_twotone = NotStr(''' + + +''') +icon_signpost_filled = NotStr('''''') +icon_wheelchair_pickup_filled = NotStr('''''') +icon_phone_callback_outlined = NotStr('''''') +icon_edit_note_round = NotStr('''''') +icon_error_twotone = NotStr(''' + + +''') +icon_edit_calendar_round = NotStr('''''') +icon_sports_tennis_filled = NotStr('''''') +icon_terrain_twotone = NotStr(''' + + +''') +icon_filter5_round = NotStr('''''') +icon_cabin_round = NotStr('''''') +icon_md6_ft_apart_outlined = NotStr('''''') +icon_bookmark_add_twotone = NotStr(''' + + +''') +icon_location_disabled_twotone = NotStr('''''') +icon_rotate_right_outlined = NotStr('''''') +icon_corporate_fare_sharp = NotStr('''''') +icon_bookmark_border_filled = NotStr('''''') +icon_animation_filled = NotStr('''''') +icon_looks_twotone = NotStr('''''') +icon_save_twotone = NotStr(''' + + +''') +icon_sentiment_very_dissatisfied_twotone = NotStr(''' + + +''') +icon_radio_button_unchecked_filled = NotStr('''''') +icon_settings_power_round = NotStr('''''') +icon_vertical_align_center_twotone = NotStr('''''') +icon_view_compact_outlined = NotStr('''''') +icon_queue_round = NotStr('''''') +icon_edgesensor_high_twotone = NotStr(''' + + +''') +icon_event_outlined = NotStr('''''') +icon_timer3_select_sharp = NotStr('''''') +icon_light_mode_round = NotStr('''''') +icon_pest_control_rodent_filled = NotStr('''''') +icon_less_than_sharp = NotStr('''''') +icon_edit_off_twotone = NotStr(''' + + +''') +icon_description_sharp = NotStr('''''') +icon_keyboard_double_arrow_right_filled = NotStr(''' + + +''') +icon_speaker_phone_sharp = NotStr('''''') +icon_border_style_sharp = NotStr('''''') +icon_drive_folder_upload_round = NotStr('''''') +icon_refresh_sharp = NotStr('''''') +icon_notifications_active_outlined = NotStr('''''') +icon_folder_shared_round = NotStr('''''') +icon_miscellaneous_services_filled = NotStr('''''') +icon_menu_open_sharp = NotStr('''''') +icon_arrow_circle_left_sharp = NotStr('''''') +icon_car_repair_outlined = NotStr(''' + + + +''') +icon_post_add_outlined = NotStr(''' + + +''') +icon_report_problem_outlined = NotStr('''''') +icon_co2_outlined = NotStr('''''') +icon_food_bank_twotone = NotStr(''' + + +''') +icon_logo_dev_outlined = NotStr(''' + + +''') +icon_clean_hands_outlined = NotStr('''''') +icon_account_tree_twotone = NotStr(''' + + +''') +icon_emoji_transportation_sharp = NotStr(''' + + + +''') +icon_flip_to_front_round = NotStr('''''') +icon_do_not_touch_round = NotStr('''''') +icon_less_than_equal_filled = NotStr(''' + + +''') +icon_shield_outlined = NotStr('''''') +icon_scale_filled = NotStr('''''') +icon_install_mobile_filled = NotStr(''' + + +''') +icon_phonelink_off_round = NotStr('''''') +icon_wifi_lock_filled = NotStr(''' + + +''') +icon_replay_twotone = NotStr('''''') +icon_emergency_twotone = NotStr(''' + + +''') +icon_mode_outlined = NotStr('''''') +icon_comment_bank_sharp = NotStr('''''') +icon_hdr_off_sharp = NotStr('''''') +icon_trending_down_outlined = NotStr('''''') +icon_battery1_bar_twotone = NotStr(''' + + +''') +icon_md10_mp_filled = NotStr('''''') +icon_audio_file_round = NotStr('''''') +icon_live_tv_round = NotStr('''''') +icon_extension_off_outlined = NotStr('''''') +icon_table_restaurant_outlined = NotStr('''''') +icon_local_parking_round = NotStr('''''') +icon_open_in_new_off_round = NotStr('''''') +icon_balcony_filled = NotStr('''''') +icon_signal_wifi1_bar_filled = NotStr(''' + + +''') +icon_highlight_sharp = NotStr('''''') +icon_kitesurfing_filled = NotStr('''''') +icon_dialer_sip_sharp = NotStr('''''') +icon_format_color_reset_filled = NotStr('''''') +icon_format_color_text_round = NotStr('''''') +icon_point_of_sale_sharp = NotStr('''''') +icon_drive_file_move_rtl_filled = NotStr('''''') +icon_speed_sharp = NotStr(''' + + +''') +icon_bar_chart_sharp = NotStr('''''') +icon_keyboard_double_arrow_right_sharp = NotStr(''' + + +''') +icon_pedal_bike_sharp = NotStr('''''') +icon_run_circle_sharp = NotStr('''''') +icon_newspaper_outlined = NotStr('''''') +icon_padding_outlined = NotStr('''''') +icon_view_headline_filled = NotStr('''''') +icon_signal_wifi4_bar_outlined = NotStr('''''') +icon_telegram_round = NotStr('''''') +icon_switch_right_outlined = NotStr('''''') +icon_token_outlined = NotStr('''''') +icon_leave_bags_at_home_outlined = NotStr('''''') +icon_phone_enabled_twotone = NotStr('''''') +icon_filter3_round = NotStr('''''') +icon_headset_filled = NotStr('''''') +icon_work_outline_filled = NotStr('''''') +icon_audiotrack_outlined = NotStr('''''') +icon_edit_sharp = NotStr('''''') +icon_abc_sharp = NotStr('''''') +icon_leaderboard_outlined = NotStr('''''') +icon_roller_skating_filled = NotStr('''''') +icon_phonelink_filled = NotStr('''''') +icon_fullscreen_exit_round = NotStr('''''') +icon_vertical_align_bottom_filled = NotStr('''''') +icon_eco_outlined = NotStr('''''') +icon_mp_filled = NotStr('''''') +icon_smart_display_filled = NotStr('''''') +icon_vrpano_sharp = NotStr('''''') +icon_eject_twotone = NotStr(''' + + +''') +icon_unfold_less_twotone = NotStr('''''') +icon_face_retouching_off_filled = NotStr(''' + + +''') +icon_beenhere_outlined = NotStr('''''') +icon_md3_k_plus_outlined = NotStr(''' + + +''') +icon_local_florist_filled = NotStr('''''') +icon_thumb_up_filled = NotStr('''''') +icon_time_to_leave_twotone = NotStr(''' + + + + +''') +icon_md6_k_twotone = NotStr(''' + + + + +''') +icon_sports_bar_round = NotStr('''''') +icon_playlist_remove_twotone = NotStr('''''') +icon_reply_all_sharp = NotStr('''''') +icon_grid3_x3_outlined = NotStr('''''') +icon_crop_round = NotStr('''''') +icon_highlight_off_outlined = NotStr('''''') +icon_woo_commerce_outlined = NotStr('''''') +icon_photo_size_select_small_sharp = NotStr('''''') +icon_poll_round = NotStr('''''') +icon_settings_suggest_outlined = NotStr('''''') +icon_checklist_rtl_twotone = NotStr('''''') +icon_forum_outlined = NotStr('''''') +icon_electric_bike_twotone = NotStr('''''') +icon_photo_size_select_large_round = NotStr('''''') +icon_domain_filled = NotStr('''''') +icon_content_paste_go_sharp = NotStr(''' + + +''') +icon_more_twotone = NotStr(''' + + + + + +''') +icon_shopping_cart_checkout_twotone = NotStr('''''') +icon_av_timer_sharp = NotStr('''''') +icon_border_top_filled = NotStr('''''') +icon_outbound_outlined = NotStr('''''') +icon_lens_blur_twotone = NotStr('''''') +icon_keyboard_arrow_down_round = NotStr('''''') +icon_arrow_back_ios_outlined = NotStr('''''') +icon_do_disturb_twotone = NotStr('''''') +icon_swap_calls_round = NotStr('''''') +icon_feedback_filled = NotStr('''''') +icon_local_police_filled = NotStr('''''') +icon_plus_minus_round = NotStr('''''') +icon_access_alarm_outlined = NotStr('''''') +icon_favorite_outlined = NotStr('''''') +icon_e_mobiledata_outlined = NotStr('''''') +icon_person_pin_circle_twotone = NotStr(''' + + +''') +icon_euro_symbol_outlined = NotStr('''''') +icon_rotate_right_twotone = NotStr('''''') +icon_check_circle_sharp = NotStr('''''') +icon_percentage_twotone = NotStr(''' + + + + +''') +icon_bento_sharp = NotStr('''''') +icon_slideshow_sharp = NotStr('''''') +icon_sticky_note2_filled = NotStr('''''') +icon_celebration_filled = NotStr('''''') +icon_history_round = NotStr('''''') +icon_sensor_window_round = NotStr('''''') +icon_pets_twotone = NotStr(''' + + + + + +''') +icon_airline_seat_legroom_normal_filled = NotStr('''''') +icon_keyboard_double_arrow_up_sharp = NotStr(''' + + +''') +icon_difference_filled = NotStr('''''') +icon_face_twotone = NotStr(''' + + + + +''') +icon_text_decrease_round = NotStr('''''') +icon_open_in_new_off_sharp = NotStr('''''') +icon_fastfood_outlined = NotStr('''''') +icon_airplanemode_active_filled = NotStr('''''') +icon_inventory2_filled = NotStr('''''') +icon_location_disabled_filled = NotStr('''''') +icon_currency_lira_round = NotStr('''''') +icon_mobile_off_outlined = NotStr('''''') +icon_turned_in_outlined = NotStr('''''') +icon_radar_twotone = NotStr('''''') +icon_notification_important_filled = NotStr('''''') +icon_insights_filled = NotStr(''' + + +''') +icon_replay_circle_filled_twotone = NotStr('''''') +icon_view_compact_sharp = NotStr('''''') +icon_escalator_round = NotStr('''''') +icon_copyright_round = NotStr('''''') +icon_outlet_round = NotStr('''''') +icon_vpn_key_round = NotStr('''''') +icon_masks_twotone = NotStr(''' + + +''') +icon_looks_two_twotone = NotStr(''' + + +''') +icon_restaurant_menu_outlined = NotStr('''''') +icon_blur_off_round = NotStr(''' + + + + + + + + + + + + + +''') +icon_transit_enterexit_filled = NotStr('''''') +icon_woman_twotone = NotStr(''' + + +''') +icon_content_cut_outlined = NotStr('''''') +icon_wb_cloudy_filled = NotStr('''''') +icon_looks5_sharp = NotStr('''''') +icon_grid_view_sharp = NotStr('''''') +icon_redeem_round = NotStr('''''') +icon_h_mobiledata_twotone = NotStr('''''') +icon_mail_outline_filled = NotStr('''''') +icon_text_format_twotone = NotStr('''''') +icon_delete_forever_outlined = NotStr('''''') +icon_g_translate_twotone = NotStr('''''') +icon_personal_injury_twotone = NotStr(''' + + +''') +icon_filter8_twotone = NotStr(''' + + +''') +icon_do_disturb_filled = NotStr('''''') +icon_mouse_sharp = NotStr('''''') +icon_theater_comedy_twotone = NotStr(''' + + + + + + + + + +''') +icon_image_aspect_ratio_sharp = NotStr('''''') +icon_pause_circle_filled_outlined = NotStr('''''') +icon_elevator_twotone = NotStr(''' + + +''') +icon_image_filled = NotStr('''''') +icon_airline_seat_recline_normal_outlined = NotStr('''''') +icon_format_bold_twotone = NotStr('''''') +icon_format_list_bulleted_filled = NotStr('''''') +icon_textsms_sharp = NotStr('''''') +icon_grid_off_outlined = NotStr('''''') +icon_safety_divider_twotone = NotStr('''''') +icon_no_food_outlined = NotStr('''''') +icon_crop_din_round = NotStr('''''') +icon_downloading_filled = NotStr('''''') +icon_playlist_add_check_circle_twotone = NotStr(''' + + +''') +icon_production_quantity_limits_outlined = NotStr('''''') +icon_toggle_on_outlined = NotStr('''''') +icon_sports_kabaddi_outlined = NotStr(''' + + + +''') +icon_headset_off_sharp = NotStr('''''') +icon_expand_circle_down_twotone = NotStr(''' + + +''') +icon_person_remove_sharp = NotStr('''''') +icon_md6_mp_filled = NotStr('''''') +icon_front_hand_outlined = NotStr('''''') +icon_bungalow_twotone = NotStr(''' + + +''') +icon_directions_transit_filled_twotone = NotStr(''' + + + + +''') +icon_folder_delete_outlined = NotStr('''''') +icon_keyboard_voice_round = NotStr('''''') +icon_pause_circle_outline_outlined = NotStr('''''') +icon_person_add_alt_twotone = NotStr(''' + + + +''') +icon_assistant_round = NotStr('''''') +icon_directions_transit_filled_outlined = NotStr(''' + + + +''') +icon_arrow_circle_down_outlined = NotStr('''''') +icon_splitscreen_round = NotStr('''''') +icon_signal_wifi4_bar_filled = NotStr('''''') +icon_chevron_right_sharp = NotStr('''''') +icon_add_to_home_screen_filled = NotStr('''''') +icon_edit_attributes_filled = NotStr('''''') +icon_signal_wifi_statusbar4_bar_round = NotStr('''''') +icon_call_split_filled = NotStr('''''') +icon_exposure_neg1_round = NotStr('''''') +icon_md1_k_sharp = NotStr('''''') +icon_spatial_audio_off_round = NotStr(''' + + +''') +icon_air_filled = NotStr('''''') +icon_format_textdirection_r_to_l_outlined = NotStr('''''') +icon_timer3_select_filled = NotStr('''''') +icon_receipt_long_sharp = NotStr(''' + + +''') +icon_hls_off_sharp = NotStr('''''') +icon_fiber_manual_record_twotone = NotStr(''' + + +''') +icon_g_translate_outlined = NotStr('''''') +icon_online_prediction_filled = NotStr('''''') +icon_shopping_basket_sharp = NotStr('''''') +icon_brightness7_outlined = NotStr(''' + + +''') +icon_paragliding_twotone = NotStr(''' + + +''') +icon_tram_outlined = NotStr('''''') +icon_water_drop_twotone = NotStr(''' + + +''') +icon_fullscreen_sharp = NotStr('''''') +icon_local_library_filled = NotStr('''''') +icon_remove_red_eye_round = NotStr('''''') +icon_delete_sharp = NotStr('''''') +icon_closed_caption_filled = NotStr('''''') +icon_router_round = NotStr('''''') +icon_shortcut_sharp = NotStr('''''') +icon_temple_hindu_sharp = NotStr('''''') +icon_wifi_password_filled = NotStr('''''') +icon_remove_outlined = NotStr('''''') +icon_money_off_round = NotStr('''''') +icon_restart_alt_sharp = NotStr('''''') +icon_highlight_filled = NotStr('''''') +icon_local_post_office_outlined = NotStr('''''') +icon_http_sharp = NotStr('''''') +icon_coffee_maker_twotone = NotStr(''' + + + +''') +icon_trending_up_round = NotStr('''''') +icon_add_reaction_twotone = NotStr(''' + + +''') +icon_portable_wifi_off_filled = NotStr('''''') +icon_airlines_filled = NotStr('''''') +icon_contactless_outlined = NotStr(''' + + +''') +icon_store_sharp = NotStr('''''') +icon_folder_copy_sharp = NotStr(''' + + +''') +icon_more_vert_round = NotStr('''''') +icon_content_paste_off_sharp = NotStr('''''') +icon_less_than_filled = NotStr('''''') +icon_phone_disabled_round = NotStr('''''') +icon_wb_incandescent_twotone = NotStr(''' + + +''') +icon_border_inner_outlined = NotStr('''''') +icon_live_help_filled = NotStr('''''') +icon_data_saver_off_round = NotStr('''''') +icon_tonality_twotone = NotStr(''' + + +''') +icon_donut_small_twotone = NotStr(''' + + +''') +icon_install_mobile_outlined = NotStr(''' + + +''') +icon_cloud_upload_round = NotStr('''''') +icon_local_drink_filled = NotStr('''''') +icon_md3_d_rotation_filled = NotStr('''''') +icon_menu_round = NotStr('''''') +icon_outlet_outlined = NotStr('''''') +icon_location_on_outlined = NotStr(''' + + +''') +icon_airline_seat_legroom_extra_round = NotStr('''''') +icon_emoji_symbols_filled = NotStr(''' + + + + +''') +icon_arrow_back_round = NotStr('''''') +icon_view_comfy_alt_twotone = NotStr(''' + + + +''') +icon_fiber_new_outlined = NotStr('''''') +icon_arrow_circle_up_filled = NotStr('''''') +icon_crop_rotate_outlined = NotStr('''''') +icon_format_list_numbered_sharp = NotStr('''''') +icon_add_chart_twotone = NotStr(''' + + + +''') +icon_money_twotone = NotStr(''' + + +''') +icon_redo_round = NotStr('''''') +icon_settings_applications_twotone = NotStr(''' + + +''') +icon_verified_user_twotone = NotStr(''' + + +''') +icon_apple_round = NotStr('''''') +icon_manage_history_round = NotStr('''''') +icon_photo_camera_twotone = NotStr(''' + + +''') +icon_car_crash_round = NotStr('''''') +icon_security_update_filled = NotStr('''''') +icon_wysiwyg_sharp = NotStr('''''') +icon_play_circle_filled_white_outlined = NotStr('''''') +icon_keyboard_control_key_filled = NotStr('''''') +icon_hourglass_disabled_twotone = NotStr('''''') +icon_filter8_round = NotStr('''''') +icon_smartphone_filled = NotStr('''''') +icon_content_paste_search_round = NotStr(''' + + +''') +icon_golf_course_filled = NotStr(''' + + +''') +icon_sports_football_round = NotStr('''''') +icon_local_airport_round = NotStr('''''') +icon_density_medium_outlined = NotStr('''''') +icon_access_time_filled_round = NotStr('''''') +icon_insert_page_break_filled = NotStr('''''') +icon_battery_charging90_filled = NotStr(''' + + +''') +icon_copy_all_twotone = NotStr(''' + + +''') +icon_remove_circle_outlined = NotStr('''''') +icon_switch_access_shortcut_filled = NotStr('''''') +icon_reddit_filled = NotStr(''' + + +''') +icon_mic_external_on_filled = NotStr('''''') +icon_sync_problem_round = NotStr('''''') +icon_no_meals_round = NotStr('''''') +icon_cell_wifi_filled = NotStr('''''') +icon_wifi_off_round = NotStr('''''') +icon_download_done_filled = NotStr('''''') +icon_voice_chat_sharp = NotStr('''''') +icon_announcement_round = NotStr('''''') +icon_flight_takeoff_outlined = NotStr('''''') +icon_chevron_right_filled = NotStr('''''') +icon_airplay_filled = NotStr(''' + + +''') +icon_flip_to_front_twotone = NotStr('''''') +icon_wifi2_bar_filled = NotStr('''''') +icon_attribution_sharp = NotStr(''' + + +''') +icon_add_to_home_screen_round = NotStr('''''') +icon_insert_chart_outlined_round = NotStr('''''') +icon_tap_and_play_sharp = NotStr('''''') +icon_dry_round = NotStr('''''') +icon_rv_hookup_round = NotStr('''''') +icon_miscellaneous_services_sharp = NotStr('''''') +icon_baby_changing_station_outlined = NotStr('''''') +icon_leaderboard_filled = NotStr('''''') +icon_open_in_new_off_twotone = NotStr('''''') +icon_cases_sharp = NotStr('''''') +icon_signal_wifi3_bar_lock_outlined = NotStr(''' + + +''') +icon_battery_charging60_filled = NotStr(''' + + +''') +icon_exposure_twotone = NotStr(''' + + +''') +icon_terminal_round = NotStr('''''') +icon_flip_camera_android_filled = NotStr(''' + + +''') +icon_data_exploration_sharp = NotStr('''''') +icon_currency_yen_outlined = NotStr('''''') +icon_emoji_objects_twotone = NotStr(''' + + + + + +''') +icon_medical_information_sharp = NotStr('''''') +icon_circle_round = NotStr('''''') +icon_support_agent_filled = NotStr(''' + + + + +''') +icon_shuffle_on_filled = NotStr('''''') +icon_align_vertical_top_round = NotStr('''''') +icon_fullscreen_twotone = NotStr('''''') +icon_network_wifi_outlined = NotStr('''''') +icon_credit_card_round = NotStr('''''') +icon_text_format_sharp = NotStr('''''') +icon_sanitizer_sharp = NotStr('''''') +icon_tungsten_twotone = NotStr(''' + + +''') +icon_recent_actors_filled = NotStr('''''') +icon_apps_twotone = NotStr('''''') +icon_md22_mp_outlined = NotStr(''' + + + +''') +icon_edgesensor_high_outlined = NotStr('''''') +icon_photo_library_filled = NotStr('''''') +icon_text_increase_round = NotStr('''''') +icon_person_remove_alt1_filled = NotStr('''''') +icon_format_align_center_round = NotStr('''''') +icon_signal_cellular_alt1_bar_outlined = NotStr('''''') +icon_kitchen_twotone = NotStr(''' + + +''') +icon_web_asset_off_twotone = NotStr(''' + + +''') +icon_local_pharmacy_sharp = NotStr('''''') +icon_wifi_calling_sharp = NotStr(''' + + +''') +icon_party_mode_outlined = NotStr('''''') +icon_select_all_round = NotStr('''''') +icon_qr_code_scanner_outlined = NotStr('''''') +icon_sports_martial_arts_twotone = NotStr(''' + + +''') +icon_error_outline_twotone = NotStr('''''') +icon_motion_photos_pause_outlined = NotStr('''''') +icon_format_overline_outlined = NotStr('''''') +icon_signal_cellular2_bar_outlined = NotStr(''' + + +''') +icon_notifications_none_sharp = NotStr('''''') +icon_format_align_center_sharp = NotStr('''''') +icon_volcano_twotone = NotStr(''' + + +''') +icon_no_sim_filled = NotStr('''''') +icon_aspect_ratio_filled = NotStr('''''') +icon_flourescent_outlined = NotStr('''''') +icon_directions_boat_filled_sharp = NotStr('''''') +icon_folder_off_outlined = NotStr('''''') +icon_south_outlined = NotStr('''''') +icon_signal_wifi_statusbar_connected_no_internet4_sharp = NotStr(''' + + +''') +icon_chat_bubble_sharp = NotStr('''''') +icon_rectangle_twotone = NotStr(''' + + +''') +icon_lens_sharp = NotStr('''''') +icon_roundabout_left_sharp = NotStr('''''') +icon_bedroom_parent_outlined = NotStr('''''') +icon_unfold_more_outlined = NotStr('''''') +icon_view_week_outlined = NotStr('''''') +icon_folder_zip_twotone = NotStr(''' + + +''') +icon_emoji_nature_round = NotStr('''''') +icon_padding_twotone = NotStr(''' + + + +''') +icon_local_drink_round = NotStr('''''') +icon_subtitles_twotone = NotStr(''' + + +''') +icon_electric_rickshaw_sharp = NotStr('''''') +icon_restore_page_outlined = NotStr('''''') +icon_arrow_drop_down_circle_twotone = NotStr(''' + + +''') +icon_edit_road_outlined = NotStr('''''') +icon_tablet_twotone = NotStr(''' + + +''') +icon_local_airport_twotone = NotStr('''''') +icon_mode_edit_sharp = NotStr('''''') +icon_r_mobiledata_sharp = NotStr('''''') +icon_playlist_add_sharp = NotStr('''''') +icon_md7_mp_sharp = NotStr(''' + + +''') +icon_emoji_people_sharp = NotStr(''' + + +''') +icon_cancel_filled = NotStr('''''') +icon_takeout_dining_twotone = NotStr(''' + + +''') +icon_offline_pin_filled = NotStr('''''') +icon_border_style_twotone = NotStr('''''') +icon_computer_round = NotStr('''''') +icon_taxi_alert_filled = NotStr('''''') +icon_hdr_off_select_outlined = NotStr('''''') +icon_blur_off_filled = NotStr('''''') +icon_battery_alert_outlined = NotStr('''''') +icon_details_sharp = NotStr('''''') +icon_view_carousel_outlined = NotStr('''''') +icon_do_not_disturb_sharp = NotStr('''''') +icon_front_hand_filled = NotStr('''''') +icon_arrow_drop_down_sharp = NotStr('''''') +icon_add_location_alt_sharp = NotStr('''''') +icon_water_round = NotStr('''''') +icon_local_dining_outlined = NotStr('''''') +icon_stop_sharp = NotStr('''''') +icon_microwave_outlined = NotStr('''''') +icon_local_shipping_sharp = NotStr('''''') +icon_moving_sharp = NotStr('''''') +icon_replay10_outlined = NotStr('''''') +icon_airplanemode_inactive_outlined = NotStr('''''') +icon_phonelink_round = NotStr('''''') +icon_play_arrow_filled = NotStr('''''') +icon_cottage_outlined = NotStr('''''') +icon_checkroom_round = NotStr('''''') +icon_phonelink_ring_filled = NotStr('''''') +icon_card_giftcard_round = NotStr('''''') +icon_backspace_round = NotStr('''''') +icon_description_filled = NotStr('''''') +icon_local_atm_sharp = NotStr('''''') +icon_hail_sharp = NotStr('''''') +icon_signal_cellular3_bar_sharp = NotStr(''' + + +''') +icon_phonelink_ring_outlined = NotStr('''''') +icon_backpack_round = NotStr('''''') +icon_account_box_outlined = NotStr('''''') +icon_linear_scale_outlined = NotStr('''''') +icon_add_location_alt_round = NotStr('''''') +icon_time_to_leave_filled = NotStr('''''') +icon_hearing_disabled_twotone = NotStr('''''') +icon_looks_two_outlined = NotStr('''''') +icon_graphic_eq_sharp = NotStr('''''') +icon_architecture_outlined = NotStr('''''') +icon_hd_filled = NotStr('''''') +icon_network_wifi1_bar_round = NotStr('''''') +icon_vpn_lock_round = NotStr('''''') +icon_picture_in_picture_round = NotStr('''''') +icon_imagesearch_roller_filled = NotStr('''''') +icon_currency_rupee_sharp = NotStr('''''') +icon_brightness_high_sharp = NotStr('''''') +icon_theaters_outlined = NotStr('''''') +icon_open_in_full_sharp = NotStr('''''') +icon_insert_invitation_outlined = NotStr('''''') +icon_star_sharp = NotStr('''''') +icon_directions_subway_filled_outlined = NotStr(''' + + + +''') +icon_change_circle_round = NotStr('''''') +icon_phonelink_off_twotone = NotStr(''' + + +''') +icon_filter_vintage_sharp = NotStr('''''') +icon_spatial_audio_filled = NotStr(''' + + + +''') +icon_running_with_errors_sharp = NotStr('''''') +icon_format_italic_filled = NotStr('''''') +icon_format_textdirection_r_to_l_filled = NotStr('''''') +icon_monochrome_photos_filled = NotStr('''''') +icon_video_camera_back_sharp = NotStr('''''') +icon_near_me_disabled_sharp = NotStr('''''') +icon_category_sharp = NotStr(''' + + + +''') +icon_mode_sharp = NotStr('''''') +icon_maps_ugc_round = NotStr(''' + + +''') +icon_file_present_round = NotStr('''''') +icon_superscript_outlined = NotStr('''''') +icon_plus_minus_alt_filled = NotStr('''''') +icon_md1_x_mobiledata_twotone = NotStr('''''') +icon_speaker_phone_round = NotStr(''' + + +''') +icon_mail_twotone = NotStr(''' + + +''') +icon_accessibility_outlined = NotStr('''''') +icon_collections_twotone = NotStr(''' + + +''') +icon_arrow_forward_ios_sharp = NotStr('''''') +icon_folder_filled = NotStr('''''') +icon_signal_wifi2_bar_filled = NotStr(''' + + +''') +icon_new_releases_outlined = NotStr('''''') +icon_line_style_sharp = NotStr('''''') +icon_manage_accounts_outlined = NotStr('''''') +icon_on_device_training_round = NotStr(''' + + + +''') +icon_monetization_on_sharp = NotStr('''''') +icon_bedroom_parent_round = NotStr(''' + + +''') +icon_layers_clear_filled = NotStr('''''') +icon_schema_outlined = NotStr('''''') +icon_replay10_twotone = NotStr('''''') +icon_network_ping_twotone = NotStr('''''') +icon_library_add_check_sharp = NotStr('''''') +icon_apps_outage_round = NotStr('''''') +icon_system_update_alt_outlined = NotStr('''''') +icon_dinner_dining_outlined = NotStr('''''') +icon_flash_auto_outlined = NotStr('''''') +icon_share_twotone = NotStr(''' + + + + +''') +icon_task_alt_round = NotStr('''''') +icon_preview_twotone = NotStr(''' + + +''') +icon_phone_disabled_sharp = NotStr('''''') +icon_redeem_twotone = NotStr(''' + + +''') +icon_all_inbox_sharp = NotStr('''''') +icon_battery1_bar_outlined = NotStr('''''') +icon_sd_round = NotStr('''''') +icon_monitor_weight_twotone = NotStr(''' + + + + +''') +icon_filter_list_twotone = NotStr('''''') +icon_rotate_left_twotone = NotStr('''''') +icon_local_florist_sharp = NotStr('''''') +icon_burst_mode_sharp = NotStr('''''') +icon_content_copy_twotone = NotStr(''' + + +''') +icon_nightlight_twotone = NotStr(''' + + +''') +icon_border_right_outlined = NotStr('''''') +icon_private_connectivity_twotone = NotStr(''' + + +''') +icon_md20_mp_filled = NotStr('''''') +icon_local_parking_outlined = NotStr('''''') +icon_add_alarm_filled = NotStr('''''') +icon_where_to_vote_twotone = NotStr(''' + + +''') +icon_get_app_twotone = NotStr(''' + + +''') +icon_http_round = NotStr('''''') +icon_power_off_round = NotStr('''''') +icon_mic_off_twotone = NotStr(''' + + +''') +icon_design_services_outlined = NotStr('''''') +icon_tv_sharp = NotStr('''''') +icon_security_update_warning_filled = NotStr(''' + + +''') +icon_snowshoeing_sharp = NotStr('''''') +icon_border_outer_round = NotStr('''''') +icon_quora_twotone = NotStr('''''') +icon_cloud_download_round = NotStr('''''') +icon_brush_twotone = NotStr(''' + + +''') +icon_savings_round = NotStr('''''') +icon_search_off_round = NotStr(''' + + +''') +icon_question_mark_outlined = NotStr('''''') +icon_favorite_border_outlined = NotStr('''''') +icon_volunteer_activism_twotone = NotStr(''' + + +''') +icon_how_to_reg_filled = NotStr('''''') +icon_engineering_round = NotStr('''''') +icon_speed_twotone = NotStr(''' + + +''') +icon_turn_slight_left_twotone = NotStr('''''') +icon_hotel_filled = NotStr('''''') +icon_center_focus_strong_outlined = NotStr('''''') +icon_schema_round = NotStr('''''') +icon_access_alarms_sharp = NotStr('''''') +icon_pages_round = NotStr('''''') +icon_remove_shopping_cart_sharp = NotStr('''''') +icon_generating_tokens_round = NotStr('''''') +icon_opacity_outlined = NotStr('''''') +icon_webhook_twotone = NotStr('''''') +icon_folder_zip_sharp = NotStr('''''') +icon_blur_linear_outlined = NotStr('''''') +icon_article_twotone = NotStr(''' + + +''') +icon_playlist_add_twotone = NotStr('''''') +icon_meeting_room_filled = NotStr('''''') +icon_mark_unread_chat_alt_sharp = NotStr(''' + + +''') +icon_directions_bike_filled = NotStr('''''') +icon_wifi2_bar_outlined = NotStr('''''') +icon_graphic_eq_twotone = NotStr('''''') +icon_flag_round = NotStr('''''') +icon_free_breakfast_round = NotStr('''''') +icon_auto_stories_filled = NotStr('''''') +icon_fingerprint_twotone = NotStr('''''') +icon_chair_twotone = NotStr(''' + + + +''') +icon_sentiment_slightly_dissatisfied_round = NotStr(''' + + + +''') +icon_filter_b_and_w_sharp = NotStr('''''') +icon_wheelchair_pickup_twotone = NotStr('''''') +icon_grade_twotone = NotStr(''' + + +''') +icon_no_backpack_sharp = NotStr('''''') +icon_looks_sharp = NotStr('''''') +icon_umbrella_outlined = NotStr('''''') +icon_flash_off_twotone = NotStr('''''') +icon_phishing_filled = NotStr('''''') +icon_join_right_outlined = NotStr(''' + + +''') +icon_perm_identity_sharp = NotStr('''''') +icon_arrow_circle_left_outlined = NotStr('''''') +icon_video_camera_front_outlined = NotStr(''' + + + +''') +icon_bedtime_twotone = NotStr(''' + + +''') +icon_vpn_key_off_filled = NotStr('''''') +icon_minor_crash_twotone = NotStr(''' + + +''') +icon_not_started_twotone = NotStr(''' + + +''') +icon_signal_cellular4_bar_outlined = NotStr('''''') +icon_north_east_sharp = NotStr('''''') +icon_textsms_round = NotStr('''''') +icon_toll_round = NotStr('''''') +icon_last_page_twotone = NotStr('''''') +icon_local_laundry_service_outlined = NotStr(''' + + + + +''') +icon_done_outlined = NotStr('''''') +icon_stream_round = NotStr(''' + + + + + +''') +icon_cloud_off_sharp = NotStr('''''') +icon_accessibility_new_outlined = NotStr('''''') +icon_format_line_spacing_twotone = NotStr('''''') +icon_format_color_text_outlined = NotStr('''''') +icon_hive_sharp = NotStr('''''') +icon_taxi_alert_twotone = NotStr(''' + + + + + +''') +icon_import_contacts_round = NotStr('''''') +icon_airline_seat_legroom_normal_round = NotStr('''''') +icon_published_with_changes_outlined = NotStr('''''') +icon_arrow_right_filled = NotStr('''''') +icon_weekend_round = NotStr('''''') +icon_face_retouching_natural_outlined = NotStr(''' + + + + +''') +icon_add_alert_twotone = NotStr(''' + + +''') +icon_rate_review_sharp = NotStr('''''') +icon_sd_storage_round = NotStr('''''') +icon_image_sharp = NotStr('''''') +icon_edgesensor_high_filled = NotStr('''''') +icon_install_mobile_round = NotStr(''' + + +''') +icon_fiber_new_round = NotStr('''''') +icon_keyboard_backspace_outlined = NotStr('''''') +icon_stacked_bar_chart_outlined = NotStr('''''') +icon_sick_sharp = NotStr('''''') +icon_chat_bubble_outline_twotone = NotStr('''''') +icon_lock_twotone = NotStr(''' + + +''') +icon_fact_check_round = NotStr('''''') +icon_remove_red_eye_twotone = NotStr(''' + + +''') +icon_person_add_disabled_sharp = NotStr('''''') +icon_add_moderator_twotone = NotStr(''' + + + +''') +icon_elevator_outlined = NotStr('''''') +icon_archive_filled = NotStr('''''') +icon_perm_camera_mic_twotone = NotStr(''' + + +''') +icon_tonality_round = NotStr('''''') +icon_mark_chat_read_outlined = NotStr('''''') +icon_filter_alt_off_twotone = NotStr(''' + + +''') +icon_assignment_return_filled = NotStr('''''') +icon_barcode_twotone = NotStr('''''') +icon_domain_add_round = NotStr('''''') +icon_wash_round = NotStr('''''') +icon_restore_page_twotone = NotStr(''' + + +''') +icon_css_twotone = NotStr('''''') +icon_perm_data_setting_outlined = NotStr('''''') +icon_tag_round = NotStr('''''') +icon_add_task_filled = NotStr('''''') +icon_mode_standby_filled = NotStr('''''') +icon_rotate90_degrees_ccw_outlined = NotStr('''''') +icon_filter3_sharp = NotStr('''''') +icon_pedal_bike_outlined = NotStr('''''') +icon_sync_round = NotStr('''''') +icon_fast_rewind_filled = NotStr('''''') +icon_phone_android_outlined = NotStr('''''') +icon_trip_origin_filled = NotStr('''''') +icon_sentiment_slightly_dissatisfied_sharp = NotStr(''' + + + +''') +icon_signal_wifi_connected_no_internet4_round = NotStr(''' + + +''') +icon_h_mobiledata_round = NotStr('''''') +icon_mail_outline_round = NotStr('''''') +icon_mark_email_unread_outlined = NotStr('''''') +icon_calendar_month_round = NotStr('''''') +icon_mark_email_unread_round = NotStr('''''') +icon_md5_g_outlined = NotStr('''''') +icon_pie_chart_outline_sharp = NotStr('''''') +icon_filter_b_and_w_twotone = NotStr(''' + + +''') +icon_view_compact_alt_twotone = NotStr(''' + + + +''') +icon_devices_sharp = NotStr('''''') +icon_wb_twilight_outlined = NotStr('''''') +icon_hourglass_disabled_sharp = NotStr('''''') +icon_html_twotone = NotStr('''''') +icon_phone_disabled_filled = NotStr('''''') +icon_less_than_equal_outlined = NotStr(''' + + +''') +icon_input_sharp = NotStr('''''') +icon_space_bar_round = NotStr('''''') +icon_md9_mp_filled = NotStr('''''') +icon_snooze_outlined = NotStr('''''') +icon_link_off_round = NotStr('''''') +icon_wb_sunny_filled = NotStr('''''') +icon_missed_video_call_outlined = NotStr('''''') +icon_plus_one_filled = NotStr('''''') +icon_timer10_sharp = NotStr('''''') +icon_no_flash_filled = NotStr('''''') +icon_md9_k_sharp = NotStr('''''') +icon_bluetooth_searching_round = NotStr('''''') +icon_crop54_outlined = NotStr('''''') +icon_arrow_forward_ios_filled = NotStr('''''') +icon_medication_liquid_twotone = NotStr(''' + + + + + +''') +icon_badge_twotone = NotStr(''' + + +''') +icon_elevator_sharp = NotStr('''''') +icon_phone_bluetooth_speaker_twotone = NotStr(''' + + +''') +icon_playlist_add_round = NotStr('''''') +icon_download_sharp = NotStr('''''') +icon_person_remove_alt1_sharp = NotStr('''''') +icon_brightness3_outlined = NotStr('''''') +icon_location_city_round = NotStr('''''') +icon_view_sidebar_sharp = NotStr('''''') +icon_launch_filled = NotStr('''''') +icon_notifications_none_outlined = NotStr('''''') +icon_folder_delete_round = NotStr('''''') +icon_alarm_twotone = NotStr(''' + + +''') +icon_calendar_today_twotone = NotStr(''' + + +''') +icon_tab_unselected_sharp = NotStr('''''') +icon_map_outlined = NotStr('''''') +icon_md7_k_plus_sharp = NotStr('''''') +icon_water_damage_sharp = NotStr('''''') +icon_portable_wifi_off_sharp = NotStr('''''') +icon_replay_sharp = NotStr('''''') +icon_vertical_split_twotone = NotStr(''' + + +''') +icon_swipe_left_outlined = NotStr('''''') +icon_mobile_friendly_filled = NotStr('''''') +icon_zoom_out_twotone = NotStr('''''') +icon_hourglass_top_sharp = NotStr('''''') +icon_settings_accessibility_twotone = NotStr('''''') +icon_call_missed_outgoing_sharp = NotStr('''''') +icon_tablet_sharp = NotStr('''''') +icon_battery50_filled = NotStr(''' + + +''') +icon_navigation_round = NotStr('''''') +icon_unfold_less_filled = NotStr('''''') +icon_incomplete_circle_outlined = NotStr('''''') +icon_remember_me_twotone = NotStr(''' + + + + + +''') +icon_brightness2_round = NotStr('''''') +icon_no_encryption_gmailerrorred_round = NotStr('''''') +icon_list_alt_sharp = NotStr('''''') +icon_reddit_outlined = NotStr(''' + + +''') +icon_menu_book_filled = NotStr(''' + + +''') +icon_bluetooth_audio_round = NotStr('''''') +icon_keyboard_arrow_right_filled = NotStr('''''') +icon_signal_cellular_alt1_bar_twotone = NotStr('''''') +icon_md5_g_filled = NotStr('''''') +icon_android_filled = NotStr('''''') +icon_hive_round = NotStr('''''') +icon_translate_filled = NotStr('''''') +icon_format_align_left_filled = NotStr('''''') +icon_nights_stay_filled = NotStr(''' + + +''') +icon_voicemail_outlined = NotStr('''''') +icon_brightness_auto_outlined = NotStr('''''') +icon_adf_scanner_round = NotStr('''''') +icon_credit_card_twotone = NotStr(''' + + +''') +icon_delete_forever_round = NotStr('''''') +icon_bus_alert_filled = NotStr('''''') +icon_shuffle_outlined = NotStr('''''') +icon_music_video_filled = NotStr('''''') +icon_align_horizontal_right_outlined = NotStr('''''') +icon_cable_sharp = NotStr('''''') +icon_published_with_changes_round = NotStr('''''') +icon_airplane_ticket_outlined = NotStr('''''') +icon_stairs_outlined = NotStr('''''') +icon_remove_road_filled = NotStr('''''') +icon_devices_fold_round = NotStr('''''') +icon_water_drop_filled = NotStr('''''') +icon_crop169_twotone = NotStr('''''') +icon_find_in_page_filled = NotStr('''''') +icon_auto_fix_high_filled = NotStr('''''') +icon_exposure_neg2_filled = NotStr('''''') +icon_vpn_key_twotone = NotStr(''' + + +''') +icon_electric_rickshaw_round = NotStr('''''') +icon_wb_twilight_round = NotStr('''''') +icon_currency_yen_sharp = NotStr('''''') +icon_directions_run_outlined = NotStr('''''') +icon_filter_center_focus_twotone = NotStr('''''') +icon_vaping_rooms_round = NotStr('''''') +icon_bookmark_remove_round = NotStr('''''') +icon_minimize_twotone = NotStr('''''') +icon_battery_charging60_twotone = NotStr(''' + + +''') +icon_smartphone_outlined = NotStr('''''') +icon_swap_vertical_circle_filled = NotStr('''''') +icon_sms_failed_filled = NotStr('''''') +icon_md4_k_sharp = NotStr('''''') +icon_pages_filled = NotStr('''''') +icon_thumb_up_off_alt_outlined = NotStr('''''') +icon_airplanemode_active_twotone = NotStr('''''') +icon_run_circle_round = NotStr('''''') +icon_shop_two_twotone = NotStr(''' + + +''') +icon_woman_filled = NotStr(''' + + +''') +icon_backup_sharp = NotStr('''''') +icon_play_for_work_outlined = NotStr('''''') +icon_expand_circle_down_sharp = NotStr('''''') +icon_arrow_drop_up_filled = NotStr('''''') +icon_extension_twotone = NotStr(''' + + +''') +icon_brightness_medium_sharp = NotStr('''''') +icon_waterfall_chart_twotone = NotStr('''''') +icon_local_shipping_round = NotStr('''''') +icon_batch_prediction_filled = NotStr('''''') +icon_door_front_filled = NotStr('''''') +icon_shop2_sharp = NotStr(''' + + +''') +icon_menu_outlined = NotStr('''''') +icon_important_devices_round = NotStr('''''') +icon_view_day_filled = NotStr('''''') +icon_next_plan_round = NotStr('''''') +icon_filter2_round = NotStr('''''') +icon_model_training_twotone = NotStr('''''') +icon_videogame_asset_sharp = NotStr('''''') +icon_compost_filled = NotStr('''''') +icon_flaky_twotone = NotStr('''''') +icon_escalator_sharp = NotStr('''''') +icon_md4_mp_filled = NotStr('''''') +icon_padding_round = NotStr('''''') +icon_keyboard_double_arrow_down_twotone = NotStr(''' + + +''') +icon_filter_b_and_w_outlined = NotStr('''''') +icon_transgender_twotone = NotStr('''''') +icon_dry_cleaning_outlined = NotStr('''''') +icon_screen_share_sharp = NotStr('''''') +icon_tty_filled = NotStr('''''') +icon_browser_updated_twotone = NotStr('''''') +icon_join_right_round = NotStr(''' + + +''') +icon_engineering_outlined = NotStr('''''') +icon_phone_enabled_outlined = NotStr('''''') +icon_filter1_sharp = NotStr('''''') +icon_how_to_reg_sharp = NotStr('''''') +icon_phone_bluetooth_speaker_filled = NotStr('''''') +icon_md3_k_plus_sharp = NotStr('''''') +icon_assignment_late_filled = NotStr('''''') +icon_assured_workload_filled = NotStr('''''') +icon_currency_bitcoin_round = NotStr('''''') +icon_videocam_off_round = NotStr('''''') +icon_shop_twotone = NotStr(''' + + +''') +icon_auto_fix_normal_twotone = NotStr(''' + + +''') +icon_bookmark_filled = NotStr('''''') +icon_keyboard_double_arrow_left_twotone = NotStr(''' + + +''') +icon_speaker_outlined = NotStr('''''') +icon_near_me_filled = NotStr('''''') +icon_file_copy_round = NotStr('''''') +icon_loop_filled = NotStr('''''') +icon_border_bottom_twotone = NotStr('''''') +icon_smart_display_outlined = NotStr(''' + + +''') +icon_md20_mp_twotone = NotStr(''' + + + + + +''') +icon_home_outlined = NotStr('''''') +icon_pedal_bike_twotone = NotStr('''''') +icon_safety_check_sharp = NotStr('''''') +icon_app_registration_outlined = NotStr('''''') +icon_photo_camera_back_round = NotStr('''''') +icon_data_object_filled = NotStr('''''') +icon_vertical_align_center_outlined = NotStr('''''') +icon_align_horizontal_right_filled = NotStr('''''') +icon_battery80_twotone = NotStr(''' + + +''') +icon_trending_flat_twotone = NotStr('''''') +icon_battery_std_twotone = NotStr('''''') +icon_sos_round = NotStr('''''') +icon_battery_saver_round = NotStr('''''') +icon_person_off_twotone = NotStr(''' + + +''') +icon_headphones_battery_round = NotStr('''''') +icon_join_left_sharp = NotStr(''' + + +''') +icon_hdr_plus_filled = NotStr(''' + + +''') +icon_wifi_tethering_sharp = NotStr('''''') +icon_md19_mp_round = NotStr(''' + + + +''') +icon_voicemail_sharp = NotStr('''''') +icon_offline_pin_twotone = NotStr(''' + + +''') +icon_nat_sharp = NotStr(''' + + +''') +icon_account_balance_outlined = NotStr('''''') +icon_disc_full_outlined = NotStr('''''') +icon_keyboard_option_key_twotone = NotStr('''''') +icon_turn_sharp_left_filled = NotStr('''''') +icon_sports_golf_twotone = NotStr(''' + + + + + + +''') +icon_battery60_filled = NotStr(''' + + +''') +icon_minimize_outlined = NotStr('''''') +icon_nearby_off_filled = NotStr('''''') +icon_md123_twotone = NotStr('''''') +icon_do_disturb_on_sharp = NotStr('''''') +icon_power_sharp = NotStr('''''') +icon_laptop_chromebook_outlined = NotStr('''''') +icon_g_mobiledata_outlined = NotStr('''''') +icon_drafts_twotone = NotStr(''' + + +''') +icon_nightlight_round_twotone = NotStr('''''') +icon_invert_colors_off_round = NotStr('''''') +icon_settings_cell_filled = NotStr('''''') +icon_balance_twotone = NotStr(''' + + +''') +icon_travel_explore_filled = NotStr('''''') +icon_signal_wifi1_bar_lock_outlined = NotStr(''' + + +''') +icon_file_open_filled = NotStr('''''') +icon_invert_colors_twotone = NotStr(''' + + +''') +icon_flash_off_round = NotStr('''''') +icon_settings_twotone = NotStr(''' + + +''') +icon_assistant_photo_round = NotStr('''''') +icon_grass_outlined = NotStr('''''') +icon_token_round = NotStr('''''') +icon_album_twotone = NotStr(''' + + +''') +icon_fmd_bad_filled = NotStr('''''') +icon_laptop_chromebook_twotone = NotStr(''' + + +''') +icon_add_filled = NotStr('''''') +icon_panorama_fish_eye_filled = NotStr('''''') +icon_earbuds_battery_twotone = NotStr(''' + + +''') +icon_check_box_outlined = NotStr('''''') +icon_unfold_more_sharp = NotStr('''''') +icon_add_reaction_outlined = NotStr('''''') +icon_linked_camera_round = NotStr(''' + + + +''') +icon_battery_charging90_twotone = NotStr(''' + + +''') +icon_looks_round = NotStr('''''') +icon_functions_outlined = NotStr('''''') +icon_currency_rupee_filled = NotStr('''''') +icon_reorder_twotone = NotStr('''''') +icon_bedroom_child_filled = NotStr(''' + + +''') +icon_mode_standby_outlined = NotStr('''''') +icon_accessibility_filled = NotStr('''''') +icon_volume_down_sharp = NotStr('''''') +icon_contact_page_twotone = NotStr(''' + + +''') +icon_waves_filled = NotStr('''''') +icon_feedback_outlined = NotStr('''''') +icon_join_left_filled = NotStr(''' + + +''') +icon_align_vertical_center_sharp = NotStr('''''') +icon_markunread_mailbox_sharp = NotStr('''''') +icon_wc_outlined = NotStr('''''') +icon_keyboard_arrow_right_twotone = NotStr('''''') +icon_redeem_sharp = NotStr('''''') +icon_format_list_numbered_rtl_filled = NotStr('''''') +icon_iso_filled = NotStr('''''') +icon_error_filled = NotStr('''''') +icon_menu_open_round = NotStr('''''') +icon_headset_outlined = NotStr('''''') +icon_note_add_round = NotStr('''''') +icon_view_in_ar_round = NotStr('''''') +icon_md3_p_filled = NotStr('''''') +icon_panorama_fish_eye_twotone = NotStr(''' + + +''') +icon_atm_filled = NotStr('''''') +icon_sports_baseball_sharp = NotStr(''' + + +''') +icon_do_disturb_off_filled = NotStr('''''') +icon_photo_sharp = NotStr('''''') +icon_folder_shared_outlined = NotStr('''''') +icon_sync_disabled_twotone = NotStr('''''') +icon_shop2_filled = NotStr(''' + + +''') +icon_scuba_diving_outlined = NotStr('''''') +icon_soap_sharp = NotStr('''''') +icon_add_location_round = NotStr('''''') +icon_vape_free_sharp = NotStr('''''') +icon_airplane_ticket_round = NotStr('''''') +icon_format_overline_twotone = NotStr('''''') +icon_circle_notifications_round = NotStr('''''') +icon_add_card_twotone = NotStr('''''') +icon_lte_plus_mobiledata_filled = NotStr('''''') +icon_vertical_distribute_filled = NotStr('''''') +icon_domain_disabled_filled = NotStr('''''') +icon_display_settings_filled = NotStr(''' + + +''') +icon_settings_ethernet_round = NotStr('''''') +icon_phone_missed_round = NotStr('''''') +icon_horizontal_split_twotone = NotStr(''' + + +''') +icon_folder_round = NotStr('''''') +icon_airline_seat_flat_angled_filled = NotStr('''''') +icon_thermostat_round = NotStr('''''') +icon_confirmation_number_sharp = NotStr('''''') +icon_flashlight_off_outlined = NotStr('''''') +icon_rowing_round = NotStr('''''') +icon_party_mode_filled = NotStr('''''') +icon_data_saver_off_filled = NotStr('''''') +icon_euro_symbol_filled = NotStr('''''') +icon_arrow_circle_left_twotone = NotStr(''' + + +''') +icon_rule_filled = NotStr('''''') +icon_lens_blur_outlined = NotStr('''''') +icon_alarm_off_round = NotStr('''''') +icon_signal_wifi3_bar_lock_round = NotStr(''' + + +''') +icon_sensors_filled = NotStr('''''') +icon_signal_cellular1_bar_twotone = NotStr(''' + + +''') +icon_unfold_more_twotone = NotStr('''''') +icon_format_align_center_twotone = NotStr('''''') +icon_developer_mode_filled = NotStr('''''') +icon_router_outlined = NotStr('''''') +icon_call_end_sharp = NotStr('''''') +icon_data_usage_outlined = NotStr('''''') +icon_sd_card_alert_filled = NotStr('''''') +icon_local_see_twotone = NotStr(''' + + +''') +icon_real_estate_agent_twotone = NotStr(''' + + +''') +icon_online_prediction_outlined = NotStr('''''') +icon_subscript_sharp = NotStr('''''') +icon_align_vertical_bottom_outlined = NotStr('''''') +icon_add_photo_alternate_filled = NotStr('''''') +icon_mode_night_sharp = NotStr('''''') +icon_settings_backup_restore_round = NotStr('''''') +icon_water_damage_outlined = NotStr('''''') +icon_thumb_down_round = NotStr('''''') +icon_candlestick_chart_sharp = NotStr('''''') +icon_align_horizontal_right_sharp = NotStr('''''') +icon_thumb_up_twotone = NotStr(''' + + +''') +icon_md6_k_round = NotStr('''''') +icon_laptop_windows_sharp = NotStr('''''') +icon_text_rotation_angleup_filled = NotStr('''''') +icon_cake_round = NotStr('''''') +icon_no_transfer_sharp = NotStr('''''') +icon_comments_disabled_twotone = NotStr(''' + + +''') +icon_sports_baseball_round = NotStr(''' + + +''') +icon_generating_tokens_filled = NotStr('''''') +icon_park_sharp = NotStr('''''') +icon_numbers_round = NotStr('''''') +icon_settings_input_svideo_twotone = NotStr(''' + + + + + + + +''') +icon_candlestick_chart_twotone = NotStr(''' + + + +''') +icon_hide_image_sharp = NotStr('''''') +icon_plus_minus_twotone = NotStr('''''') +icon_whatsapp_sharp = NotStr('''''') +icon_sports_basketball_filled = NotStr('''''') +icon_hdr_on_select_outlined = NotStr('''''') +icon_donut_large_twotone = NotStr('''''') +icon_mode_edit_twotone = NotStr(''' + + +''') +icon_rotate_left_sharp = NotStr('''''') +icon_add_to_drive_twotone = NotStr('''''') +icon_pedal_bike_filled = NotStr('''''') +icon_tab_twotone = NotStr('''''') +icon_class_round = NotStr('''''') +icon_camera_rear_twotone = NotStr(''' + + +''') +icon_tablet_android_round = NotStr('''''') +icon_wheelchair_pickup_sharp = NotStr('''''') +icon_security_update_twotone = NotStr(''' + + +''') +icon_house_siding_sharp = NotStr('''''') +icon_app_shortcut_twotone = NotStr(''' + + + +''') +icon_summarize_outlined = NotStr('''''') +icon_child_friendly_filled = NotStr('''''') +icon_swap_horiz_outlined = NotStr('''''') +icon_garage_round = NotStr(''' + + + + +''') +icon_autorenew_outlined = NotStr('''''') +icon_compare_round = NotStr('''''') +icon_battery30_round = NotStr(''' + + +''') +icon_crop169_round = NotStr('''''') +icon_person_add_alt_sharp = NotStr('''''') +icon_update_disabled_outlined = NotStr('''''') +icon_play_circle_outline_filled = NotStr('''''') +icon_insert_emoticon_round = NotStr('''''') +icon_theater_comedy_sharp = NotStr(''' + + +''') +icon_import_export_round = NotStr('''''') +icon_elderly_filled = NotStr('''''') +icon_sick_outlined = NotStr('''''') +icon_spellcheck_outlined = NotStr('''''') +icon_swipe_right_filled = NotStr('''''') +icon_space_dashboard_twotone = NotStr(''' + + +''') +icon_md14_mp_outlined = NotStr(''' + + + +''') +icon_gamepad_round = NotStr('''''') +icon_beenhere_round = NotStr('''''') +icon_maximize_twotone = NotStr('''''') +icon_refresh_twotone = NotStr('''''') +icon_markunread_mailbox_twotone = NotStr(''' + + +''') +icon_car_rental_outlined = NotStr(''' + + + +''') +icon_hotel_class_filled = NotStr('''''') +icon_smart_button_round = NotStr('''''') +icon_text_snippet_sharp = NotStr('''''') +icon_dns_twotone = NotStr(''' + + +''') +icon_explore_twotone = NotStr(''' + + +''') +icon_network_cell_twotone = NotStr('''''') +icon_format_bold_filled = NotStr('''''') +icon_swipe_down_outlined = NotStr('''''') +icon_download_filled = NotStr('''''') +icon_picture_in_picture_sharp = NotStr('''''') +icon_kitesurfing_round = NotStr('''''') +icon_manage_search_outlined = NotStr('''''') +icon_calendar_view_week_outlined = NotStr('''''') +icon_search_round = NotStr('''''') +icon_open_in_new_off_outlined = NotStr('''''') +icon_keyboard_capslock_round = NotStr('''''') +icon_privacy_tip_outlined = NotStr('''''') +icon_stay_primary_landscape_outlined = NotStr('''''') +icon_save_round = NotStr('''''') +icon_timelapse_filled = NotStr('''''') +icon_supervisor_account_round = NotStr('''''') +icon_manage_accounts_round = NotStr(''' + + + +''') +icon_waving_hand_round = NotStr('''''') +icon_update_twotone = NotStr('''''') +icon_do_disturb_sharp = NotStr('''''') +icon_edit_road_twotone = NotStr(''' + + +''') +icon_grading_sharp = NotStr('''''') +icon_edit_round = NotStr('''''') +icon_ssid_chart_outlined = NotStr('''''') +icon_error_outline_round = NotStr('''''') +icon_hiking_outlined = NotStr('''''') +icon_auto_awesome_motion_round = NotStr('''''') +icon_center_focus_strong_sharp = NotStr('''''') +icon_content_copy_sharp = NotStr('''''') +icon_synagogue_sharp = NotStr('''''') +icon_signal_cellular_off_filled = NotStr('''''') +icon_filter_alt_off_outlined = NotStr('''''') +icon_arrow_left_round = NotStr('''''') +icon_qr_code2_round = NotStr('''''') +icon_menu_sharp = NotStr('''''') +icon_euro_symbol_sharp = NotStr('''''') +icon_exit_to_app_twotone = NotStr('''''') +icon_fiber_manual_record_filled = NotStr('''''') +icon_move_to_inbox_round = NotStr('''''') +icon_md3_k_plus_filled = NotStr('''''') +icon_rocket_outlined = NotStr('''''') +icon_code_off_filled = NotStr('''''') +icon_edit_location_alt_outlined = NotStr('''''') +icon_sensors_off_outlined = NotStr('''''') +icon_speaker_notes_outlined = NotStr('''''') +icon_account_circle_round = NotStr('''''') +icon_signal_cellular_connected_no_internet3_bar_outlined = NotStr(''' + + +''') +icon_verified_twotone = NotStr(''' + + + +''') +icon_sports_tennis_sharp = NotStr('''''') +icon_archive_sharp = NotStr('''''') +icon_center_focus_weak_twotone = NotStr(''' + + +''') +icon_smart_display_round = NotStr('''''') +icon_pending_outlined = NotStr(''' + + + + +''') +icon_electric_moped_twotone = NotStr(''' + + + +''') +icon_sort_by_alpha_outlined = NotStr('''''') +icon_mood_filled = NotStr('''''') +icon_share_round = NotStr('''''') +icon_contrast_outlined = NotStr('''''') +icon_do_not_disturb_on_total_silence_round = NotStr('''''') +icon_crop_square_sharp = NotStr('''''') +icon_west_round = NotStr('''''') +icon_piano_round = NotStr('''''') +icon_gite_sharp = NotStr('''''') +icon_format_list_numbered_rtl_twotone = NotStr('''''') +icon_brightness3_filled = NotStr('''''') +icon_apps_outage_sharp = NotStr('''''') +icon_diamond_filled = NotStr('''''') +icon_park_outlined = NotStr('''''') +icon_insights_round = NotStr(''' + + +''') +icon_notification_add_sharp = NotStr('''''') +icon_add_to_queue_filled = NotStr('''''') +icon_switch_account_outlined = NotStr('''''') +icon_last_page_outlined = NotStr('''''') +icon_scatter_plot_outlined = NotStr('''''') +icon_filter_hdr_filled = NotStr('''''') +icon_center_focus_strong_round = NotStr('''''') +icon_attach_file_sharp = NotStr('''''') +icon_grid_view_round = NotStr('''''') +icon_request_page_outlined = NotStr('''''') +icon_power_settings_new_twotone = NotStr('''''') +icon_assured_workload_sharp = NotStr('''''') +icon_policy_twotone = NotStr(''' + + +''') +icon_streetview_filled = NotStr(''' + + + +''') +icon_content_copy_outlined = NotStr('''''') +icon_report_sharp = NotStr('''''') +icon_gesture_outlined = NotStr('''''') +icon_wordpress_outlined = NotStr('''''') +icon_tips_and_updates_round = NotStr('''''') +icon_speaker_group_twotone = NotStr(''' + + +''') +icon_lte_mobiledata_filled = NotStr('''''') +icon_yard_round = NotStr(''' + + +''') +icon_fitness_center_outlined = NotStr('''''') +icon_brightness4_twotone = NotStr(''' + + +''') +icon_wine_bar_sharp = NotStr('''''') +icon_label_off_round = NotStr('''''') +icon_bluetooth_disabled_round = NotStr('''''') +icon_power_round = NotStr('''''') +icon_featured_video_round = NotStr('''''') +icon_other_houses_outlined = NotStr('''''') +icon_md6_k_plus_twotone = NotStr(''' + + + + +''') +icon_star_half_outlined = NotStr('''''') +icon_wysiwyg_outlined = NotStr('''''') +icon_pie_chart_outline_outlined = NotStr('''''') +icon_north_outlined = NotStr('''''') +icon_star_half_sharp = NotStr('''''') +icon_scanner_filled = NotStr('''''') +icon_pin_invoke_filled = NotStr('''''') +icon_app_registration_twotone = NotStr('''''') +icon_battery60_round = NotStr(''' + + +''') +icon_speaker_notes_off_round = NotStr('''''') +icon_watch_off_round = NotStr('''''') +icon_ring_volume_sharp = NotStr('''''') +icon_swipe_right_alt_outlined = NotStr('''''') +icon_no_accounts_outlined = NotStr(''' + + +''') +icon_library_music_outlined = NotStr('''''') +icon_image_not_supported_sharp = NotStr('''''') +icon_location_off_twotone = NotStr('''''') +icon_vibration_sharp = NotStr('''''') +icon_sports_motorsports_filled = NotStr(''' + + +''') +icon_percentage_outlined = NotStr('''''') +icon_model_training_sharp = NotStr('''''') +icon_model_training_outlined = NotStr('''''') +icon_calendar_today_outlined = NotStr('''''') +icon_coffee_maker_sharp = NotStr(''' + + +''') +icon_fmd_bad_sharp = NotStr('''''') +icon_electric_car_filled = NotStr('''''') +icon_edit_location_twotone = NotStr(''' + + + +''') +icon_camera_indoor_twotone = NotStr(''' + + + +''') +icon_keyboard_voice_twotone = NotStr(''' + + +''') +icon_motion_photos_on_filled = NotStr('''''') +icon_brightness_low_round = NotStr('''''') +icon_add_alarm_outlined = NotStr('''''') +icon_settings_phone_filled = NotStr('''''') +icon_text_fields_twotone = NotStr('''''') +icon_first_page_outlined = NotStr('''''') +icon_file_open_outlined = NotStr('''''') +icon_on_device_training_filled = NotStr(''' + + + +''') +icon_devices_twotone = NotStr(''' + + +''') +icon_money_off_twotone = NotStr('''''') +icon_highlight_off_filled = NotStr('''''') +icon_view_quilt_outlined = NotStr('''''') +icon_format_quote_outlined = NotStr('''''') +icon_drag_indicator_twotone = NotStr('''''') +icon_settings_ethernet_sharp = NotStr('''''') +icon_video_camera_front_round = NotStr('''''') +icon_multiple_stop_sharp = NotStr('''''') +icon_how_to_reg_round = NotStr('''''') +icon_satellite_round = NotStr('''''') +icon_md1_k_plus_filled = NotStr('''''') +icon_warning_amber_twotone = NotStr('''''') +icon_settings_remote_outlined = NotStr(''' + + + +''') +icon_turned_in_round = NotStr('''''') +icon_webhook_filled = NotStr('''''') +icon_favorite_border_round = NotStr('''''') +icon_motion_photos_paused_outlined = NotStr('''''') +icon_stacked_line_chart_twotone = NotStr('''''') +icon_cancel_schedule_send_round = NotStr(''' + + +''') +icon_looks6_twotone = NotStr(''' + + +''') +icon_wechat_twotone = NotStr(''' + + +''') +icon_hide_source_sharp = NotStr('''''') +icon_local_pizza_twotone = NotStr(''' + + +''') +icon_edit_road_round = NotStr('''''') +icon_label_outlined = NotStr('''''') +icon_signal_wifi3_bar_lock_twotone = NotStr(''' + + +''') +icon_dynamic_form_twotone = NotStr(''' + + +''') +icon_brightness_high_twotone = NotStr(''' + + + +''') +icon_format_overline_sharp = NotStr('''''') +icon_control_point_round = NotStr('''''') +icon_person_sharp = NotStr('''''') +icon_pending_actions_outlined = NotStr('''''') +icon_vibration_filled = NotStr('''''') +icon_rectangle_filled = NotStr('''''') +icon_photo_outlined = NotStr('''''') +icon_graphic_eq_filled = NotStr('''''') +icon_thumb_up_round = NotStr('''''') +icon_design_services_twotone = NotStr(''' + + +''') +icon_do_disturb_alt_sharp = NotStr('''''') +icon_turned_in_not_sharp = NotStr('''''') +icon_line_axis_filled = NotStr('''''') +icon_directions_subway_filled_filled = NotStr('''''') +icon_hide_image_round = NotStr('''''') +icon_movie_filter_sharp = NotStr('''''') +icon_assessment_sharp = NotStr('''''') +icon_personal_video_sharp = NotStr('''''') +icon_yard_outlined = NotStr('''''') +icon_timeline_round = NotStr('''''') +icon_colorize_sharp = NotStr('''''') +icon_texture_filled = NotStr('''''') +icon_credit_card_off_sharp = NotStr('''''') +icon_sentiment_neutral_outlined = NotStr(''' + + + + +''') +icon_smoke_free_twotone = NotStr('''''') +icon_battery_unknown_twotone = NotStr('''''') +icon_playlist_add_circle_twotone = NotStr(''' + + +''') +icon_brightness2_sharp = NotStr('''''') +icon_fiber_pin_outlined = NotStr('''''') +icon_watch_later_round = NotStr('''''') +icon_door_front_twotone = NotStr(''' + + + +''') +icon_shuffle_on_round = NotStr('''''') +icon_join_full_twotone = NotStr(''' + + +''') +icon_view_kanban_outlined = NotStr(''' + + +''') +icon_directions_car_filled_outlined = NotStr(''' + + + +''') +icon_desktop_windows_filled = NotStr('''''') +icon_repeat_on_round = NotStr('''''') +icon_add_to_drive_filled = NotStr('''''') +icon_deblur_round = NotStr(''' + + + + + + + + + + + + + +''') +icon_hexagon_twotone = NotStr(''' + + +''') +icon_next_week_filled = NotStr('''''') +icon_control_point_duplicate_twotone = NotStr(''' + + +''') +icon_format_align_center_outlined = NotStr('''''') +icon_sports_martial_arts_outlined = NotStr(''' + + +''') +icon_offline_pin_round = NotStr('''''') +icon_edit_note_sharp = NotStr('''''') +icon_foundation_round = NotStr('''''') +icon_note_round = NotStr('''''') +icon_whatshot_round = NotStr('''''') +icon_woo_commerce_sharp = NotStr('''''') +icon_airplay_twotone = NotStr(''' + + +''') +icon_credit_card_sharp = NotStr('''''') +icon_phone_forwarded_twotone = NotStr(''' + + +''') +icon_no_cell_sharp = NotStr('''''') +icon_exit_to_app_round = NotStr('''''') +icon_add_box_twotone = NotStr(''' + + +''') +icon_signal_cellular_nodata_filled = NotStr('''''') +icon_do_disturb_on_outlined = NotStr('''''') +icon_directions_car_filled_twotone = NotStr(''' + + + + +''') +icon_imagesearch_roller_outlined = NotStr('''''') +icon_all_inclusive_twotone = NotStr('''''') +icon_portrait_outlined = NotStr('''''') +icon_medical_services_filled = NotStr('''''') +icon_crisis_alert_twotone = NotStr('''''') +icon_unsubscribe_filled = NotStr('''''') +icon_looks5_filled = NotStr('''''') +icon_ramen_dining_outlined = NotStr('''''') +icon_mobiledata_off_outlined = NotStr('''''') +icon_star_border_outlined = NotStr('''''') +icon_replay_filled = NotStr('''''') +icon_quickreply_filled = NotStr(''' + + +''') +icon_blender_twotone = NotStr(''' + + + +''') +icon_mode_of_travel_sharp = NotStr('''''') +icon_view_comfy_filled = NotStr('''''') +icon_more_vert_outlined = NotStr('''''') +icon_domain_verification_round = NotStr(''' + + +''') +icon_loyalty_sharp = NotStr('''''') +icon_signal_cellular3_bar_filled = NotStr(''' + + +''') +icon_sports_football_filled = NotStr('''''') +icon_zoom_out_sharp = NotStr('''''') +icon_video_file_round = NotStr('''''') +icon_near_me_disabled_outlined = NotStr('''''') +icon_smart_display_sharp = NotStr('''''') +icon_upload_round = NotStr('''''') +icon_sort_by_alpha_round = NotStr('''''') +icon_sentiment_very_satisfied_outlined = NotStr('''''') +icon_thermostat_sharp = NotStr('''''') +icon_vpn_lock_outlined = NotStr('''''') +icon_hourglass_bottom_twotone = NotStr(''' + + + +''') +icon_signal_cellular4_bar_twotone = NotStr('''''') +icon_insert_comment_filled = NotStr('''''') +icon_border_horizontal_twotone = NotStr('''''') +icon_monochrome_photos_sharp = NotStr('''''') +icon_star_border_twotone = NotStr('''''') +icon_nordic_walking_round = NotStr('''''') +icon_log_in_round = NotStr(''' + + +''') +icon_rice_bowl_round = NotStr('''''') +icon_electric_rickshaw_twotone = NotStr(''' + + +''') +icon_new_releases_filled = NotStr('''''') +icon_brightness2_outlined = NotStr('''''') +icon_room_preferences_outlined = NotStr('''''') +icon_shopping_cart_sharp = NotStr('''''') +icon_pest_control_rodent_sharp = NotStr('''''') +icon_running_with_errors_filled = NotStr('''''') +icon_browser_updated_filled = NotStr('''''') +icon_hourglass_disabled_round = NotStr('''''') +icon_safety_check_twotone = NotStr(''' + + +''') +icon_crop_landscape_outlined = NotStr('''''') +icon_escalator_warning_outlined = NotStr('''''') +icon_contact_page_filled = NotStr('''''') +icon_handshake_sharp = NotStr('''''') +icon_image_round = NotStr('''''') +icon_voice_chat_twotone = NotStr(''' + + +''') +icon_pin_drop_filled = NotStr('''''') +icon_bathtub_outlined = NotStr(''' + + +''') +icon_emoji_people_round = NotStr(''' + + +''') +icon_stacked_line_chart_round = NotStr('''''') +icon_door_front_sharp = NotStr('''''') +icon_image_search_twotone = NotStr(''' + + +''') +icon_swipe_up_alt_round = NotStr('''''') +icon_room_service_outlined = NotStr('''''') +icon_hub_sharp = NotStr('''''') +icon_call_received_filled = NotStr('''''') +icon_md5_k_outlined = NotStr(''' + + +''') +icon_local_atm_round = NotStr('''''') +icon_add_business_twotone = NotStr(''' + + + +''') +icon_toggle_off_twotone = NotStr(''' + + +''') +icon_text_rotation_angleup_twotone = NotStr('''''') +icon_security_update_good_round = NotStr('''''') +icon_format_textdirection_l_to_r_sharp = NotStr('''''') +icon_headset_mic_sharp = NotStr('''''') +icon_bus_alert_sharp = NotStr(''' + + +''') +icon_sos_filled = NotStr('''''') +icon_note_sharp = NotStr('''''') +icon_directions_bus_filled = NotStr('''''') +icon_escalator_twotone = NotStr(''' + + +''') +icon_food_bank_round = NotStr('''''') +icon_enhanced_encryption_sharp = NotStr('''''') +icon_view_module_outlined = NotStr('''''') +icon_closed_caption_twotone = NotStr(''' + + +''') +icon_more_time_round = NotStr(''' + + + +''') +icon_sync_lock_round = NotStr('''''') +icon_deck_round = NotStr(''' + + +''') +icon_all_inclusive_outlined = NotStr('''''') +icon_grid_on_filled = NotStr('''''') +icon_dynamic_form_sharp = NotStr('''''') +icon_search_off_outlined = NotStr(''' + + +''') +icon_window_round = NotStr('''''') +icon_md17_mp_outlined = NotStr(''' + + + +''') +icon_battery30_filled = NotStr(''' + + +''') +icon_settings_backup_restore_twotone = NotStr('''''') +icon_sim_card_outlined = NotStr('''''') +icon_token_filled = NotStr('''''') +icon_signal_cellular_connected_no_internet2_bar_sharp = NotStr(''' + + +''') +icon_format_underlined_outlined = NotStr('''''') +icon_local_fire_department_outlined = NotStr('''''') +icon_expand_less_filled = NotStr('''''') +icon_atm_round = NotStr('''''') +icon_cell_tower_round = NotStr(''' + + +''') +icon_adobe_filled = NotStr('''''') +icon_shield_moon_sharp = NotStr('''''') +icon_not_listed_location_round = NotStr('''''') +icon_add_business_filled = NotStr(''' + + +''') +icon_tag_faces_twotone = NotStr(''' + + + + + +''') +icon_reviews_filled = NotStr('''''') +icon_confirmation_number_outlined = NotStr('''''') +icon_video_camera_back_outlined = NotStr('''''') +icon_view_stream_twotone = NotStr(''' + + +''') +icon_not_listed_location_sharp = NotStr('''''') +icon_keyboard_voice_filled = NotStr('''''') +icon_call_received_outlined = NotStr('''''') +icon_sports_esports_twotone = NotStr(''' + + + + + +''') +icon_turn_left_round = NotStr('''''') +icon_laptop_chromebook_round = NotStr('''''') +icon_view_compact_alt_round = NotStr('''''') +icon_network_wifi3_bar_twotone = NotStr(''' + + +''') +icon_door_back_twotone = NotStr(''' + + + +''') +icon_open_in_new_filled = NotStr('''''') +icon_numbers_filled = NotStr('''''') +icon_account_balance_wallet_sharp = NotStr('''''') +icon_share_location_twotone = NotStr(''' + + +''') +icon_vignette_outlined = NotStr('''''') +icon_phone_iphone_filled = NotStr('''''') +icon_fort_sharp = NotStr('''''') +icon_local_see_filled = NotStr(''' + + +''') +icon_ramp_right_outlined = NotStr('''''') +icon_developer_board_off_round = NotStr('''''') +icon_deblur_outlined = NotStr(''' + + + + + + + + + + + + + +''') +icon_raw_off_round = NotStr('''''') +icon_menu_open_twotone = NotStr('''''') +icon_hdr_auto_select_outlined = NotStr(''' + + +''') +icon_md3_p_outlined = NotStr('''''') +icon_tag_faces_filled = NotStr('''''') +icon_format_shapes_outlined = NotStr('''''') +icon_barcode_sharp = NotStr('''''') +icon_log_in_outlined = NotStr(''' + + +''') +icon_live_help_twotone = NotStr(''' + + +''') +icon_adf_scanner_filled = NotStr('''''') +icon_star_rate_round = NotStr('''''') +icon_alarm_off_sharp = NotStr('''''') +icon_announcement_outlined = NotStr('''''') +icon_tire_repair_outlined = NotStr('''''') +icon_tune_outlined = NotStr('''''') +icon_sd_card_filled = NotStr('''''') +icon_app_shortcut_outlined = NotStr(''' + + +''') +icon_volume_up_filled = NotStr('''''') +icon_night_shelter_round = NotStr('''''') +icon_switch_right_sharp = NotStr('''''') +icon_alt_route_sharp = NotStr('''''') +icon_tiktok_filled = NotStr('''''') +icon_format_list_numbered_round = NotStr('''''') +icon_account_balance_wallet_round = NotStr('''''') +icon_hdr_on_round = NotStr('''''') +icon_content_cut_sharp = NotStr('''''') +icon_local_fire_department_twotone = NotStr(''' + + +''') +icon_bus_alert_twotone = NotStr(''' + + + + + +''') +icon_percentage_sharp = NotStr('''''') +icon_chevron_right_outlined = NotStr('''''') +icon_settings_input_svideo_filled = NotStr('''''') +icon_girl_sharp = NotStr('''''') +icon_liquor_twotone = NotStr(''' + + +''') +icon_screen_lock_rotation_filled = NotStr('''''') +icon_manage_history_filled = NotStr('''''') +icon_no_accounts_filled = NotStr(''' + + +''') +icon_md8_mp_twotone = NotStr(''' + + + + + +''') +icon_co2_round = NotStr('''''') +icon_screen_lock_rotation_round = NotStr(''' + + +''') +icon_password_filled = NotStr('''''') +icon_replay30_sharp = NotStr('''''') +icon_elevator_round = NotStr('''''') +icon_battery6_bar_twotone = NotStr(''' + + +''') +icon_set_meal_outlined = NotStr('''''') +icon_reduce_capacity_outlined = NotStr('''''') +icon_flight_class_outlined = NotStr('''''') +icon_insert_chart_outlined_outlined = NotStr('''''') +icon_tapas_twotone = NotStr(''' + + +''') +icon_breakfast_dining_round = NotStr('''''') +icon_cancel_schedule_send_sharp = NotStr(''' + + +''') +icon_cake_sharp = NotStr('''''') +icon_sports_gymnastics_outlined = NotStr('''''') +icon_no_crash_round = NotStr('''''') +icon_table_chart_filled = NotStr('''''') +icon_attractions_round = NotStr('''''') +icon_videocam_outlined = NotStr('''''') +icon_screenshot_filled = NotStr('''''') +icon_leak_remove_sharp = NotStr('''''') +icon_md360_sharp = NotStr('''''') +icon_wb_cloudy_twotone = NotStr(''' + + +''') +icon_greater_than_equal_outlined = NotStr(''' + + +''') +icon_query_stats_twotone = NotStr('''''') +icon_flag_circle_twotone = NotStr(''' + + + +''') +icon_swap_horizontal_circle_outlined = NotStr('''''') +icon_sell_filled = NotStr('''''') +icon_chair_filled = NotStr(''' + + +''') +icon_add_a_photo_filled = NotStr('''''') +icon_local_gas_station_sharp = NotStr('''''') +icon_brush_round = NotStr('''''') +icon_moped_sharp = NotStr(''' + + +''') +icon_play_circle_filled_twotone = NotStr(''' + + +''') +icon_snowmobile_sharp = NotStr('''''') +icon_save_all_outlined = NotStr(''' + + + + +''') +icon_texture_twotone = NotStr('''''') +icon_bedtime_off_outlined = NotStr('''''') +icon_md21_mp_filled = NotStr('''''') +icon_medical_information_outlined = NotStr('''''') +icon_shopify_filled = NotStr('''''') +icon_connecting_airports_twotone = NotStr('''''') +icon_nature_filled = NotStr('''''') +icon_replay30_round = NotStr('''''') +icon_graphic_eq_round = NotStr('''''') +icon_hiking_twotone = NotStr('''''') +icon_scuba_diving_twotone = NotStr('''''') +icon_local_see_sharp = NotStr(''' + + +''') +icon_wifi_tethering_error_rounded_filled = NotStr('''''') +icon_departure_board_sharp = NotStr('''''') +icon_upgrade_round = NotStr('''''') +icon_catching_pokemon_sharp = NotStr('''''') +icon_sync_lock_twotone = NotStr('''''') +icon_view_sidebar_filled = NotStr('''''') +icon_merge_filled = NotStr('''''') +icon_battery_charging30_twotone = NotStr(''' + + +''') +icon_more_time_sharp = NotStr(''' + + + +''') +icon_subway_sharp = NotStr(''' + + + +''') +icon_people_alt_twotone = NotStr(''' + + + +''') +icon_contacts_filled = NotStr('''''') +icon_battery5_bar_outlined = NotStr('''''') +icon_money_off_outlined = NotStr('''''') +icon_sip_outlined = NotStr('''''') +icon_sailing_sharp = NotStr('''''') +icon_bluetooth_disabled_filled = NotStr('''''') +icon_storm_filled = NotStr('''''') +icon_boy_twotone = NotStr('''''') diff --git a/src/myfasthtml/icons/tabler.py b/src/myfasthtml/icons/tabler.py new file mode 100644 index 0000000..bffc004 --- /dev/null +++ b/src/myfasthtml/icons/tabler.py @@ -0,0 +1,10870 @@ +# @sicons/tabler +# +# SVG icons integrated from [`tabler`](https://github.com/tabler/tabler-icons) +# +# A part of [`xicons`](https://github.com/07akioni/xicons) project. + +from fastcore.basics import NotStr + +icon_scale_outline = NotStr(''' + + + + +''') +icon_walk = NotStr(''' + + + + + + +''') +icon_temperature_celsius = NotStr(''' + + + + +''') +icon_brand_gitlab = NotStr('''''') +icon_playlist = NotStr(''' + + + + + + + +''') +icon_flip_horizontal = NotStr(''' + + + + + +''') +icon_player_skip_forward = NotStr(''' + + + + +''') +icon_plant = NotStr(''' + + + + + + +''') +icon_messages = NotStr(''' + + + + +''') +icon_viewfinder = NotStr(''' + + + + + + + + +''') +icon_paint = NotStr(''' + + + + + +''') +icon_subtask = NotStr(''' + + + + + + + +''') +icon_calendar = NotStr(''' + + + + + + + + +''') +icon_flag3 = NotStr('''''') +icon_brand_foursquare = NotStr(''' + + + + +''') +icon_file_code2 = NotStr(''' + + + + + + +''') +icon_text_resize = NotStr(''' + + + + + + + + + + + + +''') +icon_bell_x = NotStr(''' + + + + + +''') +icon_letter_u = NotStr('''''') +icon_lock = NotStr(''' + + + + + +''') +icon_presentation_analytics = NotStr(''' + + + + + + + + + +''') +icon_arrow_up_left_circle = NotStr(''' + + + + + +''') +icon_brand_shazam = NotStr(''' + + + + + +''') +icon_clipboard_plus = NotStr(''' + + + + + + +''') +icon_report_money = NotStr(''' + + + + + + +''') +icon_antenna_bars1 = NotStr(''' + + + + + + +''') +icon_building_lighthouse = NotStr(''' + + + + + + +''') +icon_basket = NotStr(''' + + + + + +''') +icon_brand_kotlin = NotStr(''' + + + + + + +''') +icon_rotate_clockwise = NotStr('''''') +icon_arrows_split2 = NotStr(''' + + + + + + +''') +icon_layout = NotStr(''' + + + + + +''') +icon_droplet_off = NotStr(''' + + + + + +''') +icon_arrows_diagonal = NotStr(''' + + + + + + +''') +icon_file_phone = NotStr(''' + + + + + +''') +icon_cone2 = NotStr(''' + + + + +''') +icon_table = NotStr(''' + + + + + +''') +icon_circle_half = NotStr(''' + + + + +''') +icon_bookmarks = NotStr(''' + + + + +''') +icon_square_forbid = NotStr(''' + + + + +''') +icon_brand_unsplash = NotStr('''''') +icon_scale = NotStr(''' + + + + + + + +''') +icon_wall = NotStr(''' + + + + + + + + + + + +''') +icon_face_mask = NotStr(''' + + + + + + + +''') +icon_clipboard_check = NotStr(''' + + + + + +''') +icon_flare = NotStr(''' + + + + +''') +icon_qrcode = NotStr(''' + + + + + + + + + + + + + + +''') +icon_clear_formatting = NotStr(''' + + + + + + +''') +icon_brand_ubuntu = NotStr(''' + + + + + + +''') +icon_arrow_up = NotStr(''' + + + + + +''') +icon_brand_hipchat = NotStr(''' + + + + +''') +icon_camera_rotate = NotStr(''' + + + + + + +''') +icon_microphone = NotStr(''' + + + + + + +''') +icon_device_mobile_vibration = NotStr(''' + + + + + + +''') +icon_ghost = NotStr(''' + + + + + + +''') +icon_medal2 = NotStr(''' + + + + + + +''') +icon_corner_up_right_double = NotStr(''' + + + + +''') +icon_crane = NotStr(''' + + + + + + +''') +icon_file_plus = NotStr(''' + + + + + + +''') +icon_devices_pc = NotStr(''' + + + + + + + + +''') +icon_square_plus = NotStr(''' + + + + + +''') +icon_logout = NotStr(''' + + + + +''') +icon_arrow_up_right_circle = NotStr(''' + + + + + +''') +icon_multiplier2_x = NotStr(''' + + + + + +''') +icon_list_details = NotStr(''' + + + + + + + + +''') +icon_arrow_up_circle = NotStr(''' + + + + + + +''') +icon_square_forbid2 = NotStr(''' + + + + +''') +icon_hotel_service = NotStr('''''') +icon_test_pipe = NotStr(''' + + + + + +''') +icon_message_circle = NotStr(''' + + + + + + +''') +icon_arrow_autofit_height = NotStr(''' + + + + + + + +''') +icon_backpack = NotStr(''' + + + + + +''') +icon_truck_off = NotStr(''' + + + + + + +''') +icon_hexagon = NotStr('''''') +icon_user_check = NotStr(''' + + + + + +''') +icon_arrows_horizontal = NotStr(''' + + + + + +''') +icon_corner_left_up_double = NotStr(''' + + + + +''') +icon_tags_off = NotStr(''' + + + + + + +''') +icon_devices2 = NotStr(''' + + + + + + + + +''') +icon_playlist_add = NotStr(''' + + + + + + + +''') +icon_chart_area_line = NotStr(''' + + + + +''') +icon_arrows_up_left = NotStr(''' + + + + + +''') +icon_cloud_fog = NotStr(''' + + + + +''') +icon_variable = NotStr(''' + + + + +''') +icon_dna = NotStr(''' + + + + + +''') +icon_chart_infographic = NotStr(''' + + + + + + + + +''') +icon_disabled2 = NotStr(''' + + + + + +''') +icon_border_none = NotStr(''' + + + + + + + + + + + + + + + + + + + + + + + +''') +icon_spacing_vertical = NotStr(''' + + + + + +''') +icon_thumb_down = NotStr('''''') +icon_usb = NotStr(''' + + + + + + + + + +''') +icon_file_report = NotStr(''' + + + + + + +''') +icon_currency = NotStr(''' + + + + + + + +''') +icon_number2 = NotStr('''''') +icon_square_toggle = NotStr(''' + + + + + + + +''') +icon_brand_cucumber = NotStr(''' + + + + + + + + + + +''') +icon_aerial_lift = NotStr('''''') +icon_circle_check = NotStr(''' + + + + +''') +icon_brightness2 = NotStr(''' + + + + +''') +icon_globe = NotStr(''' + + + + + + +''') +icon_file_dollar = NotStr(''' + + + + + + +''') +icon_hand_stop = NotStr(''' + + + + + + +''') +icon_arrow_loop_left = NotStr(''' + + + + +''') +icon_sock = NotStr(''' + + + + +''') +icon_chart_pie3 = NotStr(''' + + + + + +''') +icon_eye_table = NotStr(''' + + + + + + + + + + + +''') +icon_arrows_shuffle2 = NotStr(''' + + + + + + +''') +icon_vinyl = NotStr(''' + + + + + + +''') +icon_arrow_left = NotStr(''' + + + + + +''') +icon_recharging = NotStr(''' + + + + + + + + + + + + +''') +icon_brand_apple = NotStr(''' + + + + +''') +icon_git_commit = NotStr(''' + + + + + +''') +icon_shield_off = NotStr(''' + + + + +''') +icon_zodiac_scorpio = NotStr(''' + + + + + +''') +icon_squares_diagonal = NotStr(''' + + + + + +''') +icon_engine = NotStr(''' + + + + + + + +''') +icon_target = NotStr(''' + + + + + +''') +icon_elevator = NotStr(''' + + + + + +''') +icon_disabled = NotStr(''' + + + + + + +''') +icon_currency_pound = NotStr('''''') +icon_jump_rope = NotStr(''' + + + + + +''') +icon_chevrons_up_right = NotStr(''' + + + + +''') +icon_picture_in_picture_off = NotStr(''' + + + + + + +''') +icon_box_multiple4 = NotStr(''' + + + + + +''') +icon_volume2 = NotStr(''' + + + + +''') +icon_trash = NotStr(''' + + + + + + + +''') +icon_trophy = NotStr(''' + + + + + + + + +''') +icon_separator = NotStr(''' + + + + + +''') +icon_currency_dollar = NotStr(''' + + + + +''') +icon_h2 = NotStr(''' + + + + + + + + + + +''') +icon_currency_naira = NotStr(''' + + + + + +''') +icon_polygon = NotStr(''' + + + + + + + + + + +''') +icon_file_symlink = NotStr(''' + + + + + + +''') +icon_text_wrap_disabled = NotStr(''' + + + + + +''') +icon_currency_real = NotStr(''' + + + + + + +''') +icon_history = NotStr(''' + + + + +''') +icon_check = NotStr('''''') +icon_wallpaper = NotStr(''' + + + + + +''') +icon_calendar_event = NotStr(''' + + + + + + + +''') +icon_user_search = NotStr(''' + + + + + + +''') +icon_arrows_maximize = NotStr(''' + + + + + + + + + + +''') +icon_arrow_big_top = NotStr('''''') +icon_c_sharp = NotStr(''' + + + + + + + +''') +icon_box_multiple6 = NotStr(''' + + + + + + +''') +icon_corner_down_left_double = NotStr(''' + + + + +''') +icon_adjustments_horizontal = NotStr(''' + + + + + + + + + + + +''') +icon_geometry = NotStr(''' + + + + + + +''') +icon_school = NotStr(''' + + + + +''') +icon_ruler2 = NotStr(''' + + + + + + + +''') +icon_drone = NotStr(''' + + + + + + + + + + + +''') +icon_brand_javascript = NotStr(''' + + + + + +''') +icon_brand_ycombinator = NotStr(''' + + + + + +''') +icon_hierarchy = NotStr(''' + + + + + + + +''') +icon_square9 = NotStr(''' + + + + + +''') +icon_brand_chrome = NotStr(''' + + + + + + + +''') +icon_building_warehouse = NotStr(''' + + + + + +''') +icon_terminal = NotStr(''' + + + + +''') +icon_brand_codesandbox = NotStr(''' + + + + + + + + + +''') +icon_venus = NotStr(''' + + + + + +''') +icon_wrecking_ball = NotStr(''' + + + + + + + + + + +''') +icon_rectangle = NotStr('''''') +icon_wiper_wash = NotStr(''' + + + + + + + + + + + +''') +icon_live_photo = NotStr(''' + + + + + + + + + + + + + + + + + + +''') +icon_panorama_horizontal = NotStr('''''') +icon_door_enter = NotStr(''' + + + + + + +''') +icon_versions = NotStr(''' + + + + + +''') +icon_report_analytics = NotStr(''' + + + + + + + +''') +icon_notification = NotStr(''' + + + + +''') +icon_drone_off = NotStr(''' + + + + + + + + + + + + +''') +icon_radioactive = NotStr(''' + + + + + +''') +icon_layout_sidebar = NotStr(''' + + + + +''') +icon_fish = NotStr(''' + + + + + + +''') +icon_arrow_big_right_lines = NotStr(''' + + + + + +''') +icon_user_off = NotStr(''' + + + + + +''') +icon_video = NotStr(''' + + + + +''') +icon_hand_two_fingers = NotStr(''' + + + + + + +''') +icon_medicine_syrup = NotStr(''' + + + + + + +''') +icon_vector_bezier = NotStr(''' + + + + + + + + + + + +''') +icon_box_multiple = NotStr(''' + + + + +''') +icon_arrows_down = NotStr(''' + + + + + + +''') +icon_rss = NotStr(''' + + + + + +''') +icon_medical_cross = NotStr('''''') +icon_list_numbers = NotStr(''' + + + + + + + +''') +icon_report_medical = NotStr(''' + + + + + + +''') +icon_align_left = NotStr(''' + + + + + +''') +icon_map_search = NotStr(''' + + + + + + + +''') +icon_brand_tabler = NotStr(''' + + + + + +''') +icon_writing_sign = NotStr(''' + + + + + +''') +icon_temperature_fahrenheit = NotStr(''' + + + + + +''') +icon_circles = NotStr(''' + + + + + +''') +icon_file_zip = NotStr(''' + + + + + + + + + + +''') +icon_square5 = NotStr(''' + + + + +''') +icon_yin_yang = NotStr(''' + + + + + + +''') +icon_brand_framer = NotStr('''''') +icon_ship = NotStr(''' + + + + + + +''') +icon_arrows_left_right = NotStr(''' + + + + + + +''') +icon_repeat_once = NotStr(''' + + + + + +''') +icon_arrows_up = NotStr(''' + + + + + + +''') +icon_armchair = NotStr(''' + + + + + + +''') +icon_ticket = NotStr(''' + + + + + + +''') +icon_wifi1 = NotStr(''' + + + + +''') +icon_building_pavilon = NotStr(''' + + + + + + +''') +icon_currency_won = NotStr(''' + + + + + +''') +icon_fall = NotStr(''' + + + + + + +''') +icon_arrow_narrow_right = NotStr(''' + + + + + +''') +icon_row_insert_top = NotStr(''' + + + + + +''') +icon_moon_stars = NotStr(''' + + + + + +''') +icon_help = NotStr(''' + + + + + +''') +icon_military_rank = NotStr(''' + + + + + + +''') +icon_angle = NotStr(''' + + + + + + + +''') +icon_flag = NotStr(''' + + + + + + +''') +icon_arrow_big_up_line = NotStr(''' + + + + +''') +icon_device_tv = NotStr(''' + + + + +''') +icon_column_insert_right = NotStr(''' + + + + + +''') +icon_chart_donut4 = NotStr(''' + + + + + + + +''') +icon_equal = NotStr('''''') +icon_pill = NotStr(''' + + + + +''') +icon_brand_tailwind = NotStr('''''') +icon_propeller = NotStr(''' + + + + + + +''') +icon_share = NotStr(''' + + + + + + + +''') +icon_brand_asana = NotStr(''' + + + + + +''') +icon_brand_bitbucket = NotStr(''' + + + + +''') +icon_calendar_time = NotStr(''' + + + + + + + + +''') +icon_arrow_ramp_left = NotStr(''' + + + + + + +''') +icon_arrow_back = NotStr('''''') +icon_code_minus = NotStr(''' + + + + + +''') +icon_sort_descending_letters = NotStr(''' + + + + + + +''') +icon_layout_list = NotStr(''' + + + + +''') +icon_box_model = NotStr(''' + + + + + + + + +''') +icon_letter_spacing = NotStr(''' + + + + + + + +''') +icon_radius_bottom_left = NotStr('''''') +icon_letter_q = NotStr(''' + + + + +''') +icon_arrow_right_circle = NotStr(''' + + + + + +''') +icon_rectangle_vertical = NotStr('''''') +icon_shopping_cart_off = NotStr(''' + + + + + + + +''') +icon_devices = NotStr(''' + + + + + +''') +icon_zoom_out = NotStr(''' + + + + + +''') +icon_file_import = NotStr(''' + + + + +''') +icon_blockquote = NotStr(''' + + + + + + + + +''') +icon_arrows_left_down = NotStr(''' + + + + + +''') +icon_align_right = NotStr(''' + + + + + +''') +icon_camera_plus = NotStr(''' + + + + + + +''') +icon_palette = NotStr(''' + + + + + + +''') +icon_upload = NotStr(''' + + + + + +''') +icon_player_track_next = NotStr(''' + + + + +''') +icon_bell = NotStr(''' + + + + +''') +icon_border_right = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_letter_l = NotStr('''''') +icon_axis_y = NotStr(''' + + + + + + + +''') +icon_switch3 = NotStr(''' + + + + + + +''') +icon_building_bridge = NotStr(''' + + + + + + + +''') +icon_copyright = NotStr(''' + + + + +''') +icon_relation_many_to_many = NotStr(''' + + + + + + + +''') +icon_square7 = NotStr(''' + + + + +''') +icon_alarm = NotStr(''' + + + + + + +''') +icon_ear_off = NotStr(''' + + + + + +''') +icon_device_watch_stats = NotStr(''' + + + + + + + + +''') +icon_backspace = NotStr(''' + + + + +''') +icon_disc = NotStr(''' + + + + + + +''') +icon_relation_one_to_many = NotStr(''' + + + + + + + +''') +icon_vaccine = NotStr(''' + + + + + + + + + +''') +icon_phone_check = NotStr(''' + + + + +''') +icon_device_tablet = NotStr(''' + + + + +''') +icon_perspective = NotStr('''''') +icon_database = NotStr(''' + + + + + +''') +icon_massage = NotStr(''' + + + + + + + +''') +icon_square2 = NotStr(''' + + + + +''') +icon_miliraty_award = NotStr(''' + + + + + +''') +icon_arrow_big_up_lines = NotStr(''' + + + + + +''') +icon_chart_radar = NotStr(''' + + + + + + + +''') +icon_trending_down2 = NotStr(''' + + + + +''') +icon_lock_off = NotStr(''' + + + + + + +''') +icon_chevron_down_right = NotStr('''''') +icon_prompt = NotStr(''' + + + + +''') +icon_brand_gmail = NotStr(''' + + + + + + +''') +icon_box = NotStr(''' + + + + + + +''') +icon_map_pins = NotStr(''' + + + + + + +''') +icon_wiper = NotStr(''' + + + + + +''') +icon_circle1 = NotStr(''' + + + + +''') +icon_send = NotStr(''' + + + + +''') +icon_lifebuoy = NotStr(''' + + + + + + + + +''') +icon_layout_align_center = NotStr(''' + + + + + +''') +icon_arrow_bottom_tail = NotStr(''' + + + + + +''') +icon_message_circle_off = NotStr(''' + + + + +''') +icon_ice_cream2 = NotStr(''' + + + + +''') +icon_battery1 = NotStr(''' + + + + +''') +icon_tools = NotStr(''' + + + + + + + + +''') +icon_cpu = NotStr(''' + + + + + + + + + + + + +''') +icon_signature = NotStr('''''') +icon_arrows_down_up = NotStr(''' + + + + + + +''') +icon_cardboards = NotStr(''' + + + + + +''') +icon_arrow_loop_right = NotStr(''' + + + + +''') +icon_rotate360 = NotStr(''' + + + + +''') +icon_mood_empty = NotStr(''' + + + + + + +''') +icon_device_analytics = NotStr(''' + + + + + + + +''') +icon_wifi = NotStr(''' + + + + + + +''') +icon_circle7 = NotStr(''' + + + + +''') +icon_square_root = NotStr('''''') +icon_corner_right_down = NotStr('''''') +icon_window = NotStr(''' + + + + + +''') +icon_user = NotStr(''' + + + + +''') +icon_skateboard = NotStr(''' + + + + + +''') +icon_book = NotStr(''' + + + + + + + +''') +icon_glass_full = NotStr(''' + + + + + + +''') +icon_brand_airbnb = NotStr('''''') +icon_brand_sublime_text = NotStr(''' + + + + + + +''') +icon_eyeglass2 = NotStr(''' + + + + + + + +''') +icon_git_compare = NotStr(''' + + + + + + + + +''') +icon_volume3 = NotStr(''' + + + + +''') +icon_droplet_filled2 = NotStr(''' + + + + + + +''') +icon_player_pause = NotStr(''' + + + + +''') +icon_sort_descending = NotStr(''' + + + + + + + +''') +icon_luggage = NotStr(''' + + + + + + + + +''') +icon_sort_ascending_numbers = NotStr(''' + + + + + + + +''') +icon_shield_checkered = NotStr(''' + + + + + +''') +icon_server = NotStr(''' + + + + + + +''') +icon_cloud_off = NotStr(''' + + + + +''') +icon_border_all = NotStr(''' + + + + + +''') +icon_arrow_top_square = NotStr(''' + + + + + +''') +icon_live_view = NotStr(''' + + + + + + + + +''') +icon_arrows_shuffle = NotStr(''' + + + + + + +''') +icon_arrow_wave_left_up = NotStr(''' + + + + +''') +icon_fingerprint = NotStr(''' + + + + + + + +''') +icon_file_analytics = NotStr(''' + + + + + + + +''') +icon_api_app = NotStr(''' + + + + + + +''') +icon_access_point_off = NotStr(''' + + + + + + + +''') +icon_coin = NotStr(''' + + + + + +''') +icon_login = NotStr(''' + + + + +''') +icon_toggle_left = NotStr(''' + + + + +''') +icon_zodiac_sagittarius = NotStr(''' + + + + + +''') +icon_hand_click = NotStr(''' + + + + + + + + + + +''') +icon_brand_airtable = NotStr(''' + + + + + +''') +icon_free_rights = NotStr(''' + + + + + + + + +''') +icon_arrow_narrow_down = NotStr(''' + + + + + +''') +icon_antenna_bars4 = NotStr(''' + + + + + + +''') +icon_direction = NotStr(''' + + + + +''') +icon_credit_card = NotStr(''' + + + + + + +''') +icon_multiplier1_x = NotStr(''' + + + + + +''') +icon_arrow_wave_left_down = NotStr(''' + + + + +''') +icon_sunrise = NotStr(''' + + + + + +''') +icon_file_export = NotStr(''' + + + + +''') +icon_layers_difference = NotStr(''' + + + + + + + +''') +icon_brand_debian = NotStr(''' + + + + +''') +icon_circle_dot = NotStr(''' + + + + +''') +icon_brand_pagekit = NotStr('''''') +icon_phone_calling = NotStr(''' + + + + + + +''') +icon_git_merge = NotStr(''' + + + + + + + +''') +icon_omega = NotStr('''''') +icon_sum = NotStr('''''') +icon_brand_open_source = NotStr('''''') +icon_circle6 = NotStr(''' + + + + + +''') +icon_door_exit = NotStr(''' + + + + + + +''') +icon_aperture = NotStr(''' + + + + + + + + +''') +icon_battery_charging2 = NotStr(''' + + + + + + + +''') +icon_brand_tiktok = NotStr('''''') +icon_arrows_double_ne_sw = NotStr(''' + + + + + + +''') +icon_flame = NotStr('''''') +icon_step_out = NotStr(''' + + + + + + +''') +icon_square1 = NotStr(''' + + + + +''') +icon_brand_sass = NotStr(''' + + + + +''') +icon_notes = NotStr(''' + + + + + + +''') +icon_hexagon_off = NotStr(''' + + + + +''') +icon_brand_visual_studio = NotStr('''''') +icon_candy = NotStr(''' + + + + + +''') +icon_letter_case_toggle = NotStr(''' + + + + + + +''') +icon_square_x = NotStr(''' + + + + +''') +icon_paperclip = NotStr('''''') +icon_letter_case_lower = NotStr(''' + + + + + + +''') +icon_calendar_plus = NotStr(''' + + + + + + + + +''') +icon_bluetooth_connected = NotStr(''' + + + + + +''') +icon_world_longitude = NotStr(''' + + + + + + +''') +icon_chart_pie = NotStr(''' + + + + +''') +icon_maximize = NotStr(''' + + + + + + +''') +icon_temperature_plus = NotStr(''' + + + + + + +''') +icon_shape = NotStr(''' + + + + + + + + + + +''') +icon_border_inner = NotStr(''' + + + + + + + + + + + + + + + + +''') +icon_git_pull_request_draft = NotStr(''' + + + + + + + + +''') +icon_report = NotStr(''' + + + + + + + + + +''') +icon_cast = NotStr(''' + + + + + + +''') +icon_brand_google_analytics = NotStr(''' + + + + + +''') +icon_player_track_prev = NotStr(''' + + + + +''') +icon_square_off = NotStr(''' + + + + +''') +icon_video_minus = NotStr(''' + + + + + +''') +icon_helmet = NotStr(''' + + + + +''') +icon_lasso = NotStr(''' + + + + + +''') +icon_brand_netflix = NotStr('''''') +icon_mood_tongue = NotStr(''' + + + + + + +''') +icon_forklift = NotStr(''' + + + + + + + + + + +''') +icon_arrows_left = NotStr(''' + + + + + + +''') +icon_bath = NotStr(''' + + + + + + +''') +icon_door = NotStr(''' + + + + + +''') +icon_letter_t = NotStr(''' + + + + +''') +icon_arrow_back_up = NotStr('''''') +icon_number3 = NotStr(''' + + + + +''') +icon_markdown = NotStr(''' + + + + + +''') +icon_battery = NotStr('''''') +icon_container = NotStr(''' + + + + + + + + + + + + + +''') +icon_arrow_big_left_lines = NotStr(''' + + + + + +''') +icon_temperature_minus = NotStr(''' + + + + + +''') +icon_chart_donut3 = NotStr(''' + + + + + + +''') +icon_brand_kickstarter = NotStr('''''') +icon_satellite = NotStr(''' + + + + + + + + +''') +icon_letter_e = NotStr(''' + + + + +''') +icon_lollipop = NotStr(''' + + + + + + + + +''') +icon_binary = NotStr(''' + + + + + + +''') +icon_wifi0 = NotStr('''''') +icon_building_store = NotStr(''' + + + + + + + +''') +icon_brand_stripe = NotStr('''''') +icon_brand_vercel = NotStr('''''') +icon_viewport_wide = NotStr(''' + + + + + + +''') +icon_currency_taka = NotStr(''' + + + + + +''') +icon_presentation = NotStr(''' + + + + + + + +''') +icon_pentagon = NotStr('''''') +icon_camera_minus = NotStr(''' + + + + + +''') +icon_arrow_big_left_line = NotStr(''' + + + + +''') +icon_brightness = NotStr(''' + + + + + + + +''') +icon_eye_off = NotStr(''' + + + + + +''') +icon_list_check = NotStr(''' + + + + + + + + +''') +icon_layout_board_split = NotStr(''' + + + + + + + +''') +icon_app_window = NotStr(''' + + + + + +''') +icon_square0 = NotStr(''' + + + + +''') +icon_letter_f = NotStr(''' + + + + +''') +icon_strikethrough = NotStr(''' + + + + +''') +icon_antenna_bars5 = NotStr(''' + + + + + + +''') +icon_vector_triangle = NotStr(''' + + + + + + + + +''') +icon_brand_google = NotStr('''''') +icon_table_off = NotStr(''' + + + + + + +''') +icon_code = NotStr(''' + + + + + +''') +icon_scissors = NotStr(''' + + + + + + +''') +icon_user_minus = NotStr(''' + + + + + +''') +icon_face_id_error = NotStr(''' + + + + + + + + + +''') +icon_antenna_bars2 = NotStr(''' + + + + + + +''') +icon_vector = NotStr(''' + + + + + + + + + + +''') +icon_math_symbols = NotStr(''' + + + + + + + + + + + +''') +icon_arrow_ramp_right = NotStr(''' + + + + + + +''') +icon_page_break = NotStr(''' + + + + + + +''') +icon_letter_c = NotStr('''''') +icon_rocket = NotStr(''' + + + + + +''') +icon_arrow_bar_left = NotStr(''' + + + + + + +''') +icon_circle_plus = NotStr(''' + + + + + +''') +icon_keyboard_off = NotStr(''' + + + + + + + + + + + +''') +icon_device_laptop = NotStr(''' + + + + +''') +icon_layout_sidebar_right_collapse = NotStr(''' + + + + + +''') +icon_arrow_narrow_left = NotStr(''' + + + + + +''') +icon_adjustments = NotStr(''' + + + + + + + + + + + +''') +icon_stairs_down = NotStr(''' + + + + +''') +icon_switch_horizontal = NotStr(''' + + + + + + +''') +icon_device_computer_camera = NotStr(''' + + + + + +''') +icon_checkup_list = NotStr(''' + + + + + + + +''') +icon_chart_pie4 = NotStr(''' + + + + + + +''') +icon_hand_off = NotStr(''' + + + + +''') +icon_shield = NotStr('''''') +icon_ball_basketball = NotStr(''' + + + + + + + +''') +icon_diamonds = NotStr('''''') +icon_pennant = NotStr(''' + + + + + +''') +icon_wave_sine = NotStr('''''') +icon_box_multiple2 = NotStr(''' + + + + + +''') +icon_arrow_right_square = NotStr(''' + + + + + +''') +icon_shield_check = NotStr(''' + + + + +''') +icon_hand_finger = NotStr(''' + + + + + + +''') +icon_medal = NotStr(''' + + + + +''') +icon_ball_american_football = NotStr(''' + + + + + + + + +''') +icon_replace = NotStr(''' + + + + + + +''') +icon_ice_cream = NotStr(''' + + + + + + +''') +icon_aspect_ratio = NotStr(''' + + + + + +''') +icon_screen_share = NotStr(''' + + + + + + + + +''') +icon_lemon = NotStr(''' + + + + + + + +''') +icon_plane_departure = NotStr(''' + + + + +''') +icon_truck_delivery = NotStr(''' + + + + + + +''') +icon_browser_x = NotStr(''' + + + + + + + +''') +icon_moped = NotStr(''' + + + + + +''') +icon_brightness_up = NotStr(''' + + + + + + + + + + + +''') +icon_biohazard = NotStr(''' + + + + +''') +icon_device_mobile_rotated = NotStr(''' + + + + + +''') +icon_tallymark3 = NotStr(''' + + + + + +''') +icon_zodiac_libra = NotStr(''' + + + + +''') +icon_brand_youtube = NotStr(''' + + + + +''') +icon_currency_bahraini = NotStr(''' + + + + + + +''') +icon_bike = NotStr(''' + + + + + + +''') +icon_float_right = NotStr(''' + + + + + + + +''') +icon_woman = NotStr(''' + + + + +''') +icon_copyleft = NotStr(''' + + + + +''') +icon_moon2 = NotStr(''' + + + + +''') +icon_chart_pie2 = NotStr(''' + + + + +''') +icon_pokeball = NotStr(''' + + + + + +''') +icon_corner_down_right = NotStr('''''') +icon_submarine = NotStr(''' + + + + + +''') +icon_chart_circles = NotStr(''' + + + + +''') +icon_soccer_field = NotStr(''' + + + + + + + +''') +icon_pool = NotStr(''' + + + + + + + + +''') +icon_backhoe = NotStr(''' + + + + + + + + + + +''') +icon_quote = NotStr(''' + + + + +''') +icon_layout_align_right = NotStr(''' + + + + +''') +icon_sort_ascending2 = NotStr(''' + + + + + + +''') +icon_scooter_electric = NotStr(''' + + + + + + +''') +icon_corner_left_up = NotStr('''''') +icon_number5 = NotStr('''''') +icon_clear_all = NotStr(''' + + + + + +''') +icon_ab = NotStr(''' + + + + + +''') +icon_brand_tumblr = NotStr('''''') +icon_track = NotStr('''''') +icon_mask_off = NotStr(''' + + + + + +''') +icon_shopping_cart = NotStr(''' + + + + + + +''') +icon_zodiac_cancer = NotStr(''' + + + + + + +''') +icon_brand_slack = NotStr(''' + + + + + + +''') +icon_accessible = NotStr(''' + + + + + +''') +icon_brand_facebook = NotStr('''''') +icon_microphone2 = NotStr(''' + + + + +''') +icon_prescription = NotStr(''' + + + + + +''') +icon_number1 = NotStr('''''') +icon_chevrons_down_left = NotStr(''' + + + + +''') +icon_alert_triangle = NotStr(''' + + + + +''') +icon_spacing_horizontal = NotStr(''' + + + + + +''') +icon_battery_off = NotStr(''' + + + + +''') +icon_brand_gravatar = NotStr('''''') +icon_file = NotStr(''' + + + + +''') +icon_mood_happy = NotStr(''' + + + + + + +''') +icon_selector = NotStr(''' + + + + +''') +icon_rotate2 = NotStr(''' + + + + + + + + +''') +icon_device_speaker = NotStr(''' + + + + + +''') +icon_cheese = NotStr(''' + + + + + + + +''') +icon_axis_x = NotStr(''' + + + + + + + +''') +icon_currency_krone_czech = NotStr(''' + + + + + + + +''') +icon_layers_intersect2 = NotStr(''' + + + + + +''') +icon_tractor = NotStr(''' + + + + + + + + +''') +icon_brand_pocket = NotStr(''' + + + + +''') +icon_align_center = NotStr(''' + + + + + +''') +icon_folder_off = NotStr(''' + + + + +''') +icon_currency_dollar_australian = NotStr(''' + + + + + + + +''') +icon_zodiac_gemini = NotStr(''' + + + + + + +''') +icon_checks = NotStr(''' + + + + +''') +icon_world_download = NotStr(''' + + + + + + + + +''') +icon_chevron_left = NotStr('''''') +icon_drop_circle = NotStr(''' + + + + +''') +icon_barbell = NotStr(''' + + + + + + + + + +''') +icon_zodiac_pisces = NotStr(''' + + + + + +''') +icon_chevron_up_left = NotStr('''''') +icon_box_multiple0 = NotStr(''' + + + + + +''') +icon_stethoscope = NotStr(''' + + + + + + + +''') +icon_slice = NotStr('''''') +icon_brand_discord = NotStr(''' + + + + + + + + +''') +icon_brand_firefox = NotStr(''' + + + + +''') +icon_droplet = NotStr('''''') +icon_message_plus = NotStr(''' + + + + + +''') +icon_video_plus = NotStr(''' + + + + + + +''') +icon_cut = NotStr(''' + + + + + + +''') +icon_chart_line = NotStr(''' + + + + +''') +icon_currency_forint = NotStr(''' + + + + + + +''') +icon_mood_crazy_happy = NotStr(''' + + + + + + + + +''') +icon_thumb_up = NotStr('''''') +icon_file_code = NotStr(''' + + + + + + +''') +icon_ball_baseball = NotStr(''' + + + + + + + + + + + +''') +icon_old = NotStr(''' + + + + + + + +''') +icon_zoom_in = NotStr(''' + + + + + + +''') +icon_database_export = NotStr(''' + + + + + +''') +icon_text_direction_rtl = NotStr(''' + + + + + + + +''') +icon_currency_cent = NotStr(''' + + + + + +''') +icon_pencil = NotStr(''' + + + + +''') +icon_corner_right_up_double = NotStr(''' + + + + +''') +icon_arrows_double_nw_se = NotStr(''' + + + + + + +''') +icon_haze = NotStr(''' + + + + + + + + + + +''') +icon_layout_columns = NotStr(''' + + + + +''') +icon_corner_up_left = NotStr('''''') +icon_brand_vimeo = NotStr('''''') +icon_archive = NotStr(''' + + + + + +''') +icon_brand_reddit = NotStr(''' + + + + + + + + +''') +icon_folder_x = NotStr(''' + + + + +''') +icon_battery_charging = NotStr(''' + + + + + +''') +icon_building_bridge2 = NotStr('''''') +icon_growth = NotStr('''''') +icon_brand_patreon = NotStr(''' + + + + +''') +icon_cloud_snow = NotStr(''' + + + + +''') +icon_cone = NotStr(''' + + + + +''') +icon_brand_twitch = NotStr(''' + + + + + +''') +icon_message_dots = NotStr(''' + + + + + + +''') +icon_nurse = NotStr(''' + + + + + +''') +icon_underline = NotStr(''' + + + + +''') +icon_mask = NotStr(''' + + + + +''') +icon_box_multiple3 = NotStr(''' + + + + + + +''') +icon_keyboard_hide = NotStr(''' + + + + + + + + + + + +''') +icon_arrow_top_tail = NotStr(''' + + + + + +''') +icon_at = NotStr(''' + + + + +''') +icon_border_horizontal = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_brand_whatsapp = NotStr(''' + + + + +''') +icon_gauge = NotStr(''' + + + + + + +''') +icon_eyeglass = NotStr(''' + + + + + + + +''') +icon_browser_check = NotStr(''' + + + + + + +''') +icon_multiplier15_x = NotStr(''' + + + + + + + +''') +icon_brand_safari = NotStr(''' + + + + +''') +icon_fold = NotStr(''' + + + + + + + + +''') +icon_firetruck = NotStr(''' + + + + + + + + + +''') +icon_cloud_upload = NotStr(''' + + + + + +''') +icon_square = NotStr('''''') +icon_number7 = NotStr('''''') +icon_brand_opera = NotStr(''' + + + + +''') +icon_box_multiple7 = NotStr(''' + + + + + +''') +icon_database_import = NotStr(''' + + + + + +''') +icon_phone_x = NotStr(''' + + + + +''') +icon_player_eject = NotStr(''' + + + + +''') +icon_letter_y = NotStr(''' + + + + +''') +icon_stack2 = NotStr(''' + + + + + +''') +icon_headphones = NotStr(''' + + + + + +''') +icon_arrows_minimize = NotStr(''' + + + + + + + + + + +''') +icon_registered = NotStr(''' + + + + + +''') +icon_plane = NotStr('''''') +icon_capture = NotStr(''' + + + + + + + +''') +icon_bluetooth = NotStr('''''') +icon_tank = NotStr(''' + + + + + +''') +icon_line_height = NotStr(''' + + + + + + + + +''') +icon_flask2 = NotStr(''' + + + + + +''') +icon_square3 = NotStr(''' + + + + + +''') +icon_layout_board = NotStr(''' + + + + + + +''') +icon_arrow_wave_right_down = NotStr(''' + + + + +''') +icon_run = NotStr(''' + + + + + + +''') +icon_outlet = NotStr(''' + + + + + +''') +icon_dna2 = NotStr(''' + + + + + + + + +''') +icon_device_audio_tape = NotStr(''' + + + + + + +''') +icon_gavel = NotStr(''' + + + + + + + +''') +icon_truck_return = NotStr(''' + + + + + + + +''') +icon_corner_up_right = NotStr('''''') +icon_layout_align_middle = NotStr(''' + + + + + +''') +icon_arrow_bar_right = NotStr(''' + + + + + + +''') +icon_ripple = NotStr(''' + + + + + +''') +icon_file_invoice = NotStr(''' + + + + + + + +''') +icon_picture_in_picture_on = NotStr(''' + + + + + + +''') +icon_camera_off = NotStr(''' + + + + + +''') +icon_flag2 = NotStr('''''') +icon_camera = NotStr(''' + + + + +''') +icon_urgent = NotStr(''' + + + + + +''') +icon_scooter = NotStr(''' + + + + + +''') +icon_currency_dogecoin = NotStr(''' + + + + + +''') +icon_mug = NotStr(''' + + + + +''') +icon_mood_nervous = NotStr(''' + + + + + + +''') +icon_layout2 = NotStr(''' + + + + + + +''') +icon_cursor_text = NotStr(''' + + + + + +''') +icon_bookmark = NotStr('''''') +icon_folder_plus = NotStr(''' + + + + + +''') +icon_shadow_off = NotStr(''' + + + + + + + + + +''') +icon_mail_forward = NotStr(''' + + + + + + +''') +icon_arrow_big_down = NotStr('''''') +icon_file_x = NotStr(''' + + + + + +''') +icon_mood_neutral = NotStr(''' + + + + + +''') +icon_circle_half2 = NotStr(''' + + + + + + + +''') +icon_seeding = NotStr(''' + + + + + +''') +icon_git_fork = NotStr(''' + + + + + + + +''') +icon_bell_z = NotStr(''' + + + + + +''') +icon_mouse = NotStr(''' + + + + +''') +icon_pacman = NotStr(''' + + + + +''') +icon_list = NotStr(''' + + + + + + + + +''') +icon_wind = NotStr(''' + + + + + +''') +icon_wave_square = NotStr('''''') +icon_arrow_bottom_circle = NotStr(''' + + + + + +''') +icon_cloud_rain = NotStr(''' + + + + +''') +icon_receipt_tax = NotStr(''' + + + + + + +''') +icon_hanger = NotStr('''''') +icon_chevron_down = NotStr('''''') +icon_pyramid = NotStr(''' + + + + +''') +icon_clipboard = NotStr(''' + + + + +''') +icon_dots = NotStr(''' + + + + + +''') +icon_device_desktop_analytics = NotStr(''' + + + + + + + + + + +''') +icon_file_horizontal = NotStr(''' + + + + +''') +icon_battery2 = NotStr(''' + + + + + +''') +icon_stairs = NotStr('''''') +icon_ce = NotStr(''' + + + + + +''') +icon_list_search = NotStr(''' + + + + + + + +''') +icon_cookie = NotStr(''' + + + + + + + + +''') +icon_brand_notion = NotStr(''' + + + + + + + + +''') +icon_mail_opened = NotStr(''' + + + + + + +''') +icon_spade = NotStr('''''') +icon_brand_meta = NotStr(''' + + + + +''') +icon_crown_off = NotStr(''' + + + + +''') +icon_brand_android = NotStr(''' + + + + + + + + + +''') +icon_home = NotStr(''' + + + + + +''') +icon_frame = NotStr(''' + + + + + + +''') +icon_flip_vertical = NotStr(''' + + + + + +''') +icon_clipboard_x = NotStr(''' + + + + + +''') +icon_circle9 = NotStr(''' + + + + + +''') +icon_books = NotStr(''' + + + + + + + + + + + +''') +icon_eye_check = NotStr(''' + + + + + +''') +icon_tools_kitchen = NotStr(''' + + + + + + + +''') +icon_minimize = NotStr(''' + + + + + + +''') +icon_device_cctv = NotStr(''' + + + + + + +''') +icon_overline = NotStr(''' + + + + +''') +icon_arrows_join2 = NotStr(''' + + + + + +''') +icon_steering_wheel = NotStr(''' + + + + + + + +''') +icon_letter_h = NotStr(''' + + + + + +''') +icon_bell_off = NotStr(''' + + + + + +''') +icon_language = NotStr(''' + + + + + + + +''') +icon_arrows_diagonal_minimize2 = NotStr(''' + + + + + + +''') +icon_cloud_lock = NotStr(''' + + + + + +''') +icon_flask = NotStr(''' + + + + + +''') +icon_clock = NotStr(''' + + + + +''') +icon_square_rotated = NotStr('''''') +icon_text_direction_ltr = NotStr(''' + + + + + + + +''') +icon_zoom_question = NotStr(''' + + + + + + +''') +icon_picture_in_picture = NotStr(''' + + + + +''') +icon_brand_appstore = NotStr(''' + + + + + + +''') +icon_square8 = NotStr(''' + + + + + +''') +icon_chevrons_up = NotStr(''' + + + + +''') +icon_device_desktop_off = NotStr(''' + + + + + + + +''') +icon_sort_ascending_letters = NotStr(''' + + + + + + +''') +icon_businessplan = NotStr(''' + + + + + + + + +''') +icon_award = NotStr(''' + + + + + +''') +icon_chart_donut = NotStr(''' + + + + +''') +icon_bell_plus = NotStr(''' + + + + + + +''') +icon_table_import = NotStr('''''') +icon_brand_linkedin = NotStr(''' + + + + + + + +''') +icon_truck = NotStr(''' + + + + + +''') +icon_ad2 = NotStr(''' + + + + + + + + +''') +icon_heading = NotStr(''' + + + + + + + + + +''') +icon_prison = NotStr(''' + + + + + + + + + + +''') +icon_external_link = NotStr(''' + + + + + +''') +icon_wand = NotStr(''' + + + + + + +''') +icon_adjustments_alt = NotStr(''' + + + + + + + + + + + +''') +icon_heart = NotStr('''''') +icon_section = NotStr(''' + + + + + + + + + + + + + +''') +icon_square_root2 = NotStr(''' + + + + + +''') +icon_hand_rock = NotStr(''' + + + + + + +''') +icon_step_into = NotStr(''' + + + + + + +''') +icon_arrows_cross = NotStr(''' + + + + + + + +''') +icon_edit_circle = NotStr(''' + + + + + +''') +icon_caret_up = NotStr('''''') +icon_bed = NotStr(''' + + + + +''') +icon_trending_up = NotStr(''' + + + + +''') +icon_manual_gearbox = NotStr(''' + + + + + + + + + + +''') +icon_arrow_bar_up = NotStr(''' + + + + + + +''') +icon_shape2 = NotStr(''' + + + + + + + +''') +icon_arrows_split = NotStr(''' + + + + + + +''') +icon_sport_billard = NotStr(''' + + + + + +''') +icon_chart_arrows = NotStr(''' + + + + + + + + + +''') +icon_map_pin_off = NotStr(''' + + + + + +''') +icon_hash = NotStr(''' + + + + + + +''') +icon_artboard = NotStr(''' + + + + + + + + + + + +''') +icon_shirt = NotStr('''''') +icon_brand_nytimes = NotStr(''' + + + + + + + +''') +icon_parachute = NotStr(''' + + + + + + +''') +icon_brand_doctrine = NotStr(''' + + + + + + +''') +icon_badges = NotStr(''' + + + + +''') +icon_shadow = NotStr(''' + + + + + + + + +''') +icon_square6 = NotStr(''' + + + + + +''') +icon_keyboard = NotStr(''' + + + + + + + + + + +''') +icon_letter_g = NotStr('''''') +icon_color_swatch = NotStr(''' + + + + + + +''') +icon_brand_netbeans = NotStr(''' + + + + + + + + + +''') +icon_square_minus = NotStr(''' + + + + +''') +icon_square_dot = NotStr(''' + + + + +''') +icon_gas_station = NotStr(''' + + + + + + + +''') +icon_arrow_big_down_lines = NotStr(''' + + + + + +''') +icon_arrow_right_tail = NotStr(''' + + + + + +''') +icon_line_dashed = NotStr(''' + + + + + +''') +icon_helicopter = NotStr(''' + + + + + + + + + +''') +icon_unlink = NotStr(''' + + + + + + + + +''') +icon_brand_css3 = NotStr(''' + + + + +''') +icon_ball_bowling = NotStr(''' + + + + + + +''') +icon_rotate_rectangle = NotStr('''''') +icon_brand_tinder = NotStr('''''') +icon_microscope = NotStr(''' + + + + + + + + + +''') +icon_pepper = NotStr(''' + + + + +''') +icon_border_style2 = NotStr(''' + + + + + + + + + + + +''') +icon_soup = NotStr(''' + + + + + + + +''') +icon_layout_distribute_horizontal = NotStr(''' + + + + + +''') +icon_crutches = NotStr(''' + + + + + + + +''') +icon_pray = NotStr(''' + + + + +''') +icon_circle3 = NotStr(''' + + + + + +''') +icon_contrast = NotStr(''' + + + + +''') +icon_indent_increase = NotStr(''' + + + + + + +''') +icon_toggle_right = NotStr(''' + + + + +''') +icon_lock_access = NotStr(''' + + + + + + + + +''') +icon_square_rotated_off = NotStr(''' + + + + +''') +icon_files = NotStr(''' + + + + + +''') +icon_text_wrap = NotStr(''' + + + + + +''') +icon_trending_down3 = NotStr(''' + + + + +''') +icon_ballon = NotStr(''' + + + + + +''') +icon_arrows_sort = NotStr(''' + + + + +''') +icon_code_plus = NotStr(''' + + + + + + +''') +icon_box_model2 = NotStr(''' + + + + +''') +icon_brand_php = NotStr(''' + + + + + + + +''') +icon_question_mark = NotStr(''' + + + + +''') +icon_mountain = NotStr(''' + + + + +''') +icon_brand_spotify = NotStr(''' + + + + + + +''') +icon_layers_linked = NotStr(''' + + + + +''') +icon_brand_bing = NotStr('''''') +icon_alert_octagon = NotStr(''' + + + + + +''') +icon_separator_vertical = NotStr(''' + + + + + +''') +icon_wallet = NotStr(''' + + + + +''') +icon_triangle = NotStr('''''') +icon_play_card = NotStr(''' + + + + + + +''') +icon_antenna_bars3 = NotStr(''' + + + + + + +''') +icon_player_record = NotStr('''''') +icon_settings_automation = NotStr(''' + + + + +''') +icon_car = NotStr(''' + + + + + +''') +icon_video_off = NotStr(''' + + + + + +''') +icon_arrow_autofit_content = NotStr(''' + + + + + + + +''') +icon_sort_descending_numbers = NotStr(''' + + + + + + + +''') +icon_lamp = NotStr(''' + + + + + +''') +icon_file_euro = NotStr(''' + + + + + + +''') +icon_circle0 = NotStr(''' + + + + +''') +icon_device_computer_camera_off = NotStr(''' + + + + + + +''') +icon_friends = NotStr(''' + + + + + + +''') +icon_download = NotStr(''' + + + + + +''') +icon_file_dislike = NotStr(''' + + + + + + +''') +icon_brand_paypal = NotStr('''''') +icon_crop = NotStr(''' + + + + +''') +icon_brand_pinterest = NotStr(''' + + + + + +''') +icon_emergency_bed = NotStr(''' + + + + + + + + + +''') +icon_current_location = NotStr(''' + + + + + + + + +''') +icon_layout_kanban = NotStr(''' + + + + + + +''') +icon_arrow_narrow_up = NotStr(''' + + + + + +''') +icon_link = NotStr(''' + + + + +''') +icon_news = NotStr(''' + + + + + + +''') +icon_tournament = NotStr(''' + + + + + + +''') +icon_stairs_up = NotStr(''' + + + + +''') +icon_pinned_off = NotStr(''' + + + + + + +''') +icon_letter_x = NotStr(''' + + + + +''') +icon_radio = NotStr(''' + + + + + + + +''') +icon_chevron_right = NotStr('''''') +icon_square4 = NotStr(''' + + + + +''') +icon_bolt_off = NotStr(''' + + + + +''') +icon_alien = NotStr(''' + + + + + + +''') +icon_letter_a = NotStr(''' + + + + +''') +icon_phone_outgoing = NotStr(''' + + + + + +''') +icon_lungs = NotStr(''' + + + + + + +''') +icon_smart_home = NotStr(''' + + + + +''') +icon_arrows_right_down = NotStr(''' + + + + + +''') +icon_circle4 = NotStr(''' + + + + +''') +icon_recycle = NotStr(''' + + + + + +''') +icon_charging_pile = NotStr(''' + + + + + + + + +''') +icon_kering = NotStr(''' + + + + + +''') +icon_pinned = NotStr(''' + + + + + +''') +icon_message = NotStr(''' + + + + + +''') +icon_traffic_cone = NotStr(''' + + + + + + +''') +icon_chart_bar = NotStr(''' + + + + + + +''') +icon_focus = NotStr(''' + + + + +''') +icon_border_top = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_zoom_check = NotStr(''' + + + + + +''') +icon_arrow_down_right = NotStr(''' + + + + +''') +icon_virus = NotStr(''' + + + + + + + + + + + +''') +icon_arrow_right = NotStr(''' + + + + + +''') +icon_corner_left_down_double = NotStr(''' + + + + +''') +icon_chart_arcs = NotStr(''' + + + + + +''') +icon_float_center = NotStr(''' + + + + + + + + + +''') +icon_egg = NotStr('''''') +icon_building_monument = NotStr(''' + + + + + +''') +icon_switch_vertical = NotStr(''' + + + + + + +''') +icon_trending_up2 = NotStr(''' + + + + +''') +icon_arrow_bar_to_down = NotStr(''' + + + + + + +''') +icon_border_bottom = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_player_stop = NotStr('''''') +icon_license = NotStr(''' + + + + + +''') +icon_arrow_left_tail = NotStr(''' + + + + + +''') +icon_shape3 = NotStr(''' + + + + + + + +''') +icon_parking = NotStr(''' + + + + +''') +icon_bolt = NotStr('''''') +icon_receipt_refund = NotStr(''' + + + + +''') +icon_hierarchy2 = NotStr(''' + + + + + + + +''') +icon_api = NotStr(''' + + + + + + +''') +icon_zodiac_aquarius = NotStr(''' + + + + +''') +icon_bulldozer = NotStr(''' + + + + + + + + + + +''') +icon_bluetooth_off = NotStr(''' + + + + +''') +icon_device_desktop = NotStr(''' + + + + + + +''') +icon_scuba_mask = NotStr(''' + + + + +''') +icon_file_shredder = NotStr(''' + + + + + + + + + +''') +icon_calendar_off = NotStr(''' + + + + + + + + + +''') +icon_multiplier05_x = NotStr(''' + + + + + + +''') +icon_id = NotStr(''' + + + + + + + +''') +icon_mood_boy = NotStr(''' + + + + + + + + +''') +icon_trash_x = NotStr(''' + + + + + + +''') +icon_dots_diagonal2 = NotStr(''' + + + + + +''') +icon_vaccine_bottle = NotStr(''' + + + + + + + +''') +icon_butterfly = NotStr(''' + + + + + +''') +icon_device_mobile = NotStr(''' + + + + + +''') +icon_phone = NotStr('''''') +icon_building_community = NotStr(''' + + + + + + + +''') +icon_currency_dollar_canadian = NotStr(''' + + + + + + +''') +icon_home2 = NotStr(''' + + + + + +''') +icon_filter_off = NotStr(''' + + + + +''') +icon_equal_not = NotStr('''''') +icon_calendar_minus = NotStr(''' + + + + + + + +''') +icon_glass_off = NotStr(''' + + + + + + +''') +icon_sausage = NotStr(''' + + + + + +''') +icon_discount2 = NotStr(''' + + + + + + +''') +icon_lego = NotStr(''' + + + + + + +''') +icon_player_skip_back = NotStr(''' + + + + +''') +icon_fold_down = NotStr(''' + + + + + + + +''') +icon_ball_volleyball = NotStr(''' + + + + + + +''') +icon_octagon = NotStr('''''') +icon_brand_apple_arcade = NotStr(''' + + + + + + +''') +icon_device_watch = NotStr(''' + + + + + +''') +icon_chart_arcs3 = NotStr(''' + + + + + +''') +icon_note = NotStr(''' + + + + +''') +icon_circle2 = NotStr(''' + + + + +''') +icon_info_circle = NotStr(''' + + + + + +''') +icon_sunset = NotStr(''' + + + + + +''') +icon_pin = NotStr(''' + + + + + +''') +icon_droplet_filled = NotStr(''' + + + + + + +''') +icon_tallymark2 = NotStr(''' + + + + +''') +icon_curling = NotStr(''' + + + + + +''') +icon_motorbike = NotStr(''' + + + + + + +''') +icon_arrow_forward_up = NotStr('''''') +icon_currency_dinar = NotStr(''' + + + + + + +''') +icon_macro = NotStr(''' + + + + + + + +''') +icon_brand_angular = NotStr(''' + + + + + +''') +icon_tallymarks = NotStr(''' + + + + + + + +''') +icon_phone_off = NotStr(''' + + + + +''') +icon_subscript = NotStr(''' + + + + +''') +icon_device_gamepad = NotStr(''' + + + + + + +''') +icon_bone = NotStr('''''') +icon_apple = NotStr(''' + + + + + +''') +icon_border_left = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_dots_vertical = NotStr(''' + + + + + +''') +icon_view360 = NotStr(''' + + + + + +''') +icon_magnet = NotStr(''' + + + + + +''') +icon_grain = NotStr(''' + + + + + + + + + + +''') +icon_marquee2 = NotStr('''''') +icon_layout_rows = NotStr(''' + + + + +''') +icon_inbox = NotStr(''' + + + + +''') +icon_click = NotStr(''' + + + + + + + + +''') +icon_eye = NotStr(''' + + + + +''') +icon_message_circle2 = NotStr(''' + + + + + + +''') +icon_layout_distribute_vertical = NotStr(''' + + + + + +''') +icon_music = NotStr(''' + + + + + + +''') +icon_tallymark4 = NotStr(''' + + + + + + +''') +icon_parentheses = NotStr(''' + + + + +''') +icon_transfer_in = NotStr(''' + + + + + +''') +icon_arrow_big_left = NotStr('''''') +icon_karate = NotStr(''' + + + + + + +''') +icon_loader = NotStr(''' + + + + + + + + + + +''') +icon_arrow_top_circle = NotStr(''' + + + + + +''') +icon_arrow_down_circle = NotStr(''' + + + + + + +''') +icon_plus = NotStr(''' + + + + +''') +icon_brand_stackoverflow = NotStr(''' + + + + + + + +''') +icon_caret_down = NotStr('''''') +icon_minus_vertical = NotStr('''''') +icon_picture_in_picture_top = NotStr(''' + + + + +''') +icon_refresh_alert = NotStr(''' + + + + + + +''') +icon_device_mobile_message = NotStr(''' + + + + + +''') +icon_plug_connected = NotStr(''' + + + + + + + + +''') +icon_letter_i = NotStr('''''') +icon_servicemark = NotStr(''' + + + + +''') +icon_mars = NotStr(''' + + + + + + +''') +icon_gift = NotStr(''' + + + + + + +''') +icon_brand_deviantart = NotStr('''''') +icon_squares_filled = NotStr(''' + + + + + + + +''') +icon_apps = NotStr(''' + + + + + + + +''') +icon_radius_top_right = NotStr('''''') +icon_layout_bottombar = NotStr(''' + + + + +''') +icon_git_pull_request = NotStr(''' + + + + + + + + +''') +icon_exchange = NotStr(''' + + + + + + +''') +icon_mood_sad = NotStr(''' + + + + + + +''') +icon_zoom_money = NotStr(''' + + + + + + +''') +icon_square_toggle_horizontal = NotStr(''' + + + + + + + +''') +icon_arrows_up_down = NotStr(''' + + + + + + +''') +icon_mushroom = NotStr(''' + + + + +''') +icon_number0 = NotStr(''' + + + + +''') +icon_currency_ethereum = NotStr(''' + + + + +''') +icon_confetti = NotStr(''' + + + + + + + + + + + + +''') +icon_chevrons_up_left = NotStr(''' + + + + +''') +icon_world = NotStr(''' + + + + + + + +''') +icon_trending_up3 = NotStr(''' + + + + +''') +icon_currency_tugrik = NotStr(''' + + + + + + +''') +icon_box_multiple9 = NotStr(''' + + + + + + +''') +icon_currency_frank = NotStr(''' + + + + + +''') +icon_calculator = NotStr(''' + + + + + + + + + + +''') +icon_creative_commons = NotStr(''' + + + + + +''') +icon_pills = NotStr(''' + + + + + + +''') +icon_exposure = NotStr(''' + + + + + + +''') +icon_circle_dashed = NotStr(''' + + + + + + + + + + +''') +icon_terminal2 = NotStr(''' + + + + + +''') +icon_caravan = NotStr(''' + + + + + + +''') +icon_ball_football = NotStr(''' + + + + + +''') +icon_arrow_big_down_line = NotStr(''' + + + + +''') +icon_message2 = NotStr(''' + + + + + +''') +icon_heart_broken = NotStr(''' + + + + +''') +icon_arrows_vertical = NotStr(''' + + + + + +''') +icon_line_dotted = NotStr(''' + + + + + + + +''') +icon_letter_b = NotStr(''' + + + + +''') +icon_droplet_half2 = NotStr(''' + + + + +''') +icon_rotate_clockwise2 = NotStr(''' + + + + + + + + +''') +icon_browser = NotStr(''' + + + + + +''') +icon_border_vertical = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_clubs = NotStr('''''') +icon_divide = NotStr(''' + + + + + +''') +icon_no_derivatives = NotStr(''' + + + + + +''') +icon_ball_tennis = NotStr(''' + + + + + +''') +icon_user_circle = NotStr(''' + + + + + +''') +icon_sun = NotStr(''' + + + + +''') +icon_superscript = NotStr(''' + + + + +''') +icon_line = NotStr(''' + + + + + +''') +icon_brand_codepen = NotStr(''' + + + + + + + + +''') +icon_cloud_storm = NotStr(''' + + + + +''') +icon_hand_little_finger = NotStr(''' + + + + + + +''') +icon_star = NotStr('''''') +icon_battery3 = NotStr(''' + + + + + + +''') +icon_shredder = NotStr(''' + + + + +''') +icon_color_picker = NotStr(''' + + + + +''') +icon_tabler3_d_cube_sphere = NotStr(''' + + + + + + + + + + + + + + +''') +icon_arrow_top_bar = NotStr(''' + + + + + +''') +icon_letters_case = NotStr(''' + + + + + + +''') +icon_bulb = NotStr(''' + + + + + +''') +icon_brand_skype = NotStr(''' + + + + +''') +icon_checkbox = NotStr(''' + + + + +''') +icon_train = NotStr(''' + + + + + + + + + +''') +icon_users = NotStr(''' + + + + + + +''') +icon_transfer_out = NotStr(''' + + + + + +''') +icon_sticker = NotStr(''' + + + + +''') +icon_arrows_join = NotStr(''' + + + + + +''') +icon_road_sign = NotStr(''' + + + + + +''') +icon_shopping_cart_plus = NotStr(''' + + + + + + + +''') +icon_currency_krone_danish = NotStr(''' + + + + + + + + +''') +icon_brand_booking = NotStr(''' + + + + + +''') +icon_crosshair = NotStr(''' + + + + + + + + +''') +icon_layout_grid = NotStr(''' + + + + + + +''') +icon_zodiac_leo = NotStr(''' + + + + + + + +''') +icon_border_outer = NotStr(''' + + + + + + + + +''') +icon_brand_telegram = NotStr('''''') +icon_menu2 = NotStr(''' + + + + + +''') +icon_brand_producthunt = NotStr(''' + + + + +''') +icon_arrow_autofit_up = NotStr(''' + + + + + +''') +icon_tool = NotStr('''''') +icon_headphones_off = NotStr(''' + + + + + + +''') +icon_drag_drop = NotStr(''' + + + + + + + + + + + +''') +icon_file_search = NotStr(''' + + + + + + +''') +icon_wifi2 = NotStr(''' + + + + + +''') +icon_shoe = NotStr(''' + + + + + + +''') +icon_percentage = NotStr(''' + + + + + +''') +icon_rotate_dot = NotStr(''' + + + + +''') +icon_circle_square = NotStr(''' + + + + +''') +icon_trident = NotStr(''' + + + + +''') +icon_mood_smile = NotStr(''' + + + + + + +''') +icon_brand_tripadvisor = NotStr(''' + + + + + + + + +''') +icon_bus = NotStr(''' + + + + + + + + + +''') +icon_droplet_half = NotStr(''' + + + + +''') +icon_ladder = NotStr(''' + + + + + + + + +''') +icon_wave_saw_tool = NotStr('''''') +icon_chevrons_left = NotStr(''' + + + + +''') +icon_shield_chevron = NotStr(''' + + + + +''') +icon_gps = NotStr(''' + + + + +''') +icon_cash = NotStr(''' + + + + + +''') +icon_record_mail = NotStr(''' + + + + + +''') +icon_phone_incoming = NotStr(''' + + + + + +''') +icon_template = NotStr(''' + + + + + + + +''') +icon_rainbow = NotStr(''' + + + + + +''') +icon_heartbeat = NotStr(''' + + + + +''') +icon_shield_lock = NotStr(''' + + + + + +''') +icon_router = NotStr(''' + + + + + + + + +''') +icon_ban = NotStr(''' + + + + +''') +icon_brightness_down = NotStr(''' + + + + + + + + + + + +''') +icon_building_skyscraper = NotStr(''' + + + + + + + + + +''') +icon_battery_eco = NotStr(''' + + + + + +''') +icon_brand_yahoo = NotStr(''' + + + + + + + + + +''') +icon_caret_left = NotStr('''''') +icon_building = NotStr(''' + + + + + + + + + + +''') +icon_bandage = NotStr(''' + + + + + + + +''') +icon_brand_react_native = NotStr(''' + + + + + + + + + +''') +icon_repeat = NotStr(''' + + + + +''') +icon_ice_skating = NotStr(''' + + + + + + +''') +icon_compass = NotStr(''' + + + + + + + + +''') +icon_file_info = NotStr(''' + + + + + + +''') +icon_math_function = NotStr(''' + + + + + + +''') +icon_brand_dribbble = NotStr(''' + + + + + + +''') +icon_temperature = NotStr(''' + + + + +''') +icon_float_none = NotStr(''' + + + + + +''') +icon_bulb_off = NotStr(''' + + + + +''') +icon_keyboard_show = NotStr(''' + + + + + + + + + + + +''') +icon_cloud = NotStr('''''') +icon_arrow_big_right = NotStr('''''') +icon_building_arch = NotStr(''' + + + + + +''') +icon_layers_subtract = NotStr(''' + + + + +''') +icon_snowflake = NotStr(''' + + + + + + + + +''') +icon_dog_bowl = NotStr(''' + + + + + +''') +icon_letter_w = NotStr('''''') +icon_currency_bitcoin = NotStr(''' + + + + + + + + + +''') +icon_brand_html5 = NotStr(''' + + + + +''') +icon_package = NotStr(''' + + + + + + + +''') +icon_corner_left_down = NotStr('''''') +icon_vector_beizer2 = NotStr(''' + + + + + + + + + +''') +icon_currency_yen = NotStr(''' + + + + + +''') +icon_search = NotStr(''' + + + + +''') +icon_brand_instagram = NotStr(''' + + + + + +''') +icon_tent = NotStr('''''') +icon_arrows_diagonal_minimize = NotStr(''' + + + + + + +''') +icon_physotherapist = NotStr(''' + + + + + + + + +''') +icon_sleigh = NotStr(''' + + + + + + +''') +icon_row_insert_bottom = NotStr(''' + + + + + +''') +icon_italic = NotStr(''' + + + + + +''') +icon_arrow_forward = NotStr('''''') +icon_switch = NotStr(''' + + + + + + + +''') +icon_shopping_cart_discount = NotStr(''' + + + + + + + + + +''') +icon_git_pull_request_closed = NotStr(''' + + + + + + + + +''') +icon_device_floppy = NotStr(''' + + + + + +''') +icon_details = NotStr(''' + + + + +''') +icon_user_exclamation = NotStr(''' + + + + + + +''') +icon_no_creative_commons = NotStr(''' + + + + + + + +''') +icon_dice = NotStr(''' + + + + + + + +''') +icon_helicopter_landing = NotStr(''' + + + + + + +''') +icon_route = NotStr(''' + + + + + +''') +icon_sofa = NotStr(''' + + + + + +''') +icon_arrow_left_square = NotStr(''' + + + + + +''') +icon_building_castle = NotStr(''' + + + + +''') +icon_world_latitude = NotStr(''' + + + + + + +''') +icon_layout_sidebar_left_expand = NotStr(''' + + + + + +''') +icon_photo = NotStr(''' + + + + + + +''') +icon_key = NotStr(''' + + + + + + +''') +icon_mailbox = NotStr(''' + + + + + +''') +icon_tilt_shift = NotStr(''' + + + + + + + + + + + +''') +icon_salt = NotStr(''' + + + + + + + +''') +icon_circle_minus = NotStr(''' + + + + +''') +icon_pig = NotStr(''' + + + + +''') +icon_bell_minus = NotStr(''' + + + + + +''') +icon_minus = NotStr('''''') +icon_bible = NotStr(''' + + + + + + +''') +icon_feather = NotStr(''' + + + + +''') +icon_phone_call = NotStr(''' + + + + + +''') +icon_zodiac_capricorn = NotStr(''' + + + + + +''') +icon_speakerphone = NotStr(''' + + + + + +''') +icon_column_insert_left = NotStr(''' + + + + + +''') +icon_border_radius = NotStr(''' + + + + + + + + + + + + + + +''') +icon_star_half = NotStr('''''') +icon_radius_top_left = NotStr('''''') +icon_layout_align_left = NotStr(''' + + + + +''') +icon_currency_zloty = NotStr(''' + + + + + +''') +icon_affiliate = NotStr(''' + + + + + + + + +''') +icon_triangle_off = NotStr(''' + + + + +''') +icon_writing = NotStr(''' + + + + + +''') +icon_camera_selfie = NotStr(''' + + + + + + +''') +icon_map = NotStr(''' + + + + + +''') +icon_heart_rate_monitor = NotStr(''' + + + + + + + +''') +icon_exclamation_mark = NotStr(''' + + + + +''') +icon_planet = NotStr(''' + + + + +''') +icon_corner_right_down_double = NotStr(''' + + + + +''') +icon_drag_drop2 = NotStr(''' + + + + + + + + + + +''') +icon_world_upload = NotStr(''' + + + + + + + + +''') +icon_ad = NotStr(''' + + + + + + +''') +icon_building_cottage = NotStr(''' + + + + + + +''') +icon_layout_align_bottom = NotStr(''' + + + + +''') +icon_receipt2 = NotStr(''' + + + + +''') +icon_files_off = NotStr(''' + + + + + + +''') +icon_folders = NotStr(''' + + + + +''') +icon_info_square = NotStr(''' + + + + + +''') +icon_dots_diagonal = NotStr(''' + + + + + +''') +icon_layers_union = NotStr('''''') +icon_bookmark_off = NotStr(''' + + + + +''') +icon_battery_automotive = NotStr(''' + + + + + + + + +''') +icon_brand_lastfm = NotStr('''''') +icon_bread = NotStr('''''') +icon_brand_vk = NotStr(''' + + + + + +''') +icon_command = NotStr('''''') +icon_nfc = NotStr(''' + + + + + +''') +icon_cash_banknote_off = NotStr(''' + + + + + + + +''') +icon_cloud_lock_open = NotStr(''' + + + + + +''') +icon_car_crane = NotStr(''' + + + + + + + + + +''') +icon_h1 = NotStr(''' + + + + + + + + + + +''') +icon_lock_square = NotStr(''' + + + + + +''') +icon_star_off = NotStr(''' + + + + +''') +icon_receipt_off = NotStr(''' + + + + + + + + +''') +icon_chart_area = NotStr(''' + + + + +''') +icon_credit_card_off = NotStr(''' + + + + + + + + + +''') +icon_cloud_download = NotStr(''' + + + + + +''') +icon_mood_suprised = NotStr(''' + + + + + + +''') +icon_currency_dollar_singapore = NotStr(''' + + + + + + +''') +icon_mood_cry = NotStr(''' + + + + + + + +''') +icon_forms = NotStr(''' + + + + + + + + +''') +icon_contrast2 = NotStr(''' + + + + +''') +icon_arrow_autofit_width = NotStr(''' + + + + + + + +''') +icon_access_point = NotStr(''' + + + + + + + +''') +icon_trash_off = NotStr(''' + + + + + + + + + +''') +icon_crown = NotStr('''''') +icon_circle8 = NotStr(''' + + + + + +''') +icon_brand_firebase = NotStr(''' + + + + + +''') +icon_windmill = NotStr(''' + + + + + + +''') +icon_plant2 = NotStr(''' + + + + + + + +''') +icon_directions = NotStr(''' + + + + + + + +''') +icon_settings = NotStr(''' + + + + +''') +icon_arrow_autofit_right = NotStr(''' + + + + + +''') +icon_layout_align_top = NotStr(''' + + + + +''') +icon_slideshow = NotStr(''' + + + + + + + + + +''') +icon_peace = NotStr(''' + + + + + + +''') +icon_space = NotStr('''''') +icon_separator_horizontal = NotStr(''' + + + + + +''') +icon_tabler2_fa = NotStr(''' + + + + + + + +''') +icon_number4 = NotStr('''''') +icon_chart_arrows_vertical = NotStr(''' + + + + + + + + + +''') +icon_git_branch = NotStr(''' + + + + + + + + +''') +icon_chart_bubble = NotStr(''' + + + + + +''') +icon_pizza = NotStr(''' + + + + + + +''') +icon_corner_down_right_double = NotStr(''' + + + + +''') +icon_octagon_off = NotStr(''' + + + + +''') +icon_hand_middle_finger = NotStr(''' + + + + + + +''') +icon_rotate = NotStr('''''') +icon_polaroid = NotStr(''' + + + + + + + +''') +icon_arrows_up_right = NotStr(''' + + + + + +''') +icon_tag_off = NotStr(''' + + + + + +''') +icon_brand_bootstrap = NotStr(''' + + + + + +''') +icon_notebook = NotStr(''' + + + + + +''') +icon_box_multiple1 = NotStr(''' + + + + + +''') +icon_paw = NotStr(''' + + + + + + + +''') +icon_smoking = NotStr(''' + + + + + +''') +icon_currency_euro = NotStr(''' + + + + +''') +icon_loader_quarter = NotStr(''' + + + + + +''') +icon_brand_loom = NotStr(''' + + + + + + +''') +icon_user_plus = NotStr(''' + + + + + +''') +icon_golf = NotStr(''' + + + + +''') +icon_phone_plus = NotStr(''' + + + + +''') +icon_bell_ringing2 = NotStr(''' + + + + +''') +icon_playlist_x = NotStr(''' + + + + + + + +''') +icon_armchair2 = NotStr(''' + + + + + + + +''') +icon_file_alert = NotStr(''' + + + + + + +''') +icon_chevrons_down_right = NotStr(''' + + + + +''') +icon_number8 = NotStr(''' + + + + +''') +icon_forbid = NotStr(''' + + + + +''') +icon_switch2 = NotStr(''' + + + + + + +''') +icon_brand_mastercard = NotStr(''' + + + + + +''') +icon_calendar_stats = NotStr(''' + + + + + + + + +''') +icon_diamond = NotStr(''' + + + + +''') +icon_align_justified = NotStr(''' + + + + + +''') +icon_lock_open = NotStr(''' + + + + + +''') +icon_square_check = NotStr(''' + + + + +''') +icon_viewport_narrow = NotStr(''' + + + + + + +''') +icon_location = NotStr('''''') +icon_brand_edge = NotStr(''' + + + + + + +''') +icon_ear = NotStr(''' + + + + +''') +icon_arrow_left_circle = NotStr(''' + + + + + +''') +icon_brand_uber = NotStr(''' + + + + + +''') +icon_highlight = NotStr(''' + + + + + + +''') +icon_refresh_dot = NotStr(''' + + + + + +''') +icon_hammer = NotStr(''' + + + + +''') +icon_plane_arrival = NotStr(''' + + + + +''') +icon_microphone_off = NotStr(''' + + + + + + + +''') +icon_chevrons_down = NotStr(''' + + + + +''') +icon_arrow_up_right = NotStr(''' + + + + +''') +icon_plane_inflight = NotStr(''' + + + + +''') +icon_brand_windows = NotStr(''' + + + + + +''') +icon_dimensions = NotStr(''' + + + + + + + + + +''') +icon_arrow_bottom_bar = NotStr(''' + + + + + +''') +icon_vocabulary = NotStr(''' + + + + + + + + + +''') +icon_printer = NotStr(''' + + + + + +''') +icon_number9 = NotStr(''' + + + + +''') +icon_new_section = NotStr(''' + + + + + +''') +icon_components = NotStr(''' + + + + + + +''') +icon_tag = NotStr(''' + + + + +''') +icon_layout_cards = NotStr(''' + + + + +''') +icon_currency_krone_swedish = NotStr(''' + + + + + + + +''') +icon_border_style = NotStr(''' + + + + + + + + + + +''') +icon_barcode = NotStr(''' + + + + + + + + + + +''') +icon_puzzle2 = NotStr(''' + + + + + + + +''') +icon_sun_off = NotStr(''' + + + + + +''') +icon_fold_up = NotStr(''' + + + + + + + +''') +icon_copy = NotStr(''' + + + + +''') +icon_chart_dots = NotStr(''' + + + + + + + + +''') +icon_forbid2 = NotStr(''' + + + + +''') +icon_currency_shekel = NotStr(''' + + + + +''') +icon_hourglass = NotStr(''' + + + + + + +''') +icon_meat = NotStr(''' + + + + + + +''') +icon_tir = NotStr(''' + + + + + + + +''') +icon_corner_down_left = NotStr('''''') +icon_comet = NotStr(''' + + + + + + +''') +icon_moon = NotStr('''''') +icon_bell_ringing = NotStr(''' + + + + + + +''') +icon_player_play = NotStr('''''') +icon_hand_move = NotStr(''' + + + + + + + + +''') +icon_sort_ascending = NotStr(''' + + + + + + + +''') +icon_language_hiragana = NotStr(''' + + + + + + + +''') +icon_letter_p = NotStr('''''') +icon_toilet_paper = NotStr(''' + + + + + + + +''') +icon_browser_plus = NotStr(''' + + + + + + + +''') +icon_building_bank = NotStr(''' + + + + + + + + + + +''') +icon_table_export = NotStr('''''') +icon_letter_case_upper = NotStr(''' + + + + + + +''') +icon_bold = NotStr(''' + + + + +''') +icon_layout_sidebar_right = NotStr(''' + + + + +''') +icon_battery4 = NotStr(''' + + + + + + + +''') +icon_letter_o = NotStr('''''') +icon_axe = NotStr(''' + + + + +''') +icon_trees = NotStr(''' + + + + + + + + +''') +icon_brand_messenger = NotStr(''' + + + + +''') +icon_umbrella = NotStr(''' + + + + +''') +icon_file_certificate = NotStr(''' + + + + + + +''') +icon_stars = NotStr(''' + + + + + +''') +icon_stack = NotStr(''' + + + + +''') +icon_letter_case = NotStr(''' + + + + + + +''') +icon_letter_m = NotStr('''''') +icon_user_x = NotStr(''' + + + + + +''') +icon_circle_half_vertical = NotStr(''' + + + + +''') +icon_id_badge = NotStr(''' + + + + + + +''') +icon_layout_sidebar_right_expand = NotStr(''' + + + + + +''') +icon_math = NotStr(''' + + + + +''') +icon_alert_circle = NotStr(''' + + + + + +''') +icon_badge = NotStr('''''') +icon_phone_pause = NotStr(''' + + + + + +''') +icon_beach = NotStr(''' + + + + + + + +''') +icon_caret_right = NotStr('''''') +icon_sailboat = NotStr(''' + + + + + + +''') +icon_grip_horizontal = NotStr(''' + + + + + + + + +''') +icon_fence = NotStr(''' + + + + + +''') +icon_arrows_double_se_nw = NotStr(''' + + + + + + +''') +icon_box_multiple8 = NotStr(''' + + + + + + +''') +icon_bucket = NotStr(''' + + + + +''') +icon_brand_google_drive = NotStr(''' + + + + + +''') +icon_sitemap = NotStr(''' + + + + + + + +''') +icon_chevrons_right = NotStr(''' + + + + +''') +icon_brand_google_play = NotStr(''' + + + + + +''') +icon_folder_minus = NotStr(''' + + + + +''') +icon_brand_steam = NotStr(''' + + + + +''') +icon_mist = NotStr(''' + + + + + + +''') +icon_puzzle = NotStr('''''') +icon_mood_confuzed = NotStr(''' + + + + + + +''') +icon_brackets = NotStr(''' + + + + +''') +icon_square_half = NotStr(''' + + + + + + + + +''') +icon_building_church = NotStr(''' + + + + + + + +''') +icon_chart_candle = NotStr(''' + + + + + + + + + + + +''') +icon_file_digit = NotStr(''' + + + + + + +''') +icon_atom2 = NotStr(''' + + + + + + + + + +''') +icon_dots_circle_horizontal = NotStr(''' + + + + + + +''') +icon_triangle_square_circle = NotStr(''' + + + + + +''') +icon_trending_down = NotStr(''' + + + + +''') +icon_trademark = NotStr(''' + + + + +''') +icon_asterisk_simple = NotStr(''' + + + + + + + +''') +icon_stack3 = NotStr(''' + + + + + + +''') +icon_refresh = NotStr(''' + + + + +''') +icon_building_fortress = NotStr(''' + + + + + + + + + +''') +icon_shopping_cart_x = NotStr(''' + + + + + + + + +''') +icon_direction_horizontal = NotStr(''' + + + + +''') +icon_file_like = NotStr(''' + + + + + + +''') +icon_report_search = NotStr(''' + + + + + + + + + +''') +icon_mood_kid = NotStr(''' + + + + + + + +''') +icon_receipt = NotStr('''''') +icon_arrows_right = NotStr(''' + + + + + + +''') +icon_folder = NotStr('''''') +icon_h6 = NotStr(''' + + + + + + + + + + + +''') +icon_activity = NotStr('''''') +icon_file_off = NotStr(''' + + + + +''') +icon_letter_r = NotStr(''' + + + + +''') +icon_radius_bottom_right = NotStr('''''') +icon_arrow_left_bar = NotStr(''' + + + + + +''') +icon_layout_sidebar_left_collapse = NotStr(''' + + + + + +''') +icon_arrow_down = NotStr(''' + + + + + +''') +icon_brand_figma = NotStr(''' + + + + + +''') +icon_ambulance = NotStr(''' + + + + + + +''') +icon_chevron_up_right = NotStr('''''') +icon_panorama_vertical = NotStr('''''') +icon_briefcase = NotStr(''' + + + + + + +''') +icon_coffee = NotStr(''' + + + + + + + +''') +icon_zodiac_taurus = NotStr(''' + + + + +''') +icon_brand_behance = NotStr(''' + + + + + + +''') +icon_hand_three_fingers = NotStr(''' + + + + + + +''') +icon_typography = NotStr(''' + + + + + + + +''') +icon_brand_flickr = NotStr(''' + + + + +''') +icon_brand_docker = NotStr(''' + + + + + + + + + + + +''') +icon_brand_twitter = NotStr('''''') +icon_book2 = NotStr(''' + + + + + +''') +icon_headset = NotStr(''' + + + + + + +''') +icon_letter_s = NotStr('''''') +icon_letter_n = NotStr('''''') +icon_message_report = NotStr(''' + + + + + +''') +icon_arrow_right_bar = NotStr(''' + + + + + +''') +icon_arrow_autofit_down = NotStr(''' + + + + + +''') +icon_volume = NotStr(''' + + + + + +''') +icon_language_katakana = NotStr(''' + + + + + + +''') +icon_grid_dots = NotStr(''' + + + + + + + + + + + +''') +icon_file_download = NotStr(''' + + + + + + +''') +icon_cross = NotStr('''''') +icon_power = NotStr(''' + + + + +''') +icon_tallymark1 = NotStr('''''') +icon_arrow_down_right_circle = NotStr(''' + + + + + +''') +icon_brand_sketch = NotStr('''''') +icon_virus_search = NotStr(''' + + + + + + + + + + + + +''') +icon_dashboard = NotStr(''' + + + + + +''') +icon_currency_riyal = NotStr(''' + + + + + +''') +icon_face_id = NotStr(''' + + + + + + + + + +''') +icon_lemon2 = NotStr('''''') +icon_arrow_wave_right_up = NotStr(''' + + + + +''') +icon_arrow_down_left_circle = NotStr(''' + + + + + +''') +icon_box_margin = NotStr(''' + + + + + + + + + + + + + + + + + + + +''') +icon_arrow_bar_to_right = NotStr(''' + + + + + + +''') +icon_brand_python = NotStr(''' + + + + + + + +''') +icon_grid_pattern = NotStr(''' + + + + + + + +''') +icon_relation_one_to_one = NotStr(''' + + + + + + + +''') +icon_arrows_double_sw_ne = NotStr(''' + + + + + + +''') +icon_sort_descending2 = NotStr(''' + + + + + + +''') +icon_letter_v = NotStr('''''') +icon_braces = NotStr(''' + + + + +''') +icon_photo_off = NotStr(''' + + + + + + + +''') +icon_corner_right_up = NotStr('''''') +icon_premium_rights = NotStr(''' + + + + + + +''') +icon_cup = NotStr(''' + + + + + + +''') +icon_filter = NotStr('''''') +icon_bottle = NotStr(''' + + + + + +''') +icon_bug = NotStr(''' + + + + + + + + + + + +''') +icon_plug = NotStr(''' + + + + + + +''') +icon_ruler = NotStr(''' + + + + + + + + + +''') +icon_arrow_bar_down = NotStr(''' + + + + + + +''') +icon_currency_renminbi = NotStr(''' + + + + + + +''') +icon_device_watch_stats2 = NotStr(''' + + + + + + +''') +icon_currency_lira = NotStr(''' + + + + + +''') +icon_atom = NotStr(''' + + + + + +''') +icon_robot = NotStr(''' + + + + + + + + +''') +icon_chevron_down_left = NotStr('''''') +icon_ball_football_off = NotStr(''' + + + + + + + + + + +''') +icon_swimming = NotStr(''' + + + + + +''') +icon_circle = NotStr('''''') +icon_menu = NotStr(''' + + + + +''') +icon_arrow_down_left = NotStr(''' + + + + +''') +icon_virus_off = NotStr(''' + + + + + + + + + + + + +''') +icon_wifi_off = NotStr(''' + + + + + + + +''') +icon_number6 = NotStr(''' + + + + +''') +icon_circle_off = NotStr(''' + + + + +''') +icon_roller_skating = NotStr(''' + + + + + +''') +icon_map2 = NotStr(''' + + + + + + + +''') +icon_traffic_lights = NotStr(''' + + + + + + +''') +icon_screen_share_off = NotStr(''' + + + + + + + +''') +icon_movie = NotStr(''' + + + + + + + + + + +''') +icon_arrow_bottom_square = NotStr(''' + + + + + +''') +icon_file_minus = NotStr(''' + + + + + +''') +icon_circle_dotted = NotStr(''' + + + + + + + + + + + + + + +''') +icon_h4 = NotStr(''' + + + + + + + + + + +''') +icon_file_music = NotStr(''' + + + + + + +''') +icon_building_hospital = NotStr(''' + + + + + + + +''') +icon_car_crash = NotStr(''' + + + + + + + + +''') +icon_shield_x = NotStr(''' + + + + +''') +icon_brand_tidal = NotStr(''' + + + + + + +''') +icon_edit = NotStr(''' + + + + + +''') +icon_brightness_half = NotStr(''' + + + + +''') +icon_brand_sentry = NotStr('''''') +icon_arrow_up_left = NotStr(''' + + + + +''') +icon_arrows_right_left = NotStr(''' + + + + + + +''') +icon_olympics = NotStr(''' + + + + + + + +''') +icon_brand_snapchat = NotStr('''''') +icon_circle5 = NotStr(''' + + + + +''') +icon_map_pin = NotStr(''' + + + + +''') +icon_h5 = NotStr(''' + + + + + + + + + + +''') +icon_no_copyright = NotStr(''' + + + + + + +''') +icon_beer = NotStr(''' + + + + +''') +icon_float_left = NotStr(''' + + + + + + + +''') +icon_infinity = NotStr('''''') +icon_scan = NotStr(''' + + + + + + + +''') +icon_blur = NotStr(''' + + + + + + + + + +''') +icon_corner_up_left_double = NotStr(''' + + + + +''') +icon_currency_rubel = NotStr(''' + + + + +''') +icon_tree = NotStr(''' + + + + + + +''') +icon_hand_ring_finger = NotStr(''' + + + + + + +''') +icon_currency_leu = NotStr('''''') +icon_discount = NotStr(''' + + + + + + +''') +icon_arrows_diagonal2 = NotStr(''' + + + + + + +''') +icon_man = NotStr(''' + + + + +''') +icon_layout_grid_add = NotStr(''' + + + + + + +''') +icon_chevron_up = NotStr('''''') +icon_focus2 = NotStr(''' + + + + + + + + +''') +icon_anchor = NotStr(''' + + + + +''') +icon_milk = NotStr(''' + + + + + + +''') +icon_tools_kitchen2 = NotStr('''''') +icon_indent_decrease = NotStr(''' + + + + + + +''') +icon_asterisk = NotStr(''' + + + + + + + + +''') +icon_file_check = NotStr(''' + + + + + +''') +icon_brand_medium = NotStr(''' + + + + + + + + +''') +icon_tornado = NotStr(''' + + + + + + + +''') +icon_select = NotStr(''' + + + + +''') +icon_brand_soundcloud = NotStr(''' + + + + + + +''') +icon_letter_d = NotStr('''''') +icon_emphasis = NotStr(''' + + + + + + + +''') +icon_brush = NotStr(''' + + + + + + +''') +icon_cash_banknote = NotStr(''' + + + + + + +''') +icon_curly_loop = NotStr('''''') +icon_building_carousel = NotStr(''' + + + + + + + + + +''') +icon_brand_git = NotStr(''' + + + + + + + + + +''') +icon_grill = NotStr(''' + + + + + + + + + + +''') +icon_file_upload = NotStr(''' + + + + + + +''') +icon_currency_bath = NotStr(''' + + + + + + + +''') +icon_arrow_big_right_line = NotStr(''' + + + + +''') +icon_candle = NotStr(''' + + + + +''') +icon_mail = NotStr(''' + + + + +''') +icon_columns = NotStr(''' + + + + + + + + + + +''') +icon_smoking_no = NotStr(''' + + + + + + +''') +icon_currency_litecoin = NotStr(''' + + + + +''') +icon_box_padding = NotStr(''' + + + + + + + + + + + +''') +icon_zodiac_aries = NotStr(''' + + + + + +''') +icon_x = NotStr(''' + + + + +''') +icon_brand_disqus = NotStr(''' + + + + +''') +icon_clipboard_list = NotStr(''' + + + + + + + + +''') +icon_flower = NotStr(''' + + + + +''') +icon_currency_ripple = NotStr(''' + + + + + + + +''') +icon_tags = NotStr(''' + + + + + +''') +icon_marquee = NotStr('''''') +icon_first_aid_kit = NotStr(''' + + + + + + +''') +icon_grip_vertical = NotStr(''' + + + + + + + + +''') +icon_brand_github = NotStr('''''') +icon_letter_k = NotStr(''' + + + + + +''') +icon_h3 = NotStr(''' + + + + + + + + + + + +''') +icon_message_off = NotStr(''' + + + + +''') +icon_layout_navbar = NotStr(''' + + + + +''') +icon_zodiac_virgo = NotStr(''' + + + + + + +''') +icon_christmas_tree = NotStr(''' + + + + +''') +icon_eraser = NotStr(''' + + + + +''') +icon_file_text = NotStr(''' + + + + + + + +''') +icon_message_language = NotStr(''' + + + + + +''') +icon_building_factory = NotStr(''' + + + + + + +''') +icon_file_diff = NotStr(''' + + + + + + + +''') +icon_currency_rupee = NotStr(''' + + + + +''') +icon_social = NotStr(''' + + + + + + + + + +''') +icon_database_off = NotStr(''' + + + + + + +''') +icon_layers_intersect = NotStr(''' + + + + +''') +icon_thermometer = NotStr(''' + + + + + + + +''') +icon_arrow_autofit_left = NotStr(''' + + + + + +''') +icon_currency_dirham = NotStr(''' + + + + + + + +''') +icon_arrow_bar_to_left = NotStr(''' + + + + + + +''') +icon_letter_z = NotStr('''''') +icon_resize = NotStr(''' + + + + +''') +icon_arrow_bar_to_up = NotStr(''' + + + + + + +''') +icon_speedboat = NotStr(''' + + + + + +''') +icon_circle_x = NotStr(''' + + + + +''') +icon_glass = NotStr(''' + + + + + +''') +icon_zoom_cancel = NotStr(''' + + + + + + +''') +icon_messages_off = NotStr(''' + + + + + +''') +icon_leaf = NotStr(''' + + + + +''') +icon_point = NotStr('''''') +icon_letter_j = NotStr('''''') +icon_chart_donut2 = NotStr(''' + + + + + +''') +icon_box_multiple5 = NotStr(''' + + + + + +''') +icon_certificate = NotStr(''' + + + + + + + + +''') diff --git a/src/myfasthtml/icons/update_icons.py b/src/myfasthtml/icons/update_icons.py new file mode 100644 index 0000000..17eb806 --- /dev/null +++ b/src/myfasthtml/icons/update_icons.py @@ -0,0 +1,51 @@ +import os + +root_folder = "/home/kodjo/Dev/MyDocManager/src/frontend/node_modules/@sicons" + +import re + + +def pascal_to_snake(name: str) -> str: + """Convert a PascalCase or CamelCase string to snake_case.""" + # Insert underscore before capital letters (except the first one) + s1 = re.sub(r'(.)([A-Z][a-z]+)', r'\1_\2', name) + # Handle consecutive capital letters (like 'HTTPServer' -> 'http_server') + s2 = re.sub(r'([a-z0-9])([A-Z])', r'\1_\2', s1) + return s2.lower() + + +def create_icons(file, icon_folder): + for filename in os.listdir(f"{root_folder}/{icon_folder}"): + print("#", end='') + if not filename.endswith(".svg"): + continue + + with open(f"{root_folder}/{icon_folder}/{filename}", "r") as f_read: + svg_content = f_read.read().strip() + icon_name = "icon_" + pascal_to_snake(filename.split('.')[0]) + file.write(f"{icon_name} = NotStr('''{svg_content}''')\n") + + print("") + + +if __name__ == "__main__": + for folder in ["antd", "material", "carbon", "fa", "fluent", "ionicons4", "ionicons5", "tabler"]: + # for folder in ["antd"]: + print(f"Processing icons for {folder}") + with open(f"{folder}.py", "w") as f_write: + + # Add README.md content to the top of the file + if os.path.exists(f"{root_folder}/{folder}/README.md"): + with open(f"{root_folder}/{folder}/README.md", "r") as f_readme: + for line in f_readme: + if line.startswith("#"): + f_write.write(line) + else: + f_write.write(f"# {line}") + f_write.write("\n\n") + + # Add imports + f_write.write("from fastcore.basics import NotStr\n\n") + + # Add icons + create_icons(f_write, folder) diff --git a/src/myfasthtml/pages/LoginPage.py b/src/myfasthtml/pages/LoginPage.py new file mode 100644 index 0000000..4d6b99a --- /dev/null +++ b/src/myfasthtml/pages/LoginPage.py @@ -0,0 +1,86 @@ +from fasthtml.components import * + + +class LoginPage: + def __init__(self, settings_manager, error_message=None, success_message=None): + self.settings_manager = settings_manager + self.error_message = error_message + self.success_message = success_message + + def render(self): + message_alert = None + if self.error_message: + message_alert = Div( + P(self.error_message, cls="text-sm"), + cls="bg-error border border-red-400 text-red-700 px-4 py-3 rounded mb-4" + ) + elif self.success_message: + message_alert = Div( + P(self.success_message, cls="text-sm"), + cls="bg-success border border-green-400 text-green-700 px-4 py-3 rounded mb-4" + ) + + return Div( + # Page title + H1("Sign In", cls="text-3xl font-bold text-center mb-6"), + + # Login Form + Div( + # Message alert + message_alert if message_alert else "", + + # Email login form + Form( + # Email field + Div( + Label("Email", For="email", cls="block text-sm font-medium text-gray-700 mb-1"), + Input( + type="email", + id="email", + name="email", + placeholder="you@example.com", + required=True, + cls="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-2" + ), + cls="mb-4" + ), + + # Password field + Div( + Label("Password", For="password", cls="block text-sm font-medium text-gray-700 mb-1"), + Input( + type="password", + id="password", + name="password", + placeholder="Your password", + required=True, + cls="w-full px-3 py-2 border rounded-md focus:outline-none focus:ring-2" + ), + cls="mb-6" + ), + + # Submit button + Button( + "Sign In", + type="submit", + cls="btn w-full font-bold py-2 px-4 rounded" + ), + + action=ROUTE_ROOT + Routes.LoginByEmail, + method="post", + cls="mb-6" + ), + + # Registration link + Div( + P( + "Don't have an account? ", + A("Register here", href="/register", cls="text-blue-600 hover:underline"), + cls="text-sm text-gray-600 text-center" + ) + ), + + cls="p-8 rounded-lg shadow-2xl max-w-md mx-auto" + ) + + ) diff --git a/src/myfasthtml/pages/__init__.py b/src/myfasthtml/pages/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_commands.py b/tests/test_commands.py new file mode 100644 index 0000000..8aac933 --- /dev/null +++ b/tests/test_commands.py @@ -0,0 +1,25 @@ +import pytest + +from myfasthtml.core.commands import Command, CommandsManager + + +def callback(): + return "Hello World" + + +@pytest.fixture(autouse=True) +def test_reset_command_manager(): + CommandsManager.reset() + + +def test_i_can_create_a_command_with_no_params(): + command = Command('test', 'Command description', callback) + assert command.id is not None + assert command.name == 'test' + assert command.description == 'Command description' + assert command.execute() == "Hello World" + + +def test_command_are_registered(): + command = Command('test', 'Command description', callback) + assert CommandsManager.commands.get(str(command.id)) is command diff --git a/tests/test_integration_commands.py b/tests/test_integration_commands.py new file mode 100644 index 0000000..cefde9f --- /dev/null +++ b/tests/test_integration_commands.py @@ -0,0 +1,26 @@ +from fasthtml.fastapp import fast_app + +from myfasthtml.controls.button import mk_button +from myfasthtml.core.commands import Command +from myfasthtml.core.testclient import MyTestClient + + +def new_value(value): + return value + + +command = Command('test', 'TestingCommand', new_value, "this is my new value") + + +def test_i_can_trigger_a_command(): + test_app, rt = fast_app(default_hdrs=False) + user = MyTestClient(test_app) + + @rt('/') + def get(): return mk_button('button', command) + + user.open("/") + user.should_see("button") + b = user.find_element("button") + b.click() + user.should_see("this is my new value") diff --git a/tests/test_mytestclient.py b/tests/test_mytestclient.py new file mode 100644 index 0000000..1815a48 --- /dev/null +++ b/tests/test_mytestclient.py @@ -0,0 +1,326 @@ +import pytest +from fasthtml.components import Div +from fasthtml.fastapp import fast_app + +from myfasthtml.core.testclient import MyTestClient, TestableElement + + +def test_i_can_open_a_page(): + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): return "hello world" + + client.open("/") + + assert client.get_content() == "hello world" + + +def test_i_can_open_a_page_when_html(): + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): return Div("hello world") + + client.open("/") + + assert client.get_content() == ' \n \n \n FastHTML page\n \n \n \n
hello world
\n \n \n' + + +def test_i_cannot_open_a_page_not_defined(): + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + with pytest.raises(AssertionError) as exc_info: + client.open("/not_found") + + assert str(exc_info.value) == "Failed to open '/not_found'. status code=404 : reason='404 Not Found'" + +def test_i_can_see_text_in_plain_response(): + """Test that should_see() works with plain text responses.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "hello world" + + client.open("/").should_see("hello world") + + +def test_i_can_see_text_in_html_response(): + """Test that should_see() extracts visible text from HTML responses.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "

Welcome

This is a test

" + + client.open("/").should_see("Welcome").should_see("This is a test") + + +def test_i_can_see_text_ignoring_html_tags(): + """Test that should_see() searches in visible text only, not in HTML tags.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '
Content
' + + # Should find the visible text + client.open("/").should_see("Content") + + # Should NOT find text that's only in attributes/tags + with pytest.raises(AssertionError) as exc_info: + client.should_see("container") + + assert "Expected to see 'container' in page content but it was not found" in str(exc_info.value) + + +def test_i_cannot_see_text_that_is_not_present(): + """Test that should_see() raises AssertionError when text is not found.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "hello world" + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_see("goodbye") + + assert "Expected to see 'goodbye' in page content but it was not found" in str(exc_info.value) + assert "hello world" in str(exc_info.value) + + +def test_i_cannot_call_should_see_without_opening_page(): + """Test that should_see() raises ValueError if no page has been opened.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + with pytest.raises(ValueError) as exc_info: + client.should_see("anything") + + assert str(exc_info.value) == "No page content available. Call open() before should_see()." + + +def test_i_can_verify_text_is_not_present(): + """Test that should_not_see() works when text is absent.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "hello world" + + client.open("/").should_not_see("goodbye") + + +def test_i_cannot_use_should_not_see_when_text_is_present(): + """Test that should_not_see() raises AssertionError when text is found.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "hello world" + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_not_see("hello") + + error_message = str(exc_info.value) + assert "Expected NOT to see 'hello' in page content but it was found" in error_message + + +def test_i_cannot_call_should_not_see_without_opening_page(): + """Test that should_not_see() raises ValueError if no page has been opened.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + with pytest.raises(ValueError) as exc_info: + client.should_not_see("anything") + + assert str(exc_info.value) == "No page content available. Call open() before should_not_see()." + + +def test_i_can_chain_multiple_assertions(): + """Test that assertions can be chained together.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return "

Welcome

Content here

" + + # Chain multiple assertions + client.open("/").should_see("Welcome").should_see("Content").should_not_see("Error") + + +def test_i_can_see_element_context_when_text_should_not_be_seen(): + """Test that the HTML element containing the text is displayed with parent context.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

forbidden text

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_not_see("forbidden text") + + error_message = str(exc_info.value) + assert "Found in:" in error_message + assert '

forbidden text

' in error_message + assert '
' in error_message + + +def test_i_can_configure_parent_levels_in_constructor(): + """Test that parent_levels parameter controls the number of parent levels shown.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app, parent_levels=2) + + @rt('/') + def get(): + return '

error

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_not_see("error") + + error_message = str(exc_info.value) + assert '

error

' in error_message + assert '
' in error_message + assert '
' in error_message + + +def test_i_can_find_text_in_nested_elements(): + """Test that the smallest element containing the text is found in nested structures.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

nested text

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_not_see("nested text") + + error_message = str(exc_info.value) + # Should find the

element, not the outer

+ assert '

nested text

' in error_message + + +def test_i_can_find_fragmented_text_across_tags(): + """Test that text fragmented across multiple tags is correctly found.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

hello world

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").should_not_see("hello world") + + error_message = str(exc_info.value) + # Should find the parent

element that contains the full text + assert '

' in error_message + + +def test_i_do_not_find_text_in_html_attributes(): + """Test that text in HTML attributes is not considered as visible text.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

Success
' + + # "error" is in attributes but not in visible text + client.open("/").should_not_see("error") + + # "Success" is in visible text + with pytest.raises(AssertionError): + client.should_not_see("Success") + + +@pytest.mark.parametrize("selector,expected_tag", [ + ("#unique-id", '
div", '
'), + ('[data-author*="john"]', ' + Home + About +
+ Content +
+
+ ''' + + element = client.open("/").find_element(selector) + + assert element is not None + assert isinstance(element, TestableElement) + assert expected_tag in element.html_fragment + + +def test_i_cannot_find_element_when_none_exists(): + """Test that find_element raises AssertionError when no element matches.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

Content

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").find_element("#non-existent") + + assert "No element found matching selector '#non-existent'" in str(exc_info.value) + + +def test_i_cannot_find_element_when_multiple_exist(): + """Test that find_element raises AssertionError when multiple elements match.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + @rt('/') + def get(): + return '

First

Second

Third

' + + with pytest.raises(AssertionError) as exc_info: + client.open("/").find_element(".text") + + error_message = str(exc_info.value) + assert "Found 3 elements matching selector '.text'" in error_message + assert "Expected exactly 1" in error_message + + +def test_i_cannot_call_find_element_without_opening_page(): + """Test that find_element raises ValueError if no page has been opened.""" + test_app, rt = fast_app(default_hdrs=False) + client = MyTestClient(test_app) + + with pytest.raises(ValueError) as exc_info: + client.find_element("#any-selector") + + assert str(exc_info.value) == "No page content available. Call open() before find_element()."