pax_global_header00006660000000000000000000000064146531614250014521gustar00rootroot0000000000000052 comment=0b178a9d9face523611fb916440b418c416c05a2 sphinx-design-0.6.1/000077500000000000000000000000001465316142500143055ustar00rootroot00000000000000sphinx-design-0.6.1/.github/000077500000000000000000000000001465316142500156455ustar00rootroot00000000000000sphinx-design-0.6.1/.github/dependabot.yml000066400000000000000000000011301465316142500204700ustar00rootroot00000000000000# To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - package-ecosystem: github-actions directory: / commit-message: prefix: ⬆️ schedule: interval: monthly - package-ecosystem: pip directory: / commit-message: prefix: ⬆️ schedule: interval: monthly sphinx-design-0.6.1/.github/workflows/000077500000000000000000000000001465316142500177025ustar00rootroot00000000000000sphinx-design-0.6.1/.github/workflows/ci.yml000066400000000000000000000066141465316142500210270ustar00rootroot00000000000000name: continuous-integration on: push: branches: [main] tags: - 'v*' pull_request: jobs: pre-commit: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python 3.9 uses: actions/setup-python@v5 with: python-version: 3.9 - uses: pre-commit/action@v3.0.1 tests: strategy: fail-fast: false matrix: os: [ubuntu-latest] python-version: ["3.9", "3.10", "3.11", "3.12"] sphinx-version: ["~=7.0"] extras: ["testing"] include: - os: ubuntu-latest python-version: "3.9" sphinx-version: "~=6.0" extras: "testing" - os: ubuntu-latest python-version: "3.10" sphinx-version: "~=8.0" extras: "testing-no-myst" # TODO myst does not yet support Sphinx 8.0 - os: windows-latest python-version: "3.9" sphinx-version: "~=7.0" extras: "testing" runs-on: ${{ matrix.os }} name: Tests (py${{ matrix.python-version }}, Sphinx${{ matrix.sphinx-version }}, on ${{ matrix.os }}) steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: pip - name: Install dependencies run: | python -m pip install --upgrade pip pip install --upgrade "sphinx${{ matrix.sphinx-version }}" -e .[${{ matrix.extras}}] - name: Run pytest run: | pytest --cov=sphinx_design --cov-report=xml --cov-report=term-missing - name: Upload to Codecov if: matrix.python-version == '3.9' && matrix.os == 'ubuntu-latest' uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} name: pytests flags: pytests file: ./coverage.xml fail_ci_if_error: true docs-build-format: runs-on: ubuntu-latest strategy: matrix: format: [html, latex, man] steps: - uses: actions/checkout@v4 - name: Set up Python 3.9 uses: actions/setup-python@v5 with: python-version: "3.9" cache: pip - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e .[rtd] - name: Build documentation run: sphinx-build -nW --keep-going -b ${{ matrix.format }} docs/ docs/_build/${{ matrix.format }} # https://github.com/marketplace/actions/alls-green#why check: # This job does nothing and is only used for the branch protection if: always() needs: - pre-commit - tests - docs-build-format runs-on: ubuntu-latest steps: - name: Decide whether the needed jobs succeeded or failed uses: re-actors/alls-green@release/v1 with: jobs: ${{ toJSON(needs) }} publish: name: Publish to PyPi needs: [pre-commit, tests] if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') runs-on: ubuntu-latest steps: - name: Checkout source uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: 3.9 - name: install flit run: | pip install flit~=3.4 - name: Build and publish run: | flit publish env: FLIT_USERNAME: __token__ FLIT_PASSWORD: ${{ secrets.PYPI_KEY }} sphinx-design-0.6.1/.gitignore000066400000000000000000000040411465316142500162740ustar00rootroot00000000000000# OS files .DS_Store # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: # .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ .vscode/ node_modules/ sphinx-design-0.6.1/.pre-commit-config.yaml000066400000000000000000000023761465316142500205760ustar00rootroot00000000000000# Install pre-commit hooks via # pre-commit install exclude: > (?x)^( \.vscode/settings\.json| tests/.*xml| tests/.*txt| )$ repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 hooks: - id: check-json - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.5.5 hooks: - id: ruff args: [--fix] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.11.1 hooks: - id: mypy additional_dependencies: [] - repo: local hooks: - id: css name: css description: Compile the SCSS/SASS files to CSS inside the python package files: \.(scss|sass)$ language: node additional_dependencies: ['sass@1.35.2'] # entry: sass entry: npm run css require_serial: true pass_filenames: false # args: [--style=compressed, --no-source-map, style/index.scss, sphinx_design/compiled/style.min.css] - id: tsc name: tsc (jsdoc) entry: tsc language: node files: \.(js)$ types_or: [javascript] args: [--allowJs, --noEmit, --strict] additional_dependencies: - typescript sphinx-design-0.6.1/.readthedocs.yml000066400000000000000000000003271465316142500173750ustar00rootroot00000000000000version: 2 build: os: ubuntu-22.04 tools: python: "3.10" python: install: - method: pip path: . extra_requirements: - rtd sphinx: builder: html fail_on_warning: true sphinx-design-0.6.1/CHANGELOG.md000066400000000000000000000175131465316142500161250ustar00rootroot00000000000000# Change Log ## 0.6.1 - 2024-08-02 - ⬆️ Update sphinx to >=6,<9 by {user}`chrisjsewell` in {pr}`212` - 👌 Reduce right-padding of dropdown title by {user}`chrisjsewell` in {pr}`198` ## 0.6.0 - 2024-05-23 ### Dependencies * ⬆️ Python v3.9-3.12 by {user}`chrisjsewell` in {pr}`186` * ⬆️ Octicon icons to v19.8.0 by {user}`ffvpor` in {pr}`171` ### New #### ✨ Create custom directives You can use the `sd_custom_directives` configuration option in your `conf.py` to add custom directives, with default option values: ```python sd_custom_directives = { "dropdown-syntax": { "inherit": "dropdown", "argument": "Syntax", "options": { "color": "primary", "icon": "code", }, } } ``` The key is the new directive name to add, and the value is a dictionary with the following keys: - `inherit`: The directive to inherit from (e.g. `dropdown`) - `argument`: The default argument (optional, only for directives that take a single argument) - `options`: A dictionary of default options for the directive (optional) by {user}`chrisjsewell` in {pr}`194` #### ✨ sync tabs by URL query parameters Synchronised tabs can now be selected by adding a query parameter to the URL, for that sync-group, such as `?code=python` for ```restructuredtext .. tab-set-code:: .. literalinclude:: snippet.py :language: python .. literalinclude:: snippet.js :language: javascript ``` The last selected tab key, per group, is also persisted to `SessionStorage` by {user}`mikemckiernan` and {user}`chrisjsewell` in {pr}`196` ### Improve * 👌 Use reference name by default for internal link cards by {user}`gabalafou` in {pr}`183` * 👌 Improve specificity of JS function name by {user}`danirus` in {pr}`153` * 👌 Remove duplicate CSS hashing for sphinx >= 7.1 by {user}`chrisjsewell` in {pr}`193` #### 👌 Improve `dropdown` title bar There are three visible changes: 1. The "default" behaviour of the right chevron is to go from right-facing (closed) to down-facing (open), instead of down-facing (closed) to up-facing (open). There is also a rotate transition on opening/closing. The old default behaviour can be retained by using the new `:chevron: down-up` directive option. 2. The prefix icon (optional), title text, and chevron state icon are now all better aligned 3. The top/bottom padding is now 0.5em instead of 1em The PR also introduces three new CSS variables to control font sizes of the dropdown: ```css --sd-fontsize-tabs-label: 1rem; --sd-fontsize-dropdown-title: 1rem; --sd-fontweight-dropdown-title: 700; ``` Internally, the HTML / CSS is changed, such that the title is now an `inline-flex` box, with three columns arranged with `justify-content: space-between`: | icon (optional) | text (`flex-grow: 1`) | state chevron | | -------------- | -------------------- | -------------- | | | | | Also, the state chevron was previously two distinct SVGs (with one hidden), but now is one that get rotated on open/close. by {user}`chrisjsewell` in {pr}`192` ### Fix * 🐛 Fix tab-item label with nested syntax by {user}`Praecordi` in {pr}`135` * 🐛 Fix do not close `input` tag by {user}`chrisjsewell` in {pr}`195` ### Internal * 📚 Update theme versions by {user}`chrisjsewell` in {pr}`189` * 📚 Make octicon list a table by {user}`chrisjsewell` in {pr}`188` * 📚 Add sphinx-immaterial to doc theme builds by {user}`chrisjsewell` in {pr}`190` * 📚 Change syntax dropdown color by {user}`chrisjsewell` in {pr}`191` * 🔧 Add FIPS compliant flag to md5 call by {user}`gabor-varga` in {pr}`162` * 🔧 define `build.os` for RTD to fix build by {user}`sciencewhiz` in {pr}`176` * 🔧 Move to ruff by {user}`chrisjsewell` in {pr}`185` **Full Changelog**: ## 0.5.0 - 2023-07-27 * ⬆️ Drop Python 3.7 support, by {user}`chrisjsewell` in {pr}`146` * ⬆️ UPGRADE: sphinx>=5,<8, by {user}`chrisjsewell` in {pr}`148` **Full Changelog**: ## v0.4.0 - 2023-04-13 **Full Changelog**: ### Enhancements made - Make default blue color a11y friendly. {pr}`124` ({user}`feanil`, {user}`choldgraf`) - Make card titles translatable {pr}`113` ({user}`jpmckinney`, {user}`chrisjsewell`) ### Version upgrades - Sphinx 6.x. {pr}`106` - Support for Python 3.11 {pr}`105` ### Contributors to this release The following people contributed discussions, new ideas, code and documentation contributions, and review. See [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports). ([GitHub contributors page for this release](https://github.com/executablebooks/sphinx-design/graphs/contributors?from=2022-08-22&to=2023-04-12&type=c)) ## v0.3.0 - 2022-08-22 - ⬆️ Update Materials Design Icons to v4.0.0-46-gc9e5528, thanks to {user}`2bndy5` ({pr}`69`) - 🐛 FIX: dropdown/tab-item `:name:` options ({pr}`91`) - 🐛 FIX: Docs build against non-html formats ({pr}`88`) - 👌 IMPROVE: Add card options `class-img-top`/`class-img-bottom` ({pr}`92`) - 👌 IMPROVE: Add `link-alt` to fix card link accessibility ({pr}`89`) - adds the `link-alt` option to `card` (and `grid-item-card`) directives, in order to assign a discernable name to the link (for screen readers). - 👌 IMPROVE: Make tab ids deterministic ({pr}`93`) - Use increasing indices, rather than UUIDs - 🔧 MAINTAIN: Fix docutils `PendingDeprecationWarning` ({pr}`94`) - 📚 DOCS: Update font awesome icons ({pr}`64`) **Full Changelog**: ## v0.2.0 - 2022-06-14 - ⬆️ Support Sphinx v5, drop v3 - ⬆️ Add Python 3.10 support **Full Changelog**: ## v0.1.0 - 2022-04-21 - ✨ NEW: Add material design icons roles, thanks to {user}`2bndy5` in {pr}`41` - ⬆️ UPGRADE: octicons to v16.1.1, thanks to {user}`pocek` in {pr}`43` - 🐛 FIX: Links in card titles by {user}`chrisjsewell` in {pr}`59` - 🐛 FIX: Exception on missing card link by {user}`chrisjsewell` in {pr}`60` - 🔧 MAINTAIN: Move from setuptools to flit for package build by {user}`chrisjsewell` in {pr}`58` - 🔧 MAINTAIN: Drop furo-specific stylesheet, thanks to {user}`pradyunsg` in {pr}`22` **Full Changelog**: ## v0.0.13 - 2021-10-27 ✨ NEW: add icon `far` role ({pr}`35`), thanks to {user}`OriolAbril` 👌 IMPROVE: Styling for tabs ({pr}`21`), thanks to {user}`pradyunsg` 👌 IMPROVE: Properly remove the border on dropdown card body ({pr}`23`), thanks to {user}`pradyunsg` 🐛 FIX: `sd-outline-*` classes color ({pr}`25`) ## v0.0.11 - 2021-09-08 ✨ NEW: Add `ref-type` option to `button-ref` directive ## v0.0.10 - 2021-08-08 ✨ NEW: Add `grid-item` directive `child-direction` and `child-align` options ✨ NEW: Add `card` directive `img-background` option ## v0.0.9 - 2021-06-08 ♻️ REFACTOR: `test_sd_hide_root_title` to `sd_hide_title` front-matter 👌 IMPROVE: dropdown chevrons ## v0.0.8 - 2021-06-08 ✨ NEW: Add `test_sd_hide_root_title` config option to hide the root title. 👌 IMPROVE: `sd-card-hover:hover` add scale 101% 📚 DOCS: Update landing page ## v0.0.7 - 2021-05-08 ✨ NEW: Add `reverse` option for `grid` directive ✨ NEW: Add animations ## v0.0.6 - 2021-04-08 ✨ NEW: Add `card-carousel` directive ## v0.0.5 - 2021-28-07 👌 IMPROVE: Make octicon's size variable ## v0.0.4 - 2021-28-07 👌 IMPROVE: Allow `auto` for grid columns ## v0.0.3 - 2021-26-07 👌 IMPROVE: Add more CSS classes and add documentation 📚 ## v0.0.2 - 2021-23-07 Improve documentation 📚 ## v0.0.1 - 2021-22-07 Initial release 🎉 sphinx-design-0.6.1/LICENSE000066400000000000000000000021131465316142500153070ustar00rootroot00000000000000MIT License Copyright (c) 2023 Chris Sewell Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. sphinx-design-0.6.1/README.md000066400000000000000000000060251465316142500155670ustar00rootroot00000000000000# sphinx-design [![Github-CI][github-ci]][github-link] [![Coverage Status][codecov-badge]][codecov-link] [![PyPI][pypi-badge]][pypi-link] A sphinx extension for designing beautiful, view size responsive web components. Created with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks. ## Usage Simply pip install `sphinx-design` and add the extension to your `conf.py`: ```python extensions = ["sphinx_design"] ``` ## Supported browsers - Chrome >= 60 - Firefox >= 60 - Firefox ESR - iOS >= 12 - Safari >= 12 - Explorer >= 12 (Mirrors: ) ## Theme support View the documentation in multiple themes: - [alabaster](https://sphinx-design.readthedocs.io/en/alabaster-theme) - [sphinx-book-theme](https://sphinx-design.readthedocs.io/en/sbt-theme) - [pydata-sphinx-theme](https://sphinx-design.readthedocs.io/en/pydata-theme) - [sphinx-rtd-theme](https://sphinx-design.readthedocs.io/en/rtd-theme) - [furo](https://sphinx-design.readthedocs.io/en/furo-theme) ## Comparison to sphinx-panels This package is an iteration on [sphinx-panels](https://github.com/executablebooks/sphinx-panels) and intends to replace it. See [Migrating from sphinx-panels](./docs/get_started.md) for more information. ## Development It is recommended to use [tox](https://tox.readthedocs.io/en/latest/) to run the tests and document builds. Run `tox -va` to see all the available tox environments. To run linting, formatting and SASS compilation, use [pre-commit](https://pre-commit.com/). `pre-commit run --all css` will run the SASS compiler, for which you will need [node](https://nodejs.org) and [npm](https://www.npmjs.com/) installed, or you can directly run `npm run css`. ## TODO - note design goal; to be flexible, but limit the amount of directive nesting required. This factors in to - card header/footer syntax? (don't really want to have to use separate directives for these, hence `^^^`/`+++` syntax) - auto-wrap `grid-item` and `tab-item`, if not already inside `grid` or `tab-set`? grids items cannot contain headers; is this in anyway possible with docutils structure? naming of directives/roles: standard prefix? why are cards setup with "word-wrap: break-word;"? handle latex Use autoprefixer when compiling SASS (see ) horizontal card (grid row inside card, picture on left) subtitle for card (see ) [github-ci]: https://github.com/executablebooks/sphinx-design/workflows/continuous-integration/badge.svg?branch=main [github-link]: https://github.com/executablebooks/sphinx-design [codecov-badge]: https://codecov.io/gh/executablebooks/sphinx-design/branch/main/graph/badge.svg [codecov-link]: https://codecov.io/gh/executablebooks/sphinx-design [pypi-badge]: https://img.shields.io/pypi/v/sphinx-design.svg [pypi-link]: https://pypi.org/project/sphinx-design sphinx-design-0.6.1/codecov.yml000066400000000000000000000002421465316142500164500ustar00rootroot00000000000000coverage: status: project: default: target: 85% threshold: 0.2% patch: default: target: 75% threshold: 0.2% sphinx-design-0.6.1/docs/000077500000000000000000000000001465316142500152355ustar00rootroot00000000000000sphinx-design-0.6.1/docs/_static/000077500000000000000000000000001465316142500166635ustar00rootroot00000000000000sphinx-design-0.6.1/docs/_static/furo.css000066400000000000000000000002601465316142500203460ustar00rootroot00000000000000body { --sd-fontsize-dropdown: var(--admonition-font-size); --sd-fontsize-dropdown-title: var(--admonition-title-font-size); --sd-fontweight-dropdown-title: 500; } sphinx-design-0.6.1/docs/_static/logo_square.svg000066400000000000000000000060031465316142500217230ustar00rootroot00000000000000 sphinx-design-0.6.1/docs/_static/logo_wide.svg000066400000000000000000000251001465316142500213520ustar00rootroot00000000000000 sphinx-design-0.6.1/docs/_static/sphinx_immaterial.css000066400000000000000000000010431465316142500231100ustar00rootroot00000000000000body { --sd-fontsize-dropdown: .64rem; --sd-fontsize-dropdown-title: .64rem; --sd-fontweight-dropdown-title: 700; } details.sd-dropdown { padding-left: 0; padding-right: 0; } summary.sd-summary-title::after { display: none; right: 0 !important; } summary.sd-summary-title::before { display: none; left: 0 !important; } summary.sd-summary-title { width: 100% !important; margin-left: 0; padding: .5em 1em !important; } summary.sd-summary-title svg.sd-octicon { max-width: none !important; } sphinx-design-0.6.1/docs/additional.md000066400000000000000000000031711465316142500176710ustar00rootroot00000000000000(special)= # Additional These are additional components that are not part of the standard Materials Design or Bootstrap systems. ## `article-info` This directive is used to display a block of information about an article, normally positioned just below the title of the article (shown below with non-standard outline). ```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: "Jul 24, 2021" :read-time: "5 min read" :class-container: sd-p-2 sd-outline-muted sd-rounded-1 ``` `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/article-info.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/article-info.txt :language: rst ``` ```` ````` The `author`, `date`, and `read-time` options are parsed as syntax, so you can use substitutions like: - `date` - MyST: `` :date: "{sub-ref}`today`" `` - RST: `:data: |today|` - `read-time` - MyST: `` :read-time: "{sub-ref}`wordcount-minutes` min read" `` ### options avatar : A URI (relative file path or URL) to an image for use as the avatar (a user portrait, logo or branded graphic). avatar-alt : Alternative text for the avatar. avatar-link : A URL to link to if the avatar icon is clicked. avatar-outline : A semantic color to use for the outline of the avatar. author : Text to display in the author of of the article. date : Text to display in the date of the article. read-time : Text to indicate the time to read the article. class-container : Additional CSS classes for the container element. class-avatar : Additional CSS classes for the avatar element. sphinx-design-0.6.1/docs/badges_buttons.md000066400000000000000000000176051465316142500205730ustar00rootroot00000000000000# Badges, Buttons & Icons {octicon}`rocket` (badges)= ## Badges Inline badges can be used as a labelling component. Badges are available in each semantic color, with filled and outline variants: - {bdg}`plain badge` - {bdg-primary}`primary`, {bdg-primary-line}`primary-line` - {bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line` - {bdg-success}`success`, {bdg-success-line}`success-line` - {bdg-info}`info`, {bdg-info-line}`info-line` - {bdg-warning}`warning`, {bdg-warning-line}`warning-line` - {bdg-danger}`danger`, {bdg-danger-line}`danger-line` - {bdg-light}`light`, {bdg-light-line}`light-line` - {bdg-dark}`dark`, {bdg-dark-line}`dark-line` `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/badge-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/badge-basic.txt :language: rst ``` ```` ````` `bdg-link-` and `bdg-ref-` variants are also available for use with links and references. The syntax is the same as for the `ref` role. {bdg-link-primary}`https://example.com` {bdg-link-primary-line}`explicit title ` {bdg-ref-primary}`badges` `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/badge-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/badge-link.txt :language: rst ``` ```` ````` See [Bootstrap badges](https://getbootstrap.com/docs/5.0/components/badge/) for more information, and related [Material Design chips](https://material.io/components/chip). (buttons)= ## Buttons Buttons allow users to navigate to external (`button-link`) / internal (`button-ref`) links with a single tap. ```{button-link} https://example.com ``` ```{button-link} https://example.com Button text ``` ```{button-link} https://example.com :color: primary :shadow: ``` ```{button-link} https://example.com :color: primary :outline: ``` ```{button-link} https://example.com :color: secondary :expand: ``` ```{button-ref} buttons :color: info ``` ```{button-ref} buttons :color: info Reference Button text ``` `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/button-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/button-link.txt :language: rst ``` ```` ````` Note that by default sphinx converts the content of references to raw text. For example `**Bold text**` with `ref-type` set to `ref` will be rendered without bold: ```{button-ref} buttons :ref-type: ref :color: primary **Bold text** ``` However, if using [myst-parser](https://myst-parser.readthedocs.io/), you can set the `ref-type` to `myst`, and the content will be properly rendered: ```{button-ref} buttons :ref-type: myst :color: primary **Bold text** ``` Use the `click-parent` option to make the button's parent container also clickable. :::{card} Card with an expanded button ```{button-link} https://example.com :color: info :expand: :click-parent: ``` ::: See the [Material Design](https://material.io/components/buttons) and [Bootstrap](https://getbootstrap.com/docs/5.0/components/buttons/) descriptions for further details. ### `button-link` and `button-ref` options ref-type (`button-ref` only) : Type of reference to use; `any` (default), `ref`, `doc`, or `myst` color : Set the color of the button (background and font). One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`. outline : Outline color variant align : Align the button on the page; `left`, `right`, `center` or `justify` expand : Expand to fit parent width click-parent : Make parent container also clickable tooltip : Add tooltip on hover shadow : Add shadow CSS class : Additional CSS classes (icons)= ## Inline Icons Inline icon roles are available for the [GitHub octicon](https://primer.style/octicons/), [Google Material Design Icons](https://github.com/google/material-design-icons), or [FontAwesome](https://fontawesome.com/icons?d=gallery&m=free) libraries. Octicon icons and Material icons are added as SVG's directly into the page with the `octicon` and `material-` roles. See below for the different flavors of Material Design Icons. By default the icon will be of height `1em` (i.e. the height of the font). A specific height can be set after a semi-colon (`;`) with units of either `px`, `em` or `rem`. Additional CSS classes can also be added to the SVG after a second semi-colon (`;`) delimiter. ### Octicon Icons A coloured icon: {octicon}`report;1em;sd-text-info`, some more text. ````{tab-set-code} ```{literalinclude} ./snippets/myst/icon-octicon.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/icon-octicon.txt :language: rst ``` ```` ````{dropdown} All Octicons :open: ```{_all-octicon} ``` ```` ### Material Design Icons Material Design icons come as several flavors. Each flavor represents a different role used in sphinx-design. These flavors are: - `material-regular` - `material-outlined` - `material-round` - `material-sharp` - `material-twotone` Not all icons are available for each flavor, but most are. Instead of displaying the 10660+ icons here, you are encouraged to browse the available icons from the [Material Design Icons' showcase](https://fonts.google.com/icons) hosted by Google. - A regular icon: {material-regular}`data_exploration;2em`, some more text - A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text. - A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text. - A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text. ````{tab-set-code} ```{literalinclude} ./snippets/myst/icon-material-design.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/icon-material-design.txt :language: rst ``` ```` ### FontAwesome Icons FontAwesome icons are added via the Fontawesome CSS classes. If the theme you are using does not already include the FontAwesome CSS, it should be loaded in your configuration from a [font-awesome CDN](https://cdnjs.com/libraries/font-awesome), with the [html_css_files](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files) option, e.g.: ```python html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" ] ``` Use either `fa` (deprecated in font-awesome v5), `fas`, `fab` or `far` for the role name. Note that not all regular style icons are free, `far` role only works with free ones. ````{warning} Since the FontAwesome icons are fetched directly from their distributed CSS, specifying a height/size to the `fa*` roles is not supported. However, you can always add your custom CSS class that controls the `font-size` property. If a height/size is supplied to a `fa*` role, then it will be interpreted as a CSS class. There can only be a maximum of 1 `;` in the `fa*` roles' arguments ```` ````{tab-set-code} ```markdown - An icon {fas}`spinner;sd-text-primary`, some more text. - An icon {fab}`github`, some more text. - An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text. - An icon {fas}`skull;sd-text-danger`, some more text. ``` ```rst - An icon :fas:`spinner;sd-text-primary`, some more text. - An icon :fab:`github`, some more text. - An icon :fab:`gitkraken;sd-text-success fa-xl`, some more text. - An icon :fas:`skull;sd-text-danger`, some more text. ``` ```` - An icon {fas}`spinner;sd-text-primary`, some more text. - An icon {fab}`github`, some more text. - An icon {fab}`gitkraken;sd-text-success fa-xl`, some more text. - An icon {fas}`skull;sd-text-danger`, some more text. By default, icons will only be output in HTML formats. But if you want FontAwesome icons to be output on LaTeX, using the [fontawesome package](https://ctan.org/pkg/fontawesome), you can add to your configuration: ```python sd_fontawesome_latex = True ``` sphinx-design-0.6.1/docs/cards.md000066400000000000000000000142351465316142500166600ustar00rootroot00000000000000(sd-cards)= # Cards Cards contain content and actions about a single subject. A card is a flexible and extensible content container, it can be formatted with components including headers and footers, titles and images. :::{card} Card Title Card content ::: See the [Material Design](https://material.io/components/cards) and [Bootstrap card](https://getbootstrap.com/docs/5.0/layout/grid/) descriptions for further details. `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-basic.txt :language: rst ``` ```` ````` All content before the first occurrence of three or more `^^^` is considered as a header, and all content after the final occurrence of three or more `+++` is considered as a footer: :::{card} Card Title Header ^^^ Card content +++ Footer ::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-head-foot.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-head-foot.txt :language: rst ``` ```` ````` When using cards in grids (see [`grid-item-card`](./grids.md)) footers can be aligned. ::::{grid} 2 :::{grid-item-card} Card Title Header ^^^ Card content +++ Footer ::: :::{grid-item-card} Card Title Header ^^^ Longer Card content +++ Footer ::: :::: ## Card images You can also add an image as the background of a card or at the top/bottom of the card, with the `img-background`, `img-top`, `img-bottom` options: :::::{grid} 2 3 3 4 ::::{grid-item} :::{card} Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: your desired alt text Text ::: :::: ::::{grid-item-card} Title :img-top: images/particle_background.jpg :img-alt: your desired alt text Header ^^^ Content +++ Footer :::: ::::{grid-item-card} Title :img-bottom: images/particle_background.jpg :img-alt: your desired alt text Header ^^^ Content +++ Footer :::: ::::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-images.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-images.txt :language: rst ``` ```` ````` (cards-clickable)= ## Clickable cards Using the `link` and `link-type` options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: :::{card} Clickable Card (external) :link: https://example.com :link-alt: example.com The entire card can be clicked to navigate to `https://example.com`. ::: :::{card} Clickable Card (internal) :link: cards-clickable :link-type: ref The entire card can be clicked to navigate to the `cards-clickable` reference target. ::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-link.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-link.txt :language: rst ``` ```` ````` The **external link** created above is equivalent to using `` (), or if the `link-alt` option is provided, `[alt text](https://example.com)` ([alt text](https://example.com)). :::{tip} Using URLs as link text makes it harder for disabled people and for search engines to digest your web page, so it's best to provide link text via the `link-alt` option. ::: The **internal link** created above is equivalent to using `` {ref}`cards-clickable` `` ({ref}`cards-clickable`), or if the `link-alt` option is provided, `` {ref}`alt text ` `` ({ref}`alt text `). :::{note} You cannot add additional links to the clickable card, neither in the card title nor in the card body. The entire card becomes a single link to the destination you specify, which overrides any other links inside the card. ::: ## Aligning cards You can use the `text-align` option to align the text in a card, and also `auto` margins to align the cards horizontally. :::{card} Align Center :width: 75% :margin: 0 2 auto auto :text-align: center Content ::: :::{card} Align Right :width: 50% :margin: 0 2 auto 0 :text-align: right Content ::: :::{card} Align Left :width: 50% :margin: 0 2 0 auto :text-align: left Content ::: (cards:carousel)= ## Card carousels The `card-carousel` directive can be used to create a single row of fixed width, scrollable cards. The argument should be a number between 1 and 12, to denote the number of cards to display. When scrolling a carousel, the scroll will snap to the start of the nearest card: ::::{card-carousel} 2 :::{card} card 1 content ::: :::{card} card 2 Longer content ::: :::{card} card 3 ::: :::{card} card 4 ::: :::{card} card 5 ::: :::{card} card 6 ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/card-carousel.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/card-carousel.txt :language: rst ``` ```` ````` (cards:options)= ## `card` options width : The width that the card should take up (in %): auto, 25%, 50%, 75%, 100%. margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. text-align : Default horizontal text alignment: left, right, center or justify img-background : A URI (relative file path or URL) to an image to be placed below the content. img-top : A URI (relative file path or URL) to an image to be placed above the content. img-bottom : A URI (relative file path or URL) to an image to be placed below the content. img-alt : Alternative text for the image (that will be used by screen-readers). link : Turn the entire card into a clickable link to an external/internal target. link-type : Type of link: `url` (default), `ref`, `doc`, `any`. link-alt : Alternative text for the link (that will be used by screen-readers). shadow : The size of the shadow below the card: `none`, `sm` (default), `md`, `lg`. class-card : Additional CSS classes for the card container element. class-header : Additional CSS classes for the header element. class-body : Additional CSS classes for the body element. class-title : Additional CSS classes for the title element. class-footer : Additional CSS classes for the footer element. class-img-top : Additional CSS classes for the top image (if present). class-img-bottom : Additional CSS classes for the bottom image (if present). sphinx-design-0.6.1/docs/changelog.md000066400000000000000000000000411465316142500175010ustar00rootroot00000000000000```{include} ../CHANGELOG.md ``` sphinx-design-0.6.1/docs/conf.py000066400000000000000000000102741465316142500165400ustar00rootroot00000000000000"""Configuration file for the Sphinx documentation builder.""" import os project = "Sphinx Design" copyright = "2021, Executable Book Project" author = "Executable Book Project" extensions = ["myst_parser", "sphinx_design", "sphinx.ext.extlinks"] suppress_warnings = ["design.fa-build"] sd_fontawesome_latex = True sd_custom_directives = { "dropdown-syntax": { "inherit": "dropdown", "argument": "Syntax", "options": { "color": "primary", "icon": "code", }, } } extlinks = { "pr": ("https://github.com/executablebooks/sphinx-design/pull/%s", "PR #%s"), "user": ("https://github.com/%s", "@%s"), } html_theme = os.environ.get("SPHINX_THEME", "alabaster") html_title = f"Sphinx Design ({html_theme.replace('_', '-')})" html_static_path = ["_static"] html_logo = "_static/logo_wide.svg" html_favicon = "_static/logo_square.svg" if html_theme not in ("sphinx_book_theme", "pydata_sphinx_theme"): html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" ] if html_theme == "alabaster": html_logo = "" html_theme_options = { "logo": "logo_wide.svg", "logo_name": False, "description": "(alabaster theme)", "github_button": False, "github_type": "star", "github_banner": False, "github_user": "executablebooks", "github_repo": "sphinx-design", } if html_theme == "sphinx_book_theme": html_theme_options = { "repository_url": "https://github.com/executablebooks/sphinx-design", "use_repository_button": True, "use_edit_page_button": True, "use_issues_button": True, "repository_branch": "main", "path_to_docs": "docs", "home_page_in_toc": False, } if html_theme == "furo": html_css_files = [ "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/fontawesome.min.css", "furo.css", ] html_theme_options = { "sidebar_hide_name": True, } if html_theme == "sphinx_rtd_theme": html_theme_options = { "logo_only": True, } if html_theme == "sphinx_immaterial": extensions.append("sphinx_immaterial") html_css_files = ["sphinx_immaterial.css"] html_theme_options = { "icon": { "repo": "fontawesome/brands/github", }, "site_url": "https://sphinx-design.readthedocs.io/", "repo_url": "https://github.com/executablebooks/sphinx-design", "repo_name": "Sphinx-Design", "palette": [ { "media": "(prefers-color-scheme: light)", "scheme": "default", "primary": "blue", "accent": "light-blue", "toggle": { "icon": "material/weather-night", "name": "Switch to dark mode", }, }, { "media": "(prefers-color-scheme: dark)", "scheme": "slate", "primary": "blue", "accent": "yellow", "toggle": { "icon": "material/weather-sunny", "name": "Switch to light mode", }, }, ], } exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] myst_enable_extensions = [ "attrs_inline", "colon_fence", "deflist", "substitution", "html_image", ] myst_substitutions = { "loremipsum": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " "Sed iaculis arcu vitae odio gravida congue. Donec porttitor ac risus et condimentum. " "Phasellus bibendum ac risus a sollicitudin. " "Proin pulvinar risus ac mauris aliquet fermentum et varius nisi. " "Etiam sit amet metus ac ipsum placerat congue semper non diam. " "Nunc luctus tincidunt ipsum id eleifend. Ut sed faucibus ipsum. " "Aliquam maximus dictum posuere. Nunc vitae libero nec enim tempus euismod. " "Aliquam sed lectus ac nisl sollicitudin ultricies id at neque. " "Aliquam fringilla odio vitae lorem ornare, sit amet scelerisque orci fringilla. " "Nam sed arcu dignissim, ultrices quam sit amet, commodo ipsum. " "Etiam quis nunc at ligula tincidunt eleifend." } sphinx-design-0.6.1/docs/css_classes.md000066400000000000000000000162331465316142500200710ustar00rootroot00000000000000# CSS Classes For most roles/directive, it is preferentially recommended to use the available options to style components since, for example, this allows for better cross-output-format styling. But for custom cases, these roles/directives also provide `class` options for adding CSS classes directly to element, or you can directly use the `div` directive. All CSS classes that are part of sphinx-design are prefixed with `sd-`. :::{div} sd-text-center sd-font-italic sd-text-primary Some CSS styled text ::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/div-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/div-basic.txt :language: rst ``` ```` ````` If you find yourself using a class(es) often, consider opening an issue to request a new role/directive or option! The `div` directive also has the `style` option, which allows you to add inline CSS styles, although it is not recommended to use this option for most cases. ## Text Classes are available for styling and alignment: - Alignment: - `sd-text-justify` - `sd-text-left` - `sd-text-right` - `sd-text-center` - Size (size decreases from 1 to 6): - `sd-fs-1` - `sd-fs-2` - `sd-fs-3` - `sd-fs-4` - `sd-fs-5` - `sd-fs-6` - Weight: - `sd-font-weight-light` - `sd-font-weight-lighter` - `sd-font-weight-normal` - `sd-font-weight-bold` - `sd-font-weight-bolder` - Style - `sd-font-italic` - `sd-text-decoration-none` - `sd-text-lowercase` - `sd-text-uppercase` - `sd-text-capitalize` - Wrapping - `sd-text-wrap` - `sd-text-nowrap` - `sd-text-truncate` (requires `display: inline-block` or `display: block`) - Color - `sd-text-{semantic color name}` (uses `--sd-color-{semantic color name}` CSS variable) - `sd-bg-text-{semantic color name}` (uses `--sd-color-{semantic color name}-text` CSS variable) ## Display Define the layout of an element and its children (see [`display`](https://developer.mozilla.org/en-US/docs/Web/CSS/display)): - `sd-d-none` - `sd-d-inline` - `sd-d-inline-block` - `sd-d-block` - `sd-d-grid` - `sd-d-flex-row` (align items horizontally) - `sd-d-flex-column` (align items vertically) - `sd-d-inline-flex` Variants are also available for screen-sizes (xs, sm, md, lg), e.g. `sd-d-sm-none`. Items within a flex box can also be aligned along the major axis or minor axis, dependant on the flex-direction. For example, using `sd-d-flex-column` and `sd-align-major-center` will center the items in the vertical direction. - `sd-align-major-start` - `sd-align-major-end` - `sd-align-major-center` - `sd-align-major-spaced` (spaced to fill the full axis) - `sd-align-major-justify` (spaced to fill the full axis, with the first/last item on the edges of the axis) - `sd-align-minor-start` - `sd-align-minor-end` - `sd-align-minor-center` For more information, see [this guide to flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/). ## Sizing Size objects width/height by percentage: - `sd-width-25`, `sd-height-25` - `sd-width-50`, `sd-height-50` - `sd-width-75`, `sd-height-75` - `sd-width-100`, `sd-height-100` - `sd-width-auto`, `sd-height-auto` ## Spacing Padding (`p`) and margins (`m`) can be controlled with these classes for; (`t`)op, (`r`)ight, (`b`)ottom, (`l`)eft, `x` (left and right), and `y` (top and bottom). Spacing are defined on a scale of 0 to 5, for example `sd-px-1` or `sd-mt-5`. Note, for grids the special gutter classes `sd-g-{screen-size}-{spacing}` are used to set margins, or for only `x`/`y`; `sd-gx-{screen-size}-{spacing}`. ## Colors Colors can be set using [CSS variable](./css_variables.md), they are defined for the semantic color names: `primary`, `secondary`, `success`, `warning`, `danger`, `info`, `light`, `dark`, and `muted`, and specific colors `black` and `white`. - `sd-bg-{name}` - `sd-bg-text-{name}` - `sd-text-{name}` - `sd-outline-{name}` Additional transparent colouring: - `sd-bg-transparent` - `sd-outline-transparent` - `sd-text-transparent` ## Borders Borders can be applied to elements of thickness 0 to 5, for all are a specific side: - `sd-border-{thickness}` - `sd-border-top-{thickness}` - `sd-border-bottom-{thickness}` - `sd-border-right-{thickness}` - `sd-border-left-{thickness}` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} :shadow: none :class-card: sd-border-0 `sd-border-0` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-1 `sd-border-1` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-2 `sd-border-2` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-3 `sd-border-3` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-4 `sd-border-4` ``` ```{grid-item-card} :shadow: none :class-card: sd-border-5 `sd-border-5` ``` ```` Border can be rounded by different amounts using: - `sd-rounded-0` - `sd-rounded-1` - `sd-rounded-2` - `sd-rounded-3` - `sd-rounded-pill` - `sd-rounded-circle` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} :shadow: none :class-card: sd-rounded-0 `sd-rounded-0` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-1 `sd-rounded-1` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-2 `sd-rounded-2` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-3 `sd-rounded-3` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-pill `sd-rounded-pill` ``` ```{grid-item-card} :shadow: none :class-card: sd-rounded-circle `sd-rounded-circle` ``` ```` ## Shadows Shadows can be applied to box elements (the color of the shadow is defined using `--sd-color-shadow` CSS variable): - `sd-shadow-none` - `sd-shadow-sm` - `sd-shadow-md` - `sd-shadow-lg` ````{grid} 1 2 3 4 :gutter: 3 ```{grid-item-card} :shadow: none `sd-shadow-none` ``` ```{grid-item-card} :shadow: sm `sd-shadow-sm` ``` ```{grid-item-card} :shadow: md `sd-shadow-md` ``` ```{grid-item-card} :shadow: lg `sd-shadow-lg` ``` ```` ## Avatars Avatars can represent a user or a brand,with a logo or branded graphic ([see Material Design imagery](https://material.io/design/communication/imagery.html#informational-imagery)). These classes center an image, set their size and add a circular crop: - `sd-avatar-xs` - `sd-avatar-sm` - `sd-avatar-md` - `sd-avatar-lg` - `sd-avatar-xl` - `sd-avatar-inherit` - `sd-avatar-initial` ````{grid} 1 2 3 3 :gutter: 1 ```{grid-item-card} sd-avatar-xs ``` ```{grid-item-card} sd-avatar-sm ``` ```{grid-item-card} sd-avatar-md ``` ```{grid-item-card} sd-avatar-lg ``` ```{grid-item-card} sd-avatar-xl ``` ```` ## Load Animations Add CSS animations when loading elements using the `sd-animate-{name}` classes: - `sd-animate-slide-from-left` - `sd-animate-slide-from-right` - `sd-animate-grow100` - `sd-animate-grow50` - `sd-animate-grow50-rot20` See [uxdesign.cc](https://uxdesign.cc/the-ultimate-guide-to-proper-use-of-animation-in-ux-10bd98614fa9) and [material.io](https://material.io/design/motion/understanding-motion.html#user-education) for good guides to animation. sphinx-design-0.6.1/docs/css_variables.md000066400000000000000000000054601465316142500204040ustar00rootroot00000000000000# CSS Variables All colors used by sphinx-design are defined as [CSS variables](https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties). Therefore they can be overriden by adding a `.css` file in a `_static` folder in your projects source folder (see [the sphinx documentation](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files)): ```python html_static_path = ['_static'] html_css_files = ['custom.css'] ``` For colors, there are nine semantic colors that can be defined. For each of these colors you should define: - `--sd-color-{name}` as the actual color - `--sd-color-{name}-highlight` as the color used when the component is highlighted (e.g. if hovering over a button). By default, this is a 15% darker version of the original color. - `--sd-color-{name}-text` as the color to use for text displayed on top of the color. By default, this is dark grey for light colors and white for dark colors. The defaults are: ```css :root { --sd-color-primary: #007bff; --sd-color-secondary: #6c757d; --sd-color-success: #28a745; --sd-color-info: #17a2b8; --sd-color-warning: #f0b37e; --sd-color-danger: #dc3545; --sd-color-light: #f8f9fa; --sd-color-muted: #6c757d; --sd-color-dark: #212529; --sd-color-primary-highlight: #0069d9; --sd-color-secondary-highlight: #5c636a; --sd-color-success-highlight: #228e3b; --sd-color-info-highlight: #148a9c; --sd-color-warning-highlight: #cc986b; --sd-color-danger-highlight: #bb2d3b; --sd-color-light-highlight: #d3d4d5; --sd-color-muted-highlight: #5c636a; --sd-color-dark-highlight: #1c1f23; --sd-color-primary-text: #fff; --sd-color-secondary-text: #fff; --sd-color-success-text: #fff; --sd-color-info-text: #fff; --sd-color-warning-text: #212529; --sd-color-danger-text: #fff; --sd-color-light-text: #212529; --sd-color-muted-text: #fff; --sd-color-dark-text: #fff; --sd-color-shadow: rgba(0, 0, 0, 0.15); --sd-color-card-border: rgba(0, 0, 0, 0.125); --sd-color-card-border-hover: hsla(231, 99%, 66%, 1); --sd-color-card-background: transparent; --sd-color-card-text: inherit; --sd-color-card-header: transparent; --sd-color-card-footer: transparent; --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-inactive: hsl(0, 0%, 66%); --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62); --sd-color-tabs-underline-inactive: transparent; --sd-color-tabs-overline: rgb(222, 222, 222); --sd-color-tabs-underline: rgb(222, 222, 222); --sd-fontsize-tabs-label: 1rem; --sd-fontsize-dropdown-title: 1rem; --sd-fontweight-dropdown-title: 700; } ``` sphinx-design-0.6.1/docs/dropdowns.md000066400000000000000000000054671465316142500176120ustar00rootroot00000000000000(sd-dropdowns)= # Dropdowns Dropdowns can be used to toggle, usually *non-essential*, content and show it only when a user clicks on the header panel. The dropdown can have a title, as the directive argument, and the `open` option can be used to initialise the dropdown in the open state. :::{dropdown} Dropdown content ::: :::{dropdown} Dropdown title Dropdown content ::: :::{dropdown} Open dropdown :open: Dropdown content ::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/dropdown-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/dropdown-basic.txt :language: rst ``` ```` ````` ## Opening animations Use `:animate: fade-in` or `:animate: fade-in-slide-down` options to animate the reveal of the hidden content. :::{dropdown} Dropdown `fade-in` :animate: fade-in {{ loremipsum }} ::: :::{dropdown} Dropdown `fade-in-slide-down` :animate: fade-in-slide-down {{ loremipsum }} ::: ## More examples :::{dropdown} Dropdown with icon :icon: quote Dropdown content ::: :::{dropdown} Dropdown with icon and very long title, *lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nunc nec fermentum ultricies, nunc sapien ultricies nunc, nec ultricies sapien sapien nec sapien* :icon: quote Dropdown content ::: :::{dropdown} Using option `:chevron: down-up` :chevron: down-up Dropdown content ::: ## Dropdowns in other components Dropdowns can be nested inside other components, such as inside parent dropdowns or within [grid items](./grids.md). ::::{admonition} Here is an admonition with a dropdown Admonition content :::{dropdown} Dropdown inside admonition :icon: quote {{ loremipsum }} ::: :::: ::::{dropdown} Parent dropdown title :open: :::{dropdown} Child dropdown title :color: warning :icon: alert Dropdown content ::: :::: :::::{grid} 1 1 2 2 :gutter: 1 ::::{grid-item} :::{dropdown} Dropdown Column 1 Dropdown content ::: :::: ::::{grid-item} :::{dropdown} Dropdown Column 2 Dropdown content ::: :::: ::::: ## `dropdown` options open : Open the dropdown by default. color : Set the color of the dropdown header (background and font). One of the semantic color names: `primary`, `secondary`, `success`, `danger`, `warning`, `info`, `light`, `dark`, `muted`. icon : Set an [octicon icon](icons) to prefix the dropdown header. chevron : The open-close direction of the chevron. One of: `right-down`, `down-up`. animate : Animate the dropdown opening (`fade-in` or `fade-in-slide-down`). margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. name : Set a reference-able name for the dropdown container. class-container : Additional CSS classes for the container element. class-title : Additional CSS classes for the title element. class-body : Additional CSS classes for the body element. sphinx-design-0.6.1/docs/get_started.md000066400000000000000000000075141465316142500200730ustar00rootroot00000000000000# Getting Started ```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org :author: "[Chris Sewell](https://github.com/chrisjsewell)" :date: "{sub-ref}`today`" :read-time: "1 min read" :class-avatar: sd-animate-grow50-rot20 ``` ## Usage Simply pip install `sphinx-design` and add the extension to your `conf.py`: ```python extensions = ["sphinx_design"] ``` For using with [MyST Parser](https://github.com/executablebooks/myst-parser), for Markdown documentation, it is recommended to use the `colon_fence` syntax extension: ```python extensions = ["myst_parser", "sphinx_design"] myst_enable_extensions = ["colon_fence"] ``` ## Configuration To hide the the title header of a page, add to the top of the page: ::::{tab-set} :::{tab-item} MyST Markdown ```markdown --- sd_hide_title: true --- ``` ::: :::{tab-item} RestructuredText ```rst :sd_hide_title: ``` ::: :::: ### Creating custom directives :::{versionadded} 0.6.0 ::: You can use the `sd_custom_directives` configuration option in your `conf.py` to add custom directives, with default option values: ```python sd_custom_directives = { "dropdown-syntax": { "inherit": "dropdown", "argument": "Syntax", "options": { "color": "primary", "icon": "code", }, } } ``` The key is the new directive name to add, and the value is a dictionary with the following keys: - `inherit`: The directive to inherit from (e.g. `dropdown`) - `argument`: The default argument (optional, only for directives that take a single argument) - `options`: A dictionary of default options for the directive (optional) ## Supported browsers - Chrome >= 60 - Firefox >= 60 - Firefox ESR - iOS >= 12 - Safari >= 12 - Explorer >= 12 (Mirrors: ) ## Migrating from sphinx-panels This package arose as an iteration on [sphinx-panels](https://github.com/executablebooks/sphinx-panels), with the intention to make it more flexible, easier to use, and minimise CSS clashes wth sphinx themes. Notable changes: ### Reduce direct use of CSS classes These are replaced by the use of directive options, which are: - Easier to understand - Easier to validate - Easier to work with non-HTML outputs - Easier to improve/refactor ### `panel` directive replaced The `panel` directive is replaced by the use of the top-level `grid` directive, then using `grid-item-card` directive children, rather than delimiting cards by `---`. If no card is needed, then the `grid-item` directive can be used instead and `card` can be also used independently of grids. Approximately, `.. panels::` is equivalent to `.. grid:: 1 2 2 2` with option `:gutter: 2`. ### `tabbed` directive replaced The `tabbed` directive is replaced by the use of the top-level `tab-set` directive, then using `tab-item` directive children. The `:sync:` option allows to synchronize tab selection across sets. The `tab-set-code` directive provides a shorthand for synced code examples. ### `link-button` directive replaced The `link-button` directive is replaced by the use of `button-ref`/`button-link`. Directive options have also been added to replace the use of classes: - `stretched-link` -> `:click-parent:` - `btn-block` -> `:expand:` ### `octicon` icon role The default SVGs produced are now sized relative to the surrounding text (i.e. using `1em`). The syntax for specifying a custom size and adding classes is also changed. This is similar for favicon icons, where the `,` delimiter is also replaced by `;`, e.g. ``:fa:`name,class` `` -> ``:fa:`name;class` ``. ### Improved CSS Updated Bootstrap CSS from v4 -> v5, which in particular allows top-level grid to define both column numbers and gutter sizes. All CSS classes are prefixed with `sd-` (no clash with other theme/extension CSS) All colors use CSS variables (customisable) sphinx-design-0.6.1/docs/grids.md000066400000000000000000000137341465316142500166770ustar00rootroot00000000000000(sd-grids)= # Grids ## Introduction Grids are based on a 12 column system, which can adapt to the size of the viewing screen. A `grid` directive can be set with the number of default columns (1 to 12); either a single number for all screen sizes, or four numbers for extra-small (<576px), small (768px), medium (992px) and large screens (>1200px), then child `grid-item` directives should be set for each item. Try re-sizing the screen to see the number of columns change: ::::{grid} 1 2 3 4 :outline: :::{grid-item} A ::: :::{grid-item} B ::: :::{grid-item} C ::: :::{grid-item} D ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-basic.txt :language: rst ``` ```` ````` You can also use the `auto` value for the column width(s), to size columns based on the natural width of their content. ::::{grid} auto :::{grid-item} :outline: :padding: 2 short text content ::: :::{grid-item} :outline: :padding: 2 some longer text content ::: :::{grid-item} :outline: :padding: 2 short text content ::: :::: ## Placing a card in a grid The `grid-item-card` directive is a short-hand for placing a card content container inside a grid item (see [Cards](./cards.md)). Most of the `card` directive's options can be used also here: ::::{grid} 2 :::{grid-item-card} Title 1 A ::: :::{grid-item-card} Title 2 B ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-card.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-card.txt :language: rst ``` ```` ````` ## Controlling spacing between items You can set the spacing between grid items with the `gutter` option. Like for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens. ::::{grid} 2 :gutter: 1 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: ::::{grid} 2 :gutter: 3 3 4 5 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-gutter.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-gutter.txt :language: rst ``` ```` ````` ## Item level column width You can override the number of columns a single item takes up by using the `columns` option of the `grid-item` directive. Given the total columns are 12, this means 12 would indicate a single item takes up the entire grid row, or 6 half. Alternatively, use `auto` to automatically decide how many columns to use based on the item content. Like for grid columns, you can either provide a single number or four for small, medium and large and extra-large screens. ::::{grid} 2 :::{grid-item-card} :columns: auto A ::: :::{grid-item-card} :columns: 12 6 6 6 B ::: :::{grid-item-card} :columns: 12 C ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-card-columns.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-card-columns.txt :language: rst ``` ```` ````` ## Reversing the item order Use the `grid` directive's `reverse` option to reverse the order of the items. This can be useful if you want an item to be on the right side on large screens, but at the top on small screens. ::::{grid} 1 1 2 2 :reverse: :::{grid-item} ```{image} ./images/ebp-logo.png :width: 200px :class: sd-m-auto ``` ::: :::{grid-item-card} Some text ::: :::: ## Nesting grids Grids can be nested in other grids to create complex, adaptive layouts: ::::::{grid} 1 1 2 2 :gutter: 1 :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 1.1 Multi-line content ::: :::{grid-item-card} Item 1.2 Content ::: :::: ::::: :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 2.1 Content ::: :::{grid-item-card} Item 2.2 Content ::: :::{grid-item-card} Item 2.3 Content ::: :::: ::::: :::::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/grid-nested.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/grid-nested.txt :language: rst ``` ```` ````` See the [Bootstrap Grid system](https://getbootstrap.com/docs/5.0/layout/grid/) for further details. ## `grid` options gutter : Spacing between items. One or four integers (for "xs sm md lg") between 0 and 5. margin : Outer margin of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. outline : Create a border around the grid. reverse : Reverse the order of the grid items. class-container : Additional CSS classes for the grid container element. class-row : Additional CSS classes for the grid row element. ## `grid-item` options columns : The number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or `auto` to adapt to the content). margin : Outer margin of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. child-direction : Direction of children in the grid item: `column` (default) or `row`. child-align : Alignment of children, along the `child-direction`: `start` (default), `end`, `center`, `justify` or `spaced`. outline : Create a border around the grid item. class : Additional CSS classes for the grid item element. ## `grid-item-card` options columns : The number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or `auto` to adapt to the content). margin : Outer margin of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5, auto. padding : Inner padding of grid item. One (all) or four (top bottom left right) values from: 0, 1, 2, 3, 4, 5. class-item : Additional CSS classes for the grid item element. Plus all options from [](cards:options). sphinx-design-0.6.1/docs/images/000077500000000000000000000000001465316142500165025ustar00rootroot00000000000000sphinx-design-0.6.1/docs/images/ebp-logo.png000066400000000000000000000262601465316142500207220ustar00rootroot00000000000000PNG  IHDRݡ,wIDATx p}'~{{"H@$HHDJD_oUQ6v*Ļ؉d*'L$ےu$C%x$@`fm %~OP0;{^'1PX,p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X i!1fv/v(5-LU"($\.Q !RQ)$l>522pllF쩼faaR~^oAA$In4 Zr XXljj.lk&͐35ҥK1I\.JKKk***n' ,EQTU5 RUߡNN{E!Lb顡Ǐ @iiiMMͪUjjj1d ,ƺA 555777n"%0;;;kjjvڵyf0^`-V^}o߾gyi>ގ8 `u>__݋XVŋvuu݋X|H$?o&݋iX<9qw󝞞1}KJ3 >_\\lv|{ov#&=ছn! H$n>!;v(++_`팱 L45A'Lojj2ܱJ,ͅH$255 4M3;^QJo466Xs.m2m"-bxsLwww__a.]t[nزߛxYvgFykzhhh|^|Ŧ&CƵ2_*ceD0 G?o[o5J쫯jXr;BHEE?}k۶m3|`XnLl?͆\XXx׬,YyG!:;; )eM,xq5x$r~ENL;BHV4^GٺuP.d//'E"|+: cAr1K4XJȈ_uuu---7n\v-,A`9$Iy;nwSSӮ]ZZZxQ,+$fϞ=6l7˃}sP X5<<| 7444Y&ݑU hrr_|---7o.//]Kx<ޓ /lݺ;Xvc UU>|̕[z^2s'tpGӴlܸ1//o0# PWW032s P\\\VVB?3HX9B7GQ1 EEEzL&#q ϧsC91 ApJ9g ̔w1 >.̄Tdw@`pC4<_!10 % 0 p.̄F49 ݂. ɒd,ey1?,ѳ uJKKk,G~W.]$}_Թ0,BJJJk,G;}tGGR5<<2ؘ (ԋ9p ˹TU\>w,DbttTOJ ԘyΥ(24u"vZo\G&@`9i×CP^^v,J$fw"rOO" =!"=zTQQkjj,RUbaa_Y$ `˹X\xwOhXfA \H+.e̕jmm5#3!k〹ۧsU|pÆ ud&s?ˀl{8N[[2Xwĉg}VJiKK\Xc:uG?!nZCJ7?;]T۴i=X5fvp ?Q+UUUR XǗTdO2ܷo/~ GyDgn ,aYtWWӧϞ=ks-\.{!>+%X),,|sb~ c;p~JnH${e_0Ҽ^o0t\n;X`{n , n , n , n , n <j]H}*%( f7(KSYtR}Oy֛ݰP*/Kۈ>eiB2GA63UGϰش0e 1ASnFl$VNtk#=ꅃK&ZEմZ.K7Ù͗D;gG2~Һ[ Mؒ}5?B\^Nַђs-&.Q6vE'S9(Imz `_l>\8tlL%aj@<^8D +iJBKWnZn9 nYba,0ƢjdM] i*+uI9_GP-["wD /\çԋ_#mwvZd2J fԋo iwU^3OAd"|qU;)^veCpjpiM"v%JVo\~eA:t0+GT6yQ>",$n2ELw6/+ʑcF,V^Qq{ bp}-JtY?褑8@dWt݋W<#;[KHEZXIZ`rBrrqm8`4"҂rqV#~N ԉ\H>zú;QS3wԄ".Xۢw.hϳaK˝/ B|ZU7&B\@MSazmCα+M1 wѲzcϩ=oG_Fΰĵ>^ F\~'&oB!Z4$wITÊ"}RjMlVEh65VzhS/L3Wo~` L&..߲rc D^i_J{׿M0#hqw^y,s8CwcU{m7+0jahc粑V& 8hI}GPj057O%6_,mςyXI*R*q. |T5 H^xJ^I૸ |Wlo%T\o<^8/l~NHě/5&5haCY,KnoS:_6 &(8<ē/J}Hnʻ\|S@DqG<>'n7[ 9 d<8Sl05+,0y!uZPBM_Ns")>D n,X!ugdݤ_a>r$^[_P17t $u%}#Woi ba [JI "h*J},GI_j4U שg yƻŪf6Vf_=c2٣#uA,N@)zǟ«U*Z\E*֙H^x6֫ M~URSCBJ5%CC\ybC9\%+sn63"fUT 9(?_>/źVZMnxIbamKTO,Kdh׶ϑ [X8QKE񗐂2ZRG-b0y^:^~6bp\.ٽ|, Vf7VgC]*MbVZ UB@zKIT,9No/_٭|k ʂr_ZBqRUT%Ajl4m(CoG\Hq{3vJ^G\urzVl!mzCn6.̧GUʩW`3ùL[liC` \#NSܔզsJ[?-ݑuE"J6q?1"vm>"j_zN@Ü2Ҧ nazCyC8"F Wy:)(3E"px\[2gPy6;wIMwdoCLG՞7kcks,RXI&Y,_tBI={GVYuŕ[ /W?e3#l>jx}sNbXW:|gf0.X%coeU>Wmzp}:Ͻ&%w7AXlZ9rEuฉw;IQ~^U=m]ᄇ*{ҕ9(VXdB>_~96=dv7NBE҆#?cmqwV_Myy\TP<]dv7Nh4 E;ghgppXӴvuc9#y>--lft'pW(=jz!^6z(>m-9*ߒ |}IciýʙUbm~q'-24MW4 im|n|TzV?؇,)=oɇ_pMW(mkC:`e u;I~RZw0'cE'C{E!ϫo7oVRmh-VoPz ٝj~彟Pذ~R7BkH^z`f\_tX2 ^.f7dwGjhŚkӴɾW{l#nM\=X}+C16yQ9ݡ^2VvJK{&}b['/?XJHQ`X7u85Ӵ v3- _EZe(Zqv~qEmXT"kn|:ЩdsSfe/JR;+cQ[@ٔ+֊kvВ:RX]iFRV/# m6zW3U7߉Nʝ/ҕ\b VoU$PAKU yWӚ,fԸ`G<4TE?/w/a.IDkZh*/!blݯil~.\Zwcgn[Tk=S\u:=/M Lj;ֵiFZTEK 1AgsZ4ĢlvEcfy]=|h? L3!NP $sJZ$e+ LcɸL?Y2!,XlE&l%fSߔxjWI7H]!&.q ? lH ۗ;0 ̒qSTEPd::;)0URRS3_ $]Wd=ѕkOςITp{G\ʻADTD)I} .' ϊ*LSrKcR_\H%fP?gSL(*RRԉ+Iq BJ"?r+J.δ!qXEf Qh3Z6=ʯsDk-]S@ /.@`9c`Q6crbr6"KR4@g@`9 c963gaWd쮮GHV%IX,6M)'^WNf-[ i˃M@Kn̄rqkc$Pny\l s cB|bbY?@ZrgX5|k 7\ε^E  ~}b]+-_mlY1, qhrhU dW,Nzabl0;/&vXX|Yg\9BKiKEshqCS߰,X,ҊmD*JFXhT$r!ňwR K@<~ZޘZ|LhB`RPR`AQX:,(!K% 1%aXT$>iXV@EJa)dX:,!1dq,K%2 FXtت%.AMCKj)!p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p@`7X p'Y_LIENDB`sphinx-design-0.6.1/docs/images/fun-fish.png000066400000000000000000002636661465316142500207520ustar00rootroot00000000000000PNG  IHDR^Vݔ IDATxwǿg.m;WŲ$%F`/1kLX`AJ+Hp٥.l{y?ܹe) r9)ysΜ99*hX+$Ph|(_:> !PV&*1u׹L*=%_thzDĴ:N<ؚ+W[bZ:Quu:}UbjĴ`}v]8,6ws4cNLoMv2x÷e~'/ P=ꚁ$拓%_B鱚xT&9u=ys}_t1}!@TF"Ҕ YrhӤVk8i4̋1٪1M,ju=2qNkZ^٭^Z/n`إٍN--RkY+XM0AZy?5ڢƲ,:]4/bl,4q:^KhAyJo/*}fV (XM5%fܓHwzhk=;>z< ŋ#m_ FZGm}V܅ZӤֲhY(]wm7;هB!36,^6М9L7|#uMLjL JJZM`o?aY{063r?4:߸3rGywPWWGPJQUUE߾}w \y%RQaMr 2p3DEd."E>FQJZDD:,QJڽv-Zx ׯ{]DlBAe&~wYYYͳAHӤTi nzosL^D)Wo6J)F$x79ߖe-ʾ9պ ?01"sߖ{,ǩR֚I6mf$znR!elWwU/bkH(G w(zWmJ)~VvK6\:*jg}?0bDz479h3@ϋ7ేoLbM(_.M >%5 B8"]1::]a]1wo)vo6{f_ 1GT-1:4wP*Y*8$qMag 0ZJOƳ#:#^( g>B C}W+.'(Oɂ\P{^˺A>Y\XQ'@q, "k}u߷z@$nPMa5xžw= >+^Ykӡǧؗl 0`SF)~d1 ˆxo5%Vkq8D8M5GTA?^KOOy@ c8n᜽1IF{p.}{z"hmr4vrFB80%RxΥL >WozND=.C_ ZH[9n R028a4whݚV­_'Ɖս&\+dST=>+>u^- % Ld-xŞ2_+ /RRe،+#(cڡ5Q/pIݜS äT<x00o?w}ׯ9LOf>c*밌+C*?+^YXc7,aPJ ː#OH'YEurau>NAZL Ӣbĉ0g2g̐Hde pM fgΞA#iv'L øGӳݐ3椓T.1@D:պ^sD_f1nSIVeǪ!%F-uu*EHSflfo#T%g*1-4i~g.2tZ:e4=YeQYXOX~:USXG7 ѴlWFeeaBO- c499f睊%냟gאd޼X=nC-AM4*3ٳ[jcO 4K5nh4~GiVSn&/&̋kz3WQcY04M}ʼljMtz MFԳY'g}[*,S#hƉ]_i굍( d͹r/{ɸeA;;NԿV_Zef-}be)kf2/_\^u[S,oD:ꨭ/䜬'Q(Bxs@^ލK 6,opeMMM՛ʳEjojB[ 7zYS Bdff&L)pzf͚%ε}ڗ}/lKe5L=I?3^>eJ)>wRUUY^^NϞ=}O=V 7 ۲ز>/1{"GSSW.r9 4M HYVl [*D`;0{&HU43sSVD+r)n_}Æ #77+{W]~Ҧ̎/՞ sC!8Y7$,HM&/{W]u{7O^x4**l?oGۏ~NULU6*[@5>iӦir 5NRr9lQ+VON- ni&)+3Vy=?ieW _w˻ n AߙpgAkMyyy Z`٫|G8${~w?wHzكN>e"ӯIX*W'2Bz+?>/ f^J+dee>* Y}.7RFPk{=Vו =P%L8 v^muohpz'yݢbd^RP~]ZCilI&Q&@#TTڬU1N,)Cjw(nCЇapsŇΧYNb~{9aݳO}),pgut>]>{R00}T.mb&ԇy- m m;/&--ǩ ſ„7&]zO=6i G EDO`e(W #QΪfw) 34Xm5arAsl*[/5$P欁X~e\q0 ]Kj(7M#lAvO`ݏH gp.}gpl),!-v`c] ÄшI˽n< e]5nRz)JȄf#1biL"Z5)i߿6A?*y( @DӂG̢|A)lP.4,urfXw"Y{׮@ 2x8WP5<z3S-Oښo 1_thd+HHh;tˏoѣAM(0U[;sv4MЁuJ}z(3m& u&JgJܭTW FW/g~F`;S+= 8BOibdК5ŻUW{,氈Ej@Ge!kFkcK-)o3I|kZ))o&''oprJ)^nii\,C>x!#Jzۺ`L" aÆNXqId}y*S,A笳XTVV&cM+Qocp;sye±*/",Zhmmt*K4h`=V*/oM>~hna_G)/g~Sk0dO ill$777!]Q4޼WfL<]L$//W$Vk]ᇇo:.ྸH_5-axx :ZFgԚ_ Lm*-W=H)˲Z|QQuJKDznmm+(yyy g S#ח\;zn`4PU3ow\G~g+7n»wO?O18(xl;f̘oY~˛VB+*H*<vm8AϞ=[nMNXlYA5QF1S~48;cYS,.>*q[c8ǎmL:$\:ut'> B~{- {}}o9f0U-x6u. (R5>rɼ@~;4,Oav=x @ٍ<$8~Y =G?͚ Fep>䓹 đGI^^YEA4]c⋌7g{,?m)`wNjhhั:XE*1"Opl[gGބ=γշ2,4J@n)}@{_]cz 3#}}*7H9P!??.v?ohg ~Ԫ\\X 5MIk^Mνs؍EWGcoz&lR(xu<%zTD@s穉.};O"9O=;;*Y^&tx6F$Hl5 J >X+X&0Ek؆7~%|6M|>.=.~P[ĘHC"mUv)eUy~继st&N~Sd%![(΃ŋ.E oJq h+C:Ӥylte}KJJdQ7ҲlJzgӭG&ٹ~̈栿mdVs7YjW) H<,,z!7=nz')UJ}wv9}0U7eB9<3W,U$G}nB\o f ~}dһ׷k@G90=5kFJqP< |EEg5}N5ż2b aGl2}dd0(Mlacm3*. 'WT0%È&e ~4 )M1y+d&vI-oďZh P] +jxO67wl"i{sb醊R4B8ay)#fg`շP n1bۈ)J3SXAɤ&LCm aZ-P(d~{VHM DY:Nbf<,3ޔeDn~lܷrᲣ2FاY=}lty`^ekp_ؾe(v[.ݛPjzu{uOWRXG(649>в1J u[8;M:{~(+6n+" nB @k!jl2iG-PzXp|v*-\8#BpN9枧M<ϑ=I)e_#`݆ h;ahiӠ3BN㥒-=$ZL?$~{xhliiYao="q}ذ.dф&&/rj$;S '{l@l~"ꣃ8$(>Ek.[Mbs~x \d%g #d^@bٺ:y93 (YJemSuͳ.gсӧQGPvU+"'%W~7<4lQҒU{[vt|>̀5yv<ߔwaX>3iQpb#؎_#ڿ֦t >K_hs8&<*QzTcǔoM[1rssˠzsc[SO=iXq&EޚqR$>5ziH|mui>,S@MBDtS'k*Ѫi&=@p.d:<^w @Hhi%x;WteqMteݷJiaÆ7h `} 1 {hRN<_\Cù_ZS4O V;{󨣎ظk!7ZZZ|E9ee ?(b\~yXVڵphCڷvEvvki}qD"7T'{!*G{!l1ذ}Λ?Be6Ӛ76zx.]lAFFF)} w*` ~mggSЎȸ?++>B56; j[r+6>*+5,s>V!?qOBۀ^3!ZDk|e?w_k\$wg=aRzPN3|]_СzD F@Ijt)-1CnZ :[тw) Hd5E6$>/|m]ʳХqd B`~%ZXzc2b[~?gSRzPC{J h Jі}/¢5Ѵn-ჺA,Z|L\+ׂw:ޥMQHq6-8 /޸SNcDooD=F[9t(FB ίݏ" WrOasԚHDVòe͝O@Wh;g6ߛy齛م"R8Qg4˺ uu;4]k(]dRb e~?3?iSuEXX4Lӵ„Cay[Ӷ턂<{;̇ DQ,,~oD{k^߄CXUʌଖcM9ѥ6&$<DnYkD)<ԵxzӟގKm@)gXu= ^Aufbv=ZfM #@!tF?{mJqghZ]{+>kres[[1mf i7NةeQeԯټ_ڹ\|@t/?r %mBߔk`:LMٸiTni{aI}GZz\WۆEQ>s|G B7A?L?fNCXchU(Q̬(SGiњV6װIbt)= *ٸ8Y݊!%FW^@հLZMMּ7xN!Ϯi$TU}vtY za2g~Ҋ'4e+KBȽ!FwImg0+Nܽ-{vvt)= Fj(ZC:-ikҺDKUJVm΂^> Ÿ(QU#3hI>gUk|B$hbTxuzvz'6,28(BbjLL"D\>>y4>;jڱl]J`m}&%DTiPwٗb/1[1`!Z +b$cn,ձ`ZV&6s"(Fu@β,wȞ1, VڌM h~oL ۝@~KWwlll9hkYK0dzVn͠q+_%RIW^9g *^=Һ ~%*Bn*bTQX/4Gi;~.*OJtj;Xjqw_J~wskkm9K][—VĔ}j+'iw$; JcUkWwv ;0M#O>uO<拷fo;-hwwՂWaUg1k6}v?.$ +R\Yzk$VXXGCCvbRz( ##A|u#mx챬x36W:,bw][3}Nc1P@ r螣ݻP;Q\h>C=41UUUԛ"RBlwgff~tCEgd>_66֝E ɓ3=i7|c)Yjzۮb"~?vى7 [ӿ8A%N4y![tjխWG{{*WV[/ٗKH0 "M;{N_j5Xsy!2hL6RePWRN箓⬬w U'ٙ_)i4J"0p⵫ƍ9 v-,_VȽCrxH4u`Ʈ ߝJUG9iiՋj7Mr" ֚ۏosu%离4vD4Ͽ*8xxQ3bGoxNRr|I纈5_8\ZJ8l,l'poV UUU'Oii)?=z.n/9S|]tQ/TJc=,^RDφ^yJ(-y-Qutxo>6s )wfʣV /c9^zMEW^<3n^%-݌yaA:3{챰 إtDbMwvYiiJ姏s]E{0x`VXԩSSq{dN6-!Myyy .}$CƏG2s}cJ3=׽ʣ4jr rںxa̽ {sLe{Ռ%#YINQM{ƎoAnnngp]tE޴퉴])0@sϭ0cպf CO3zOLQwz<>Z7lw"*A\y}vzv. ;mEK/Qb]]]k[{0XtiJi՛2NnɤIR)'fkXhh`Ḁ=ΐ=o4WCN~^ e7M_!s}vzAnW ?OH5cǎMF,.qU sakC 5L L `a>`cX߱l. gDKNvxUpԫL35hsa;K%p_)P>'+4M8f̘1S^^رct,n;rWJѴrBBo:ap)X:X+pyпw&rHĉSVٳg w*H']T$ [ENh9/?mEY'\?r d#iTylC06 l5z+ڃDEq^%2:DN7X;~GIe}IYVx3bGNǞNO%Ⴧ>A)ŠA,+/b Z9V ؜Q$њ0=@8Ơ[yCsWGV|?q4g( +;pߩUT#(! ɮIjG('$A?D4߯]Oy0=Vp`v˚ų (5࣏ g{󻂵,O`~m(:YՋλm>8gKxRKoε]ІFo}|*(Y9~|EvO!᠅?B23z+*thNDnғҨ%4G&3ozT0XD|?ՖbBLa2 j4Db^r)qFpڊM3%!^„ q8n5nRnZJ8k$0F CS0Ѻ>_W:Q$]O]>MpVYߐX=] R-dcVnjhY8.Ri$LM6Ce>0<B!m|χ+!@Ί<nh5 @#PqAbݒӱ$7|}6K^YzѮdŽH(™+@Ab\a*խl~dfۚm=6 ^@4llb25%8J_\aЂ;I$۔"%GB~RzyH#7)7Z+|J&j(CaP"dW|"DR.ħYRVQjxL&'_<ʞ}e8D9WamĕpYY\2v ǝ 9'mH꒒H:{L {bȁ"{8 paOH]\UedDB)hS,B-"P=;U*f|wACl _&NJ̤:mo\Z}’S>XXh<= 㖘2¾?9Ɓ6`xF-ۛ/i~ < >x>f|kw@kt=|T Y˲;3* # WRJi&ާ{}K|XW;O5#<}w+DyLID>58F?'Æ wyB O> ݳ'0q}_pXazk#k%"[cǝL-V7t- ZF4%hYoAɵi(kɷdU]U%eN;# o#1JROPw?ʊ?bW 9rgEГob`8b=4$4F74ubx._曩r<8o-ṫOuu=Z9¹[Xb)o 3Ϩeˬ҉SZggf-a`aܭrI]s۱"W}%#z+wOˏ  pH8>Ai-_{{pc|-ʭaǿI4=j?R}'m.jn+`HE=mfr%IZsv^Iޟeb"juztu b7-\bFK-Y"ݶt ڥH(9 VxȦ=7"zY>//oKK*D"%O̔K7\ B647m㝩8VWLy` OCjWˆq;eY;o;D觟N>0W *Y SwhVD"hH46 {F!{BQ7?(` Qh hl+/J:%"nR_~[o _kk<键fPYgAO~=㊳yisÀoϸ1xuGmٰS)=++kJVV`g`vv&O͹R#UUEni?&h9>(#EOa|7tN~J?\섴VxcݱTupĉHvDG҅N5Ck^}XG޻ BHI!f *hCKHlhxX^dŎ҅5 IDATG7_,:DDN^Lݎ.h!**k"Bӣt[_0F~B2.l%^W U̞ IٸZ Zhk$swW'bEadg<+bzW[@4fnPYC!(17DuSEG4L+1,UHH|LDqTF,1ZkՏ]^ [#+$ P>D <=oah PB@Zg:a 5 -4ݲX)лu+U{&\ da4?xµD"7~4O.x_#vE7F;呴?tz ##U$c{1uw$]0254|dȼHk5xgXdcF. hh1-ĴбO1-tˆk1nn9۵ѓv4??vtz GFHkĎG׆y)л.(g↬Sۆny >d73h22.Dk#c&>j!/<"7Gv4]B~ D-`k*hD_WɢdA΂#v4?etMuvPPwK_{T7B w>dZke\"a3 P49 [,DZte{лMWUfv9yMD " `Z~.c߾蚌6ADin_ 9FQ(D VExiuMQSnr]qGSBwCD2օ~+݌əS4BӛM0&Xh4g^ÿ޼:>2. пQX"4kHզI0lqȁk1##  ?Zu a!Tgy$z",BTDn@Z?Z}TQe]2.l5D_a7b /4>HSӏbDE\cwbz{vGwa "HȚB#cAsN+H0b;rj4"w{ N0`Ɯ>?PCлUg(cXEAРxk5>1gH1yxbI },{QgzfgvskVUߪVutIC[e8,.3c8l>07g1{u/aKUw0zB.+9XiYlTnQk=Cto0w.\qjԽH@VtJ)w Ӿ8֜(L]WzN]o6M}ZȌs/tvp7GtRJfBšGE&nB5 >Wmo7}^ǐ^z+2Ãn;\*@7ozzC~%H2mV* g7 q7F`lHD.Re߶8qXoĤotE}:Gt~CPv`VXܤhԺ?9b :!h6M6L*cc͍',Nhj"s!V,f% 2^q]=@PREWrdfiO݄Kt)<\3ބTNlXh C=@X2 fd\5/莥M> M}!{KK蜒^ /T|)[ADr}XGx|{jmxp=]KxmGx\Q{ΪŜ?H{2=hl۸_lpXb>MSf 7 GMG"xUA H^oU#IV& fyGsJwX{L\_ŷC F ߢd# U  Vm3ȉJY4lK܄L5@]KE˱];skZAR[Z$)"}}n=3kL2׿8n喲{;.mhFaaUUıc 7&9sG X͌X?NQGW[/u|6;_HϞ)**0Vq}}=1Caxe>u'?j5s?p뤄xjj`&wcMЧ+Up*C2LJ#)k6<[DaIJ2ڿcTm1#F0k, S;vT"_[䓱e***8#yW())0T}~RXAaiz2jlRdiX@UWt-Y٦d`*rcm[`X n P4BS +]7Ť͎?yid7ÇM9~?x`V|äu4#F0i$l?c@o.i:T)Q]+ϊ 7m휕]Rꪍ7~c@E= o6sѼi)$N;Q&!p>Gw0t&%^~Bd!xI 846ni }!Rt5WF^z~TO?MqqqywP(ol>Swy9ht8WOx㍌5*I'a=yLjbzAAwZҲX L̚N:gyF=;z*_nBT)*Qv=&s~ߌIVi %$=oxi26&cqڡУ+Я~||P|9d۽p8Bx 䋖ϙCii)GqD2ϟϐ!C>]]W(0r<_?޼yF߸򗿔x\+=iCK 6ᆖwA/%~CqꪫPUU>}l6¶mt]9Z[|է`΂K[=(ߋ_U?TwR &_RZ-^]v|{)ฌFB$'/}=t"/|yPKr4'%wW޴m%\JɠAPJ1}_GqG{O|H!SLAi O`L (jhSc+`ܹ;3+9uA;OR,0ra|r{}R\  EO3mSs++<OO^)-`J 2|Oi^pLŧ䜣u:f:`|9yһUK{ܼ1< t12 qB gg-69ƍyg{34}هAM#2JJJ(5Rm ECÁg0h ,XʬOv+8Y0MCr{`M%KozE˗ؑy?pz pȬ2Ωߞn?ٟk }%1wedQK"3;`r)VSg^oDn9 L=Y .hk28h<,^i`'rM 2quT=z4[fA=?HZAݠHw>O<]t?lϏ#n߰VӴQ24c~r\ +]gsِ$r@)3iJc|KK|oo_`i$-p|Uh!5@kM^`sSMOY,ïIE#6&l*ZȐ2ewk?')Yvjcs4?*9us̏K*0dPΝf9?㷅|x GȾ'%枆L|w O.,ݻzEr򚗬0n7,NJB˓+^3iC9d w*fItun6fI9H \4є/nFP04rfY/,i O0sڴBxI5r%Rn&]r(J~F2H%i-o5 ~g_>$W)uQSSC$֫sϢݺR׮ykP]Ly۟j0MH$r{@؎̀|@"bbi8_6HRVpQf1:_#5@SJw[fB WCyIgg{saV/"P4}-pSJK)Wc %3ˁu.T L]~k(TI A)/ܐxS>u?93xcj2_}h=8i>?묳֭߼ .{G ߫1d`% ?D@cI)y=8Uu"ؠĠ4DQAaAQAaBps) ^ܴg4H_:\{+PVFc_.g7&(ega$h`eFr %ǧe}8%չh!0S#2xEKis su2ʯ ֗nƑSWߪVLJ7pKKK}r/\E|yy᯿:Qe'п ҡU&᳣}^}֯_D"R2c2g0 OE>(,q J E.Caql &Mt\7߈mP(<7jmdtٕ;`;w͟J?h3{Sid/5_ؖ4/OwD}"RJ֟Q|X:-ϤU0kwn?Hs޵}+s;qY¯M5ӋS&{RD t"N8jup3hdֿ*c^^vYh!ptq7ToF'' M0ZUߎ={d>뎔mG~XWl )`xyɢ$_ ǁؼV5k`Pn9| ztq`iu+ܾ;:T^wlQ{&7W/~ GZ4].cϏR *9~޽{3zhHyy92m4.]J]]]8p_x-̭|/*Viw2bZy#2x}p~d<x1Z7 h\OcꚗtR" gg=D `iCI3{ϟF{vP KсRpDK[4 IDATB2U4B)<֐ ̸Gl/If;#\)[.L,i6oUsp|SoQ㉬rٲ}59!⬳r$TcIuy8t=*Kx:6*x2R.zF7Hew X&˪X!\ve#lh2@6őg}ݍR#UH]RBThQ)$y YSJi&KӶnΏ]>L-q诙yыԆ= _@fhWF5}c.~=׺[u\җ@{r(Ɯb*VOBW@hX@Y6Q ȔAJ74c<##-ՍL bhmSa-9 ГZ'pTGiěmWG4m[Ei 'My^u|%} vrhC2Zgeރ^\ %M\i+ My歜pB;4|^wͰ `]ny.]7CEi2E##^ r6gN$ceóp^ HHW6y!sNE qV/v{x=7Fj10y&A Mw4]݊v=`}$c{/JK)9f.V)-ch51YBT8G=BљIŦ|ye,Fx| z#*GZmPBoK|G{ Ӻ|  2zi7p$4OLW*Os/ye74dlx+pP[. BP 3K*)FϸO7KF.όKDZQ7'dL SXH5!͵FmKlSb&?tlKbۮF.* &CYvg?3稶MkΥs ^'V jsWcC2ƠJ͌9Ƿpm{;2jt/;̀iM%'':{-ciIh{&<Ͽ^?8x[6ʗTt~!`ړ0j@dzjz j-u↹G+KB0M jSץi+ׄ)SeR!aZ{`0ծFIG4\Bs:}}/'w_\-n2_/?\*z7imW9vWFBBo>wnWqX+w_I_({y;vHnlZjxBl^.rH,ֲj[[N۶F:R*ڽ_vvI>\s)r/Ylͩ>['3 fsE'JHY0 uk2_2 (/:QWY;%c ]MӚjkk***seTbP?/V(> G9`C---OZ4o> hML/o<͖%fvn0ʨ8+/\09׋SȏH#eQ o'RQ~;cNɀ짷0|<3)w+_7ضdE#c]i`wC.F=q"wx佃4xU/1MsFguTUUUս8΁{ˡ;6*Ox6 \⩧_d/taȗOtOV.+l!شvz,qw\Mw _C;É]8H$1^_"ڎ&,w)<ʇrmzYU__igqcF㓠W}9j0|Jt>{d 0STw/[><͆w!zMH&tsqv, u&}{ f{e,0ep4Wr|g**ˁߡxBf>'Moض>555/!9h0vL;O/$613Geh6NPC(=W.<.ai /a'B;pYfLR'~_ϼaЖ5MM=o?#7rʕoMӹ%hw.P4 ڄ o{W\ADiZ^SG"O:o6τ2GEE/VZ;O wrעn3{W?xUU[;ӧ6`@J7_~z÷Buo t̓W^ў:tEf͎{B$>p5s(lk>?)+W mb%W2֬]kOׯ+:lϿβ,ʊF}aYSx^}}X;RJ[8^~[G.]*5XVտ^{6zkqіUUҫvݚ|yZRx5^/ݻ/Dض(bZ}ęgbg+#4-Zĉq ޳{={~!Cr_->OA|żuA_:D^@q>W_rŵL`;@59a+QgMlZ!v(PB f(dž5tحJzZl\j^+QE2vu m[L]A0R` ^Ȣ×R;+B iEBtw.j\&01zQ\]EE+e5X)  lxᡢ_9)xwJUP__(GPJ8 TbZJt d & эVcNFP: %-0z\,JOBD/2alPv$6#t * '*d'{ahBi~]R_ hB`o zoG[䠟lY+URS+jգ_H)fkFtfB@[-oz\i Q3,Fk0Bg+iYS=VAl}*^ "gk^H;Sd8uR^JܨԗTBNJg z؜X߂(J(>9ʉ kkNϘVCF`0.֣3h( cJ9^߽Ov oQN.@zt^ҲJOj )=}aD>J鞼G밉]=2rЅ vP9RVvDNL(@|=6A>lHo+kn1w .PT&<{zJ P jLمA] Kұy\֟RLIv؟]XQ%ҶLA9>e6tv~4D ,=d0rҲJ8_V;9gsz)T/I]<0e[>􊺀|!nJ\"PMSLUpZ6b2eBZDn(:! B)h$BxXD /'# zMz%U}1$5U8kNJhS '%ӟ@.|qQҖI*>v3_&&h%BBG AWCG+k~ک݃=BSRUJE(i;, !NWàc :lR%5z nBA4 a)W:Q# \' zmt7n-w"E(3NQf [P 4dfzE@#= uM5TrggB%*C~ZON~ vv\`l3Kk? DQ򡉴&Ӛ͍an2q,۶q,ӈ5x7/}/L ЅD%=-4:"F ֲXW&^kB6ך 1@]tɽ_Rsf4@hS1),4#?; TձCW[k:AɌM(_xYڃnqlEzsE{pzM)oK9"N}ٌ$qB"?޵EڄR*5?/H:!O{&l5+$2 X1e /; hґ/X_Gjz 6L`}.L =;^ړsz Zsye^o$ QxǔnD@`&f^Gͭ`?d IDAT~/^"mwßi'uA@6PRRrm$tWY%D$%*ϱP-INe^a ?kh-?֚i7@ 466>Nx?찳7|j41Má4p(8e(mx^0nv/+RJ}ߕ}p:{8#8m#abGu]AGӾn:XR87Tty2IYa=rqT|͘2ˡ1 DFH)֭=w *,k*0}[$jAA]:SwYKGEKLdTP}9w|оf7̗Sњ~mO=߳}e,w/׊۹5! vq3|ƩR2x8rteˊޕhqgw})/˖ R+=v,3)k+(dOήċsﴱQKiZ?zh<`6=z.i_J6Mȅ S>x8S5ϤO%T)R*iqpS.y^Jج;9F͠uI׌ 鯴xB`*ŢrEP[;J)S˝܄OO_Μ _~E+'7w vYhokjS~þ%I7ࠣ||?,NMwP.D(8! Ywq oܸq̙3u]7***<5/)%xD߉8CK{KKK&|69s̺:yߗ_{qAR$M&"}V$3b.1_ILb SZ-WI P`| )Ӓ@,"5/A$~sS⦌gl&EJyx2=//KB*))oƌ;p@+]n>k648c|0?< 8qRRJlf…\s54[xt}|Oxp]րdr{GUi\0mۯK)G{3۾y-]bԩW7:tА͙3vg4BXR-@+h8cZ7cDΛ8!{1lذnK(,;w( XcE/VJBp3qD Re'ßO=^ze](^1DOOu0eY,^P3MӸ>Cm͚5`B߿_yIIIy$4r֬O 5ŠBJT AQ)Ѩf H jpm[FAF4QP \񕂯FN ݧ롿5(:ZXyWZO {b9* 9gҥdvU][%H^5ix837|!Bcc#BU_GnOh4zeYw*KiD"HMSZ(?)~=RCg{yV|qJ{u5Jl 4+'@dt1URwNMg(xW9S$vyٿm3`V\`sabrC o ='x"ݺu;dӦMo`':--~Ó\~}crJ]=:^|}aY}~z nKWG=lRmC=qqǩ)Ͷ;_# (;0+̭wYX7AzSECĂ[{Fh3DFS-%&, Mׅ]6s?3s6@E;3弧A8 +V믓azϸN}zb.C$-{tڕ+VdVb„ Pï{0MYz9&L[oig&ɿ|WݺeHرcz͙qJ#?t́mC(k; ~bAU}`ƍ9c^7)pþ{;CF E;}/~d%{SPP{>I#nH{)4 Zذƍ~Z_ScCAXىN]P4c7V f0PcAO6EpX]k_*BhSIZ$oT AizVA0 vJإ"!%Nac ,[ӛ>Z6@吕U?xشi@Q%4۶}iF }هw}˗ӡCbBšqI ˲ߵUuH̙3ǘ4ip&Q#GJ]c,M~46@FЯ+t*`pJ LkTo8q.CUG{Zat1 ܫkC 'rQ=gf/:ڜiJr+zO>+Wz~apaDmP(DUU_|illdԩռC.:P[ϐf3 Eʊ^s+&BɺO`Use坧֟AK/I"ѣhBjkk 馛|s>BPYY*"?90M)%}]vmUZ$ Z[B"0K%oV*Gp7#OYL:ni8: ?^z59-[n >Ux E ;f`ĉ 1-3Mxo)ĥf- @VW -쟞gq8?I?n߻~Le"A`:{E t]OQ]*r=W+o7߿oJ'HC<qL4ӟxЭ)0Y_&L͛p!oԩܹsw6{ 'd*/1QϞ=zՠ3B&t?4kf͚)'{ Լ$G@FSf\"#hMJK:s.%6X˅fԓZ>1$џzv#a()rtݡwWݽdĉ:N?uB'/rwS8t^yvϞCPS9eᄐډnh ȇs0F/ow206lMrΝ1.,CVqqC-eYBKUSSZq,y!>o4!$4t%7d~=5Irrp=BpϷgGэln!O~PR="~}o·!]܋}sA_s89wj ֆcַ=?{9: .b2'>}iFv0֭n}wi\ziꌣdѡF0Θ176[MӴ2Jcuo`XlAYa'ȴDJ}x]B88m,؃7C!8أ3eaz.n -]̈c}/2E=T:x<#!C4i|ӵ׫W/|8ci!7(f `ɒ%~~i_G0as#`lv#K޽;Q™D!N#==!QB[Q [r170oiVMd;OSfx>~uh}e,ZɽȺ{arnܿMhxeEEpĥеZ~ PRRۦBNμT{;{zMC3~98[J΀PBd~L_-݇9r[S~k#`jBm *K.uʔ+.H/FɨQZCϗ=u\]p`gy `ڴi9 /K-NF"pG%'Mԩ~KS\SNXLC8KΝk P*0n8 >;|jEׇOτAi}>~Jp'Ϊ:x>- ;Ç~,ݻwǶmɤ]O/6)[E!dQp^W +W  ozx| *2_^7LJ%-f3ٳsKFz1jÆ s<#{h4vs]opޑZKWoS[+,tF j:-( Z%R|1 XHe[ Qp]`o{-9Ex8DYu|iǏczA2Ru9*(;F)j;ɓ>}q1so|muU\jE>gӚ[ns!s ضMii6lӥ?QθL' =eMQ5HOӹNY_#pMyN&IgUY|,NOP)ؒ衞=ώ)"Tl+Rk~@ʵ$_=8txSBܧnpkjE\kq< Vו綏 Jaɿ3fPYY3gΤoȥt?[ [EE) )go=נ'N|#3cI`kSu䓵rn M-om-דdx6ԕ:C;i\t,~Q̝;P(t6ضMS-.,Ik ?pLa;vf &*S~gpԊ 8<]uUcȢȣ:u*+B|L d-۾Iՠ[/ i,T1 6ZPMr; gEJ(71Y0nu:m;HWgZ='[ Ivzjɤthj-F RJ;L}PW.QUo8Gaȑ!e| ]f ̐?y:vwU݂i^{]WGpb`ԉ矿f D/F~z9}j wc4c՗=\KBS6y*&jA ٱA&"%ިNu z8 yilv6~ T%If͚Jwu}e1χLR/)N~GeeA(" QP8{ΟVTaKKV ކeYFuun4 \Bw+~kSr0`@t:cw+^c襭ǗzQ8ZޥpDһ3|0+uU΋$% +XXM%. ._Ɇ.ٳgn:4P[R[Æ ຟ:ںy^ >ÆSgK.oiBѥ'WV_xfMӠ]1,˲׬m#]%۲\kŐab|8Α:MʬuA1F:\lM`iSۇtAp?w| "c8< W@w^Z\ʖ-mxPS1 IDATҹ ˶:MٳY:9iԺ 1{l-Z3w)긥iݾD$o9s਎LBGܟNK0ť.^5,mS_ks.JPZ*ڃt;< WuNzK/Kn6dCK$B 뻝847ȂaYK W+/@x) (UxWfURΕvVd=T)Sj[${[$~s82 {']:{r]iaݶʍ؂UR 0ľhpfNY"H$5inzDr~.e3,8u; ͌BT.7w0VhFw 1m@// ;_x,\)6cvyšZ<@4 9+2ju&/#=QdUҵΔY21H li6l2R6m{5K|)-)@QQB]u_c^\gRʳ w% 6>WدS^K^="R""Gx=^3K܃cX,F]lIv JoP鍹-T  t7zW$7apnJ|Ba{p+٥Lg%8‰$|rz2O~=Ud2ڰ3_㹴 G|({NmElM9lRV*Զ |Aiy0 ÷L9|kT}ݶmƍNr?VZkU]u/ﶫlۮh 1m/) nLa5$i GY S )H('nsj]׿piӶK[k!_,r8$,Ĕ- K .X->I`w׭sTm~ $߻-hR\?}>G`x6!\)pl,fS/`J-qlRgqi;_AXCwӇ?z8t== d LK&: ׎*J~JFaLK 79tLG"xW}7L1T0 v"t5^'f:v< > r\\Fdt5- XV{kgH+pqub/=:+Fws?Cq`P Vob4 ^ ^R;t&' _91UlőJkumlzf~OʰaBpgsFZ΃\-wSOeٲe/<M.3ou]IM #XwC/y~i˺?Pa:X;vɮHUY{x'T u:Ҭ.Um lKbeCpiҮ_3gV$=cD 56,.WA^~fNhm]͗dih_.%kPt˦LD)T jjԴ֊b:Nv4%r[)-Bq76y'%B9}wG$T!'s'sN4#uoc.Oj]wݕ}ݗJ a…\;!_ W4Ymi6mSGǶm;Y}FXx,:Jç(*uT`dh;EqYے6E"`p   ۆ0u-W QJ.LX%%I%샕oL2}ODoڋgy0Otrdgճ"wP_9e2"- 8NF -oVg$Rp50|WOu]aPO}+O3`}-WuL՚j/;u벼` NOUV6+W}ϗ^q+ny'WvƌcUh!;-Tte֤ #"6&d2t"hl8ĭybVF/ QXz=L&-[QR^Z5SZ 2ʊTcdOU8];:}LK~zP67INsSCU]7/sX^i+W L@Ϟ9vb.t'J3↋sa{pwsgDn}-Z{jEoBi,K;Vn٥WjOG0LwNp "% +wnP*2L`'<5q@rЮDC:Vs冩* !W?[V+cD$ TZ>;j^ϓ~Sl * (K0`Ipqˎw`VXJ vHsTO2x:􄳒זplSWTqo5N0`~M{ua"b<>DNI)P\;uQdw0M$V`+  ']5gg&-1CX"j c=:9e:? 4+ mJ,bjBFԇy[jYs$< rh%6L޷B,nVkqO ꥥ cC؄ \I:MԉR`q5@ÀEuq_҉WVW6]R$2p\ F$`2 !ikcn\U͐{ H)fYUD6!PWWRRf7$Z_Ao;Cm-H'+in.qUm|}A^mNe[oN,\s/|u6ZP]KW®ݴsz[:~֭{‹Oe[*)=qȱuNs'f{#B$GF:Z:Z.mĶ$8Hl]"#m3j)@4*`[@9Ԣj2SYֹoj@RJPZ 8nɹN8-9xwsu/Q%+ }~wTA-X ÑOj歓vv;d$@`Wb5T -OkeP[aA6ov2Hߨ79?UmKmd&p(j,KԐBua+~锍aSjRL@u=G({N?"1i\1T#&%w>iH7Q]˳тkKڗ'4yMf'_!ismpAۂ`] =#n;.1= TzadnL:Ҁ5)íi*fՐM[II$5ZNq("1$ɹ22c6y$us;6S(ml.B45yޡ4WoQĚJ35 ur1ZI&e{YVݲl,KI{v~ 5#k6}ㄍ" ZV4C0Kf#Iz&2/E4<-!Q9xKnjnFj n~Txn'`z-წטJFT;sSM3x%|:|8k !BvB 26b3fVHk#drJolzNաaFWs3mK2i[! %3i3[&c+F 5͑6j]yS!HYaѪ!`O ]t|PS[Q0{Σ1#7o |r w;,mXC/_O&Z_WG|ha0oe.CBqH40F6\$qwWL)h@D1XAdP{%DM2it&H'mILZZ$+]u 5,kGt_.R (Y5˹t[))#v'aF?,kj[<ɖo'Z#6Q$mӥrȷK-^](ߍ|W*_tྦྷ1~(%an`kQpyq~8dOn죎CѸA$n0'NȌMRJbqH 3|DѸgt=W~{q_$rӅM"4ۖ[{]fI?#=֚@ -:"W:JD{Z'b4[gG}{ w +;s7_<&µG xNck񍂫^WWÓOwa(nRpx+lV;ܲ74Q:6Ae 1L8/W돟Df޻XatL4vC;Neo@R>m (#qC{ #@XK`2 d*1/ED 4Ϥ%_:eIdW=Q"m8{u^vک>}jܦq ԡΚ\g`Lhაo i~T8ۙE3u]nFr0{OXmYh{"\c(B}~"=L| $ӰpQtV[NYFta[4k%)%0dHk3@ÏFAyıKo kl ј1!RBJ^Đ!$a,H!YdsC$aOYRR)-{ g.B&SQ[!CmfP]krYM%+ UI&b&H9ğH&,R 5PXBD2nUUW!C*8 t>bpsn5 6E i] Az^_-AvJapW3vlep~92\{"/^.W]oDuαI]͡3.:"<"'nuNƎn(gC/ >赉^m!%<*6T*KGX5o#ou>οD=Mmi ’i'/8_,ޫ0llÒOj1CM뒘)me)iqTTRQ֩[+>m-^ڶmw9gVoh/>HK0CO9"=d|p[6 /5irW7quM)lKf~(5=TxO'7*b?!:ֵ¸z|HSȭ5Yujӈxj;nR "1B:HjI^'Now1BbDtӇaqǀ9ؚUxg Cj+ŋwJ7c3.[98Ցxw[  +'5]BpDž~l&Ř[4뷙L#l !}ϙKoHp9{MQi{csrigyUD7'ݑ͆n[~U:Ha/(%[:ü0ʹ[D\>~s|)aux5+tP ܎h{`8c7~ޯ)ID= wrn):Iن3 '_ gª7”g_S5v}gmS9ZCwv2&qk` Y5W~Q3|ͩᔝZnK= E oz͕;N*R{Ca% /h<;7:77"5'‚ e_=Bh`2xA%qVH$o^dҗצptqƽߴ_a#$d 8u[P7"ij8ȉ3 Q%P|w Vc&Mj㾴[99^ 4^}uۀcS>I?Ab1 2 ۝fOP(0NIRrGc/ ? lZH ]44JAyDaw{X,FU-@'0j*9hs"p81r:BpEp`I57mI[AzpxCy}VyaC6Z +s3:|P_"4UÓtIxv7x,PSwٷ$zbAi^hw[˱ 8*cir OU'wTx5Bd&|DS=~뢏k#6I`ՒW: R :FҒŝD>RPCmknSmuUMZjB`,] )Ec`0yd1ЈkqHC8+֮g9P.+c@d,E(Qg}zҦ~rU#EAņj(%HCS0OL\G_`VD"R >8gX%2iHK$Q5u5z>RZ~qs!sA)d ށy`ƌkjj BH)fƒΒ}oc3W]?m΋;.uqxYl^9`c#,aXWM:ȌO8Oj u!i,t.RRbiⰲYYIwIvBXڻFH$28J}η0Ryy "1(U+lNևy ~?o߾_Hp.t|EmQZJX~:ty*3 73Ľh$u݈:xawF(aȬc~C?C]Gȗ_ԁ{d˃uǤTҧa& IDATj8` ?|Έ7;w2!V1G}-PpT=x9uz׿]#~啩;,gquEO?fh>qbo*b0ieX:xKdr@^$-{rxٿ.ݟGK@C3!MW""GMis'ıՂ=ߦiNn}N{Ȋ 5?vcS2V}=JUꘫ 4=oy55uWĖ+NH);y/##1;x֘rt),j&)m/<.f܎-ızZdjoLpg4{~<@fg$rgZgy{5Wo)ⴚȗ/_Z~a2kknUSm袋¦i>q?]b5::u8(IKK-8:wK=%/6E{+9q %wc6Мd c_`SEc-OBN/uDʹ)\֬_Ӗ-GLF^vl;d2 4(lwpn9GgUȶ0 =pfIfXs:wp;>$up7ڭǡyWiw8SnPׄ{YDpغU|֭[n 3"}<B>L&O M1 N}hhۃid6o,S[Cץrg9ძ!hܺ p;t&Njs~z=9~W*F 5;N}znpt:}>Su,׬i*j5o~c>?D2ih˵d,WF}?}k fkH'TKw%&q핂Gz 1o,|nhsӐB`m|G$ۄ#t;;ǰU;G4ZpGx϶N^Хl(w4n3f3N |CpM7dH˲X,v񲵂S.#XYz4=sqRSN_)Z٩.7}j{HWpl|)an;" [W&/x0) =^t:=XmtT1cb#v K ]w~8,ˢW:O&j o™GHiKRSq5ћv <Էɖ=Ô1R2w$O7_POM~z>l'<\o &NKߑ8Z+ ,Xx)\ DD"lHuS[ .uW͗^w&"0MeLfh&HȺsápӐ i$ I`Ǔ2V_ :<ιHiL C6MV-u nf[#p8/2O|6Zbu-ԃ/kup4W OUD.9ᕽzqn dxd,]eVѷls =裧744jv{ʎ t)agUz]`K!(كlc tCoŭڷ.7#e"<Ü6yƎJW;_9:zLRC&YQ&.1:uju;QEV] H!A430MhLz)؀kH5LVm˧9 0mmo~϶@N-tugk1~bYMMtx"? T#<2;pf*0&Q%?:HՉ384шyhPc&> a966|W}6@(Z-|hĈΞ={ɓ{S(!Dmg{a555o=3viӧO%wSCstOm nl1 ~cmw|O%p^{5*ss BS!߬Ak^} eݺq6Už!'I{vmGk)ShDoM=/$}ciqB^*vK;|s Gnt,6ARisb?Dii׭[h ;/̷ T=zT?;LSَ ֭GHÏ6lظJ"TUU2 s.#VJ3[. };I;|N\um[bm'Nw6DXFK_]v?RB(/,3>}.7mF>+#زEKcB#SWW5 7Ǐ??/7b֑#O̟Ӧu .Z߾^ ҥKtI_pѧLSNj,^,_~i}^[ }kuPN&9ϡPI'e|g55,kl,=zKRJJK/8蠺 t֬|L,Ybnh=g|bTʐRڭ]LGuVGm͗ګ쳢vd2E,ch' &NX[o}7M𥺺iczT*̈́\pW|kp53ɼqAC%ڥT)%H+5 XXWGso}J[;RJ o:ajKSkj੧BVd2CohwB!yGd,_XSS'!N(,ݩS+xq8 3g+?4NvB!NӹsxɅ{JCjkqw;4c' +WSd #\l\6zB}}풻;{wh(xȱcƲK<򈐽zivhATPY)xݻQC;l+Ӂ)%;f~ŻwUX JXOͧ)i"el)%z;C;|X_X2C#m2+DejV×ص#~ [-4.(;ht{ۡkN#6? koۋ%()LCnR 4BDQHFlU;J):NzK>a.hD}dbkʬ 66D{ڡV/`ߛd YV-VL2q\E5 wtjٸ#QO;]'I EAa!>FjlH=W}}䔲u. ڡ6nEsQvDH~ Sa 캓YV$z@v2SLF6.L#՝RJtͅ6kN uSh/T: ">(5^0^Z ڡVڠ.݈1ȬF$?M`dz3$![LFvC!-̙K+cHǑ`@]s=J9~r38{=؋eFPTnDEEQxIԘh$jS_c[Qx˹5gw]zfg? LPӄR1TV*ET#sϣ 9Ndծ2rw5%;*JM%Xѳ{h4tF+( YA0|(J٠$"MI:}#%R& 7Hn%HuDBS_Ly8qo_HϢb7?L#4_MWFTJcdt`%J9R91M*eb,Q|Fax> aJ_ ,#+.#J.QhAh4ax%ESW([l$?(E3rU^00G.NTd䜠J M'aG~͟u:D]ʵ at>FW-PUgiC D ])Rzyb86Q0*X%#bF2ش7pT뼣]8]޿*M]*?*ZbKAQV*1R¬WׇC>_ ND",A² TM_'#`AX/UQrN ]0DžMGESw–vy'yKk/%r7!TaW=C}e xay^QJ!p~WzΛٮGٖQF(gǪ~(@d *$|n^vL/o~\)mF%]JT<֪4{ȳ00ZD9ɲ}ȩGI 1wG?o_)fтh JJlݕ(zBHPNYf7ҩlW4I Aixp*xL|-(FÐRnlOlJ3ăQlJ!Nv}dS6n\00MZ妉gƫ;Rkvk4r}RŀEsE1%fIuJ ǂ- G"%G<˦|4 =ۧlok4BծY0  ~hc(I$CwPispZ6Qlh@/ ^Ivh5j'_a 9.tFI&*Eڦa-u_i!Hz17HKQ &7luq؍6NK|El4dE{IS-jjQ8F]pe\U5"4,o\]mV"%z8eq$6&pZRs+Qk1q%hz mk4J2_3BENFt[b_/b$$\7{A:pdBgvLr]-f!"Yr?f) h84I +aEoŐ{!\'ls -] rh4ۅd"(c"R1^ӨP$MHNq)E49CUw@6ъNoKńתVw.5v!il {1 %D{H!I!9mRS p6@JEٛQa =!99{з@ͮ5k4^'^\䶧䷬ wT"$kfxhTKI<ٗѯ^=Y*p$Llx?'[R1rhvkv k4^G)rlx773ăQb HQ!8N(ͦdџJT 7+kue3+E¥DYuW+h4Jr s?,oV"ށ$ِėcܨLwIβA lddKEʧݙvLA04Ox] F5vDYص򥒀ix(QQ]o4Nta8&SpT?_\TLx )`NJϵݿӴ]I8bÁ>dI+Z ?DKy+) [ IÒ4Lř#ZenDlҩ}}k|0Z5M!@T|,6/2]/V)i ; Qd2W,1~J#QBҼ>&heHT.I &[ӆ,3u+tF+$3G:_e}6'mC(8&,%qu շ!ЭwH&K [*Vi饱R;t5_Ik4mN]EQ{{J$IcBCs4`!KܽG63k lZ56%.) ?N_~߃*'xh)BI]JJavy1nr6*Ͻe!e2>ǾaY4_1k4m*GU;{ݓ=|#" KU6_X}^Axf8pȟ4F)C]`oz&v/=SY)Ǭ>fբ]l3Rv%Uن6m}{0LTB2AҪ{ IDAT$V8RRwKB)H:CnmMRm >H<~lk+]UB FfH) (no𖿷/ z؇1b cėqB$; E>VڇX%؝wǩ}[)<1}J(bOl?vѷIWKh4ۄu([2|O˱>w-}7J|Ysܡi1LMugYyE1c(J(HV߂6*S$JpM3d2` QŽ:~9>3 $тh ajkWDf<剂\;1bD/48ȸDOJSMGxRZXn=ϛǝ K2;K[}lE%{F=~hAh4[M2#?U_FJ̽B 48Ωx)w$IkVHbXwB:ByRd{m̴Q7t΍tFU$JWdOZLp-RD\Q~U3}noCY즯;!iCݱAVWL"*]7躯=eѧU/^ 5uwNtFUH) !?>>|]P7BSVǡMJ©qlkQ߄U'ӶzoXsr3ym#,6L ~ h4Q-d DgONOotjXNtFU(,Tź3]!O,8n+#>đ9|F3:(*_ 3& mk|B/=ߙpF]lR*PB-ދ 2.tIWt+& h=Ǫ!2tD7<} l DKm z,DW1Uetĝ"gʙ3?隝-f賖* x~ڈ'\>aXEtwUx*ё0oƎmѡlqmaKԱ{j^4{\u΀tFH)%eTFښN&jGdS=rZ0ЁV\RJT/*5od<9y33T.#7mFoS*> S:J(U1b@J\AB3ם_2Z)SҼ" VJBD 3+\"▤}+aQEE.n|eq+Җ|?(9tAg3 ENтh65l0N加Ifc}Gv¾(ZGY<5G6rWz^k=_t}WtxK|O:{>wGGkv Z5Mb7jX"Zcˡf tNZ0$oNv~m@I) O Ҹhrܴi+tǵw]ƌ8*ivZ5M qwU!G;HJn#$q~֏ R?>@P^"}LGcB䔪MqößQhAh4=BF%?TkB k]C%Ucr Q3%=eU!:'-"[ J "A, lCbVV}?g^=>]тhzĚ X?11+s}Z؏ 3)[޳ʦO-ߊy7ӻn̓ÄwOa߉}hAh4=@:%œB.| {E}UDvb䴦'9ҷhwU Ck9UVf]E8ٳAǣ|y̗V-)g& $,h9_ tǐيw1@4K6Q0?5VbY^S,ھߒt3tPuM$qPi)qDZڶu7JssGz6MSڶeY;5ttI",Da@гg,FXp~\˱3ͺN)`SCB ST~/b5(Gm3k~sc_/]=т&$ s(GÆq;C@C+V(VPȻ~9(~0UݖRJ׻q$/RObuUSyO+n)+.JӃq1# })xy/4SJ eK"X MqKCN?Z5 -^!ceeep}M cx U+Wb[g--|蕖8w}oTR[H>\ֺ y0NWIbr<=N(X֟ ;䋪0>c@pu"T,k0}DnmN a;(Fg?JHwWV~ڠ)-;h ]]bx<f&)JJq\qPI4lB!Պ+lh𮨫+**zwʔɟ<6 ,z:>B*uCM(ٮk$ZkPwN1u4PJsGϲX;u:}I~@!Tsr!P_?\=6]=ЂaضͱmK3,˹hSV~`K77úuB\QWDz OWZ[[to^t%q48 T,\+su% C%/|zYR( Q/!{X^i:bѱS^~6B4; p5.cEx UK+~=^-ڵ޺ebjj1rO?->$Q|9qܰԝBE?wDQtS %kF)d,Cv $&Yud)g y3>o.+ P.>A%Nxy㔿`z*Z5;-RJ T; j:")S0v2 hW?59V$6!W\u}5̙-l{؉DBH./R*>_k+# !:k;%U6R(Ar[h֓H}ɦ ~P†AZH }2ԕ‘hCg|F;UR??!:~XBXS4Yh4 eYI"HozH)I$$M ۪jNtWwƱ>(ȽnwYCCWWgVrV |/'xG [K>id,J9EطW)Pk:#@K*_+UiOm͟]-w@%Ju{,g9%i$Xx<fq1wS2m!am*lH=0s6 Ǩ\BY܊95KW_uc!zw~D"1^)5,5M4bm, Yo㱥D",-//_>۷x㍖ÇK0R:Z5_YRnyM$~DϾ;2xx@Mp{<ƌQGaƾAѩmN{>ҁR~z^~e~i͛dž `7ޯ.\0vn*R7 q4M<FSR R f>@ `mkYWJUJzR޶v"Az%%%~  ~TVo2l6{--ȕ+1VrFkƍjXy<ւ3GkK_F!N7g{ʽ>"~[*'[ofw(']ߐ!C8s9sJ|bO2;,ロ;+WLg:_'A·pKZ֎Jc7;9s  ǶjG,Zn~P(+{m4Ϳ޴iӦ: sv6jI z<cM Z0 8Nni,Y~ײ^,#i:NkMwa7 B`x,{g{7 W, L#U.a(in9r 4;zBO|]rd k jƚ554xJ׿uM]x%?omz]0ᙑ1<C§iUjr`?oÀusײnƢ[RNJ+ꪫxGi+=]_AKd k/(bmh>x6}%EEEs=x≝B}DGJ){1:t@Ze;oΡ ²t@XՎBu|}.!D4+;?vmR[}ſҰ*7u>q1Xp'2{ c?b2JJ5_mrqhj+ 2|Odnu{{챬YϨt۽ܼ,׋4N~;K; ijjOgIM)ug,CзfM'a?u]_fۉQ--ͳJJ#GW܍_Kz޴`jIHFKm 6Ģ6hkh$^bq 55ه}310(--#8BѦSRۧSN SO=뮻`0H vwvZGɂ RuBz|A߂5=&c&RJ>p1s,YBG d>ܩ6L}nj${*9*;IM"l}F u[!, $86H@rUV ~(+>P]}Kܗ;04|vB_4ur"ʪP =y8|gsw+G=u5u(ȟgRc1vX`'Q}+sJ_wAB<(Cc34o<.WES*q(?"Zgxc'5jTA r[)86mb,^EGŞ{ѣ0`@>:˗3iҤtMqYzWjRxkԔ|>Geee쭶f8Sx0 ca }뽇m(0Mɓ'.]p8|!}1B b)RA4b^bnـʂPJ0U@E)O)CE T/ &pIkR0Yݙj戌ԃ\u>De `]= ƾx+44yL `4.瑇o`kds`s5/ܧ+&OUW]QG>׮ƶJ)8Cx8묳}VRV^?|n-s5k_|1fkoi;C)w͹ a,˚WY{-Nu//{'Ri>oH$2$5"+r0~7mLF CR7IrRfPX \e.g~+ٖu 4fX 6ºM {pF(ƾ/7 Z繳!w_y%v3g駟Lmm!q:)EKK ~:O=T ??0:mَx3x \maOtՎ|xW1cFjaÆgmr-&aYJ)xK.{<}fR#ř\cᠩ0s?=j! B,b :S{Rj\QY9S^C)垰!044"7ZmlVC "^S.e|>Ç'BBOPYk2e֭[!>c2aLyy9ehlld||g$ ~?o6{wqCSN?0 Ye4 6*^/Df?dmsѕ̝;7uO>{l IDAT;İaÆf@j4)ss5^yuuu3^Ǚ(iAU8h ̞M5dksz9ǭ \_[XGwߝ͹u(lpԵS ꛠ]vc ;&3<#. ~_62ιz̟?'v߅+7s{9w_bL4i1w\fϞ]xja#pW2vحnG&2~!SLNe>}piq!G19Ǿ}2yN-R|4߬[-n&1p kN;}&GƆӆv~k@",~icΜ9զihjja+UЧ&Gπc}Kʆ,It XYVfzjޮ#_Zʦʐ\jUj}nOXR:)]Q' IFfBBk;E\|4ᖏ0y2g.-apxkp59m )%sGwrn>}2 wEEEtAy7R;08ꨣ8./]Jɘ1c6lXYulڴޛ 6 ŊD/1xpKsf|.G!հp!v]ƍkkk .2u'5gi=S[Jy:Pۯ]^o} &gъE\:A?}s,:cwZ۱v%\nBmз=ZXZO s 1/azPi#Gv+v"{^)73Y~b-keܸqũ:R嬯H)a锖f%w+V0ydBEbx?p;t+;v,7pC:?p|ڑBJ)曹d0|˲m(* y晑0zVʝE+O>|17l4MY'e ObeLF 9`A"'M70FʳӾ; TES{{#kWq:h!s,.9{T;N |CۣIQnh8;浪=PJ1qD ݖ[ǬYx饗0Ic >X~[ x4,]}Φi2qDo2qļԻeYtA."d֬Yq7~_%_\8x0$L6 !>9ÀѣahT9J(.駂jkaKTeeCoҡCJwCt&lR[[[iӦsM늗Iq-_Ox") \ 73udٖhs)嬫m˖-cʔ)477wC?q+vO,eY=V[܎|u,Zc"dDx.ԖnXSyРAxr{馛+ⷑH =|m1nMMM'uM0g]sU|ᅍb_\L扔,š{%G8^4WWWO>q_ .| 9J-7*2<::QFxA^R5{&u5w=YT.]&sެ8 w1F0˹_E$r nٔfsDsx8G ?>-ٶ`};8|7w[vy,z`&},c>s"'_j*a`_7O} bxWȑkG)9)H'Nܖ[odR>PQQڑ @cccṋ΅$+/4fYo,W_M?uՎB35I] l`f`\x-6$Gaoׯ)-+qQ3he0h9 ^{鵬I;Daif{]]]q}P к `0{br5U>]&W TpTZ։J9|o{]G*g۠=?ngJ;ިJ~#{ Ǡ?26!9(rg(v.(0{2}|.y"HSnfԱdPoy%G0$7`@57~iڎl1֪G虂~; 60mڴ}?c ss]Ņ}>3gΤo߾kkQkrrߪ!bk~WΘ Ks7K_7dƌx<_~|嶷ulu˻ۚX,iFyyŢ6S\дGgj/>? >i;R&X핕ޗ:V)eΎR ۶ { !/}O9V{8|,1?@Y'bb)>\}M:2Q>kGP ;iBnRΧ3ut`9e^YeͲ3A(#rNt|-mOaȐ!֭qʊKcǜE̲p;3X߀@ɎXPiM Ko0yF*pۻ=P)P~LFp(D!&y,1%Ψ#醚9}:.u)PMkxSs+Ov:.p:/r~nT{|܆fwF.~H&#'O <;;9쳳.} =s}!m!!,dC)wM6 bi|-QZZJUU}IgsؖPJ0w\R{ZeH( \k~RݖHUU}xYII)r4"cOkB/Ĝ=$sC  2f|CR_[:KIJ ߰"aIeZ#=A{I<(]Gml ]o[ofq?™ 0P.n]op`kjp˃Ƈ b7.ײ{#?YZm555Z*=ej!K=_vqv:NVWWe{޵fnmN X \~ó3rH|ALն5kְ{ֆ"|k»rKf~ Ø;RFKANȸ_p7t4X^ܹvzІk+C77ҥ?6֭33o.-vIkq7tL'N.d[3Er]?a ~T<"$Շ2-46泌Guxa촠sI Y4>;g(={p邠 h4V,[K5j_b⛢)^FFbD PHn1[f\:(s>gvfyfg23zܲB Lͤ]nr1z!}a_jCGKS6? .<;p#A3.<;4$^UcO?>_r%!F^mim웂q ~~81wuUXQ.do )AapiY7|37x#eqG&ɫM·]=ӒUKO][_;Vl65oYf붡 ig{{ڡ߈3X{TB>Ka Q`5G{•W^~ܸM2ˌ3rC,nR!&! Rӈ+7^kr+TFz(ԕgEWwq2M۝(>QuR&BH];D2 6|8$jxʈ>rBrDP5 ך>=oe˘9>FcwRuיu_>/)lie0[=;vߟApc׸: ]SO=g >090U o! Vx%O ݛ` -:o8aȕ+W,xhc$.yeVohpj}c|~ߖYvAS4𦭠"=zk~Mهǎfkc1:S)9䐤l6KuuuW!'\.7vd Kȸ&h旑28H@ўn?pFᥩ$WY_S促FGkqBJ;Dǀ|*D '{1u%S,hu8fV/ҝ2h^I=i37xF?s!`~: D^I= xgn4/DzBqqL0s=P__[{\ϋu3pq<n,SXJ.رcZvM}T?LݚʊҡVJ00,i LC+{dV]t.ۿC B)dݺo]=ӄ7aUVaIenk<ꨩͣG J%.]XJOE)&|9۷Ec>& G‘f[ M&mcWh  !*Ja0wW}^B:!TF7R}%&AUx q8d؀$<jّuN_5{Ԛ!I Z2YPE:,|XxN>ܢewE>,v\60y. ϭ6Ϳ8%Z`9pE8 |444(//W^tD)ƬTۡSYɔa$Jk2iH$R>ZJ8~ԯY:~ݣ ]fZOQ@b.m hiIkCݖAS8*ڷể^MkyyiFђ}z:"mNj.#D?s/{ zTWh%y{0R$Q|2/3t֞PiWhh9/=;v,W^ye(F.; 8ka8C.qUL-i:B)aP?M-;/. pfCvmo-LYTD 2H W$'S*i Aذi Jҕ6pPP7Lt׫Vm bk-P^7Fn., Rڵĉ*휓U8CIDbizϨe(2y"8Q+>O{yf}>=u}DM: HWŤ{S8젺Ќr+)( T0wJ'WD/T O *l1^XCX(<3Lkjy)NoKU>|.^ǒ%K I{֘T⦰ չR_3`>>~ڦ-Wɻ8tt2@'$$2X=8@Iq0fwСθvO(}lׯږgII2,nW'S& lSׅf'4H?^:90HҲyhTԁzµkEM̸Qxv|oSQx=Nhj657=Z_@}d{ͫ lDYphQ|i|dvtFzGOFzLJ_.^Bv$oAmR;[K0ːn3<  d|u*EXRSzPf)h^_ W`Cj޽;rKiSZ\By 8l淿-|[cOx ˻ٔq8ttbL?x.8N+W.,Ėǎ)Gwÿ}sgnv?*ڥ+!ɔ~ͣYV05"4; J_=eGn /^,W3m (EyC-ᯭU IDAT!_ҙ-=QO}Jy90|4m[7t}XiL6'xpn*} k-zE+9LApHE2UNqmy/[y:EBf.>ro ˨gf EOPR0oBlwn]K c䠶>KeBqL)/F&< 4Sz#BӒei~>c/-u@XjϳJ.N2q 3i*+>SG`t^yX{-,/KX[8R"ΞV!UD6\/_w1~ЫV?]{~Lf4>nW*Čw̏س-h.̨k5FUYhlz->[ %^+׆iRis ?Lyy9y׷h-ǥ֚zz>*++)--{EfWV VWGh@ϫָ6pqi\n̰anܖr8\գ{=;}eU٥a8NsЌЌldmV4Hh)rOH筓^fڹg{Sehp)0L)N%{.]? RsTjƊ1( M8K\rruZh#4ZodM`{w_]nȽ,ZsȪAܐ-6}kª"nje;ط+  鐨M,H=u+'S5-9*⁀g}*Yr[ᢓ3\Fب=`IxtD. Y u(ɋfxkz;tXD^F'olF#_AD+*Rb 'н|:C2!%`oB:AeCe*iD*+"iP=4&b_e'*tTo9Kè)O@_oN/,f(ݻ!Z^LT!;!UvJ8)C lj|Nƞ 1"MÀaΗ*Oj󏃣/*☛oaOUw5%t՟KnW٦YYLOsm۶mbQؔ8k2yd{1^|Et1O[~e yٶWGëY^g\>u0&viG?c)%T< +xfBHGM&ŦaUXI#OP"@+:Ptxi Cu@t$-qlusjI$s׬ZWS޽%`6RdچڃCM9ٳyK0E䍎iB|S`SJ zJ%Ǟe .O]p J/k)SFqT(=0=;oj1/һ' M&tp*TWCc#Cm:8A)T64y.',KS^HЩ=CvP^m+M%'!Y~0jH8 x{⻬j2']Yulz(: a5)[?/p(G= /[Q%-x tlepS: ztVGEܒIx>7UY1l0 !Bر#%%%~h9@CC+V`ѢEL:w}ɓ'aÆ<ˊᤣ'}fsՎ!A4?(C8VYOY0\6m/[CG:Xf-Gisi5 qT:Yvۯ&4!h%ƃq.<~a :$ȐEmP+VyY%x!4YDK:NL4DƧ~l reOLZzϡlN{7)?oiT h:)\4 0s0rA,D>ym޷lS,XO:<l3{@;Ͽaq5Ͱp)JfG~3S^MMPWKpYѡ`*$[QF`!Ѳnaۓ` 5?|Gc:iJ~%Z3᪃p}-HtA"W3?~Cr/'8usq$,Uv ;茂ugO9Fu]^)ޯ^hWTBNн/. 9D:tqԲGղD~ ]'1W O9;0 g\InԲo$4 yܡ->(hP{}K}eP²b 6ÆZ[,R(4tj n\3_Ϣ"5ѣ#AǮ#F]FiªIKr>YULC=ӻ;ͦgrfk L[oa H'V-\qA2ePZ0 '}tϩ:H gX5Og-u;9h %mS89qMMMTVV9 V7$ʊQ.t%rWH^խ3wށ5%?WiG pYt-(ԯS4zY*)8ݼ986Dsoγ@hv8rJ)hnVڵZ[ 5IPV"Yj_7{`Ք*o,6}Ʃ^ upA{׎ sq quj7>2Ù-8̖ 2.AvTR f[&}]GJ6-7{#7 {ۜ[0Hs9q9~j~ْ\蕋HvHdʠBei's]sd[Y>,XJ%ɤANi[HKV"#VVVOhi%02ShW/$SaB"Ue" kRM j'1]{ "8wQBΘ2qH8jP- {[c@@"  φ6mv=^Z Pc+~M"eeYB8%<~;>N#%.= xN!'~@8 w_<>1xZqt }\o)ֶ=^8&ו2uE9)aU#Ǖ"Fң Bpd{@Xnmdma!%]e ,ͪTJ)q\gt\ur}2:gH4' o:TǨD]Rmu8m}/V`Nr w ă@(MetӔ/YgBI"ePQ˗C0y߲z#[B(:/*ca.Cݶߺ󳻤PߚGQ#j5 n ~}J~ Ɲw8v( Ji_x!iQUܓt%Vo^%:<^{n7#4%.MG+5e|^SLMF_ ,Ώt=K1BRҿ\ maHHd#R9jL"Pɼ6F 'z4N=AJXct\ov'q|(x@lj-!S(g7@'R:F𾼭j_&%(a/47]x fM駱>mjj2ѫN$e٨uv=oK7'P3f*g';?<Fmcmt֧4S$N{ykӻ@V % q?sYw uJGa>|f/xAW[7 _, ߣ0{i1)}P},BXipH&VB{c‚b4i` |'fruPuj_]_J60P.R J$)nF!I}M]I5hۦ>p㪶t;Z6N2 Dc C{kR*o5y2tf(FTJ8hf?"l&i4}"LNC,)T`}뚻~}w-kqxzQ\pvCqEe$vNΈTT k;v,'N xZZ7&cK}Wmcil Bt0B $6 u.0m ;=)H`֗89B]< 6ln{ 9H8(Lp0rH@u8d?6mk!: 8sa[Y *Ud"mplo>,֭iLĝlmdFfs񻺶qRAB8*{$`}y RBQ":VȫO #P $cENp]hɇG$a kr8˘JGY޶]zIMxD9np-}M O臌_ۖmidA%=MyS97oӗ ha}9*>ZncP9ִVR O %Cjv~h{~ !"hڮ#J^ej_24v uP&om#x oDU ? *,8@0WG M>}6_*21j/}'z^-ѼNC@u{8`?8[ ۋAJ*,D/퍶b$)ub0/))1>0˰,tÒZϲ#>?Lp}u oeq'eXm$,߻tèZPY~ZQC2HYHXJ1 9^DxBؠнa`cujKll'ɩ{'kQi`"eh–6%Uwl6g 2xhs!<S hF4yꀖ aϞx.ӭT{/\$!-h%qH,(wԀ̜ŗؔ-BUlB-H#8<f2|5 eM `A] 7X%Ep͍2zVct,8:"cPC?; `@}^yx \z"gDM^+i) R5*3"39u*hT홈y bOPo(s|}"^ɘd-e1!399lh#'BJ)iԺ@62w_0Puk:S[2(0k*r(*PZq=qowZ+WDg)JEAyu^}aAJh'\ٜf9p/ v-{ۙ#hlz{ZOjuQ+6:18>oPn^]1 h>?찗lT-w?D-;ds8d4f0z7f̨١aCV[;Wܣsv 9 >⮀`SґTuLJNMC7nvL,+<3|KƎMYT$8[K~[ /]2o/bz[Hi%p#۝ 2aOJɴ+8{$/C~ /y/胡W5%QS|H \mhhG漓j s:Ճ+FbBv IDAT:;SSx=JzhM=#4ĔJ8 02I;H'f`ӻq=HY<]*9ƩaoH±q$̶J(E pOWC*Wh~UBhYJG:AMn[tڇ獷| ASM_uI|oyr6NΦ.+Dl:dF}̀ k28f3wy=[辀w\aѥ M$m;}j,7cmHThX" ]Η__Ц  RSDߓZz Pp Qx$R;C!<_zuG^:&8~8{7 x-x;/߅pp(M M#ڇ+ 8]*n?ʀ(;h]z{b7߹D1B7xSߛ f !OHѮM:NXQ[_~pY]$Nw[:%tgH"QiV@0,N1ʤZ؍ >K03UN%t:o|_Ć5Ylf5n RKoM8 vbg%H$:1L榷!0r8 D68B6iH"=ڜN){EUT*|~gxx0\3Fmx0)<WmKhJGw8_ 6fNÃ5< ˻5A#۠Wa5txF y:BK>Gx 6,B m'k<97֤eOcVbL 4] !i~|9VM fjd5t?=w}=l{V *@yUTI6kXv_޻fzLċL&c#F,W/g1Ie 87‰K'%q HE57C) GWxA>E`A}D-#v,k99(-R zi&W\ 1Vdg{Z ɿ:Oo'7=Rp)0@ a ~=Lพ*:G_b8 óp/C-[l;B\7sD)s$9Hv `^ ~6mZ6P HJK_GjBws4(Y%lwi('XZsᎵM37&Xi{K >7GIBjy,Wnpt)UeUuCY2Evxo@j7ӌGΑcB3яA%4WJ`/Y"ҡ-1a=ڹ ;cF~N@1OA,(#37AeP"~m<ub-0k #|Y ]' #7<}'I++}␪|~v;4r{Q nvF䏂0K82uisOXnֵ݂xǃmjA{[LQ1,X{$W5+b@A8]vpn8mS/C{<:c[Eo̓Q!~,fթ}q4J^c Y_SĻH)],#1Pw֯ʐ:rvzI.򤄊vIV N8fw:w]2{=$P%]t hoY \4| |5N(U]?1: }.Q<8, kJS? bG,1bp.5\u|{"J`/ZF*xnNK '<L{@ 45jFKh}c\"}ZC`Y8xQK 9it\k}eZ7Rw @xS/*\\PWvKEA8S/D\o+ŭGЧ!_`zPHGAX^=/}uup=ihnN%:ңP)p9G##>|uNQKS߄ EEPQx}8tiAJ0Ev@tt%3r.)0(g^z( @Bk1Z: zLmL݅y< h#tDqy ራk7-!jYς t s|_#x貺]"o H)fegΟ{2R{@ 9s2u%0-#ruu^Њ pbS\.gfŜyH'Mښo֑tO6| δiւ+c|m2+͎f۔v9IEpPRS=rE6w!RT_Xkyk")9f93<*-0v$ YAE!:Qe"sSYu$r_TX+oVC/#bR+ő)RY8HIYU5uеm 8`#tq8v_2 YN zwox1X~{x!0aa„ 444M7p1ݷ%{Z7OXK, έ@8ĵ\qpG=_dÅW'Nx9_u*w)@ D90ifO=z뭷ڶmK*?/___Oeee'Ol \媪n< EO Aim-]'t#pH`R>1o}ŜpFGB=> 0y%&ѽYgc^etOlxwx=؍c8|9GU9  }ZU Dp^{>C@= dژ¼#(>4 S5 l1t[J~ֽ Zӧs455{>4h6>FuK@_` q}XjyϞ=4靺:`yg޴/W^{wrT~r!\sIRVtUhxZ5[,ڥ>L_p0Wok3!_ݱ(Tm?)ʯ=q 5.UmXO?9IHn;LJYD^ϖ[7#˩QIt"E;)e1:G:+37gݧ^Φ*F˽ϐ!<ֵ-oG7 @%N5/Z$۷=}6k5Uq.g&m'-sr 폚1/PPc_K~&#(73Y{_Kp~x)Hw+"3HecEȪQMC~N:ҹs/ZhnK|FIII{%tn3}7m`KϟS,IWZZz+}g;Cuuuի~()+Ά+@2³qi.S >KMaBK!)\/d@}s]%#RN/yCh{2'Uë띩3(_`^ݮtƱCpH Wa2LW\\u۸q>o߱8\C?㣁rhɄ qPj>َ7l0<ZJ@'|8\|SxeUp8@ !=?m 1ǭRGH:ZCs#< >~,,**:f͚54aׂֈ1ml550eh32wA}8q7} (`YW_}u} \f:V|i1 ?.:Uib B0[^dC#mpq6.3ұq Ά;[\2/,} o(2 ]ta=mtf'kj`T1CLLzw ؽrqTWW_z߱m Ý`ppwȃGGW;a樃&CC}\93m1`,_)csM΄b`թ[H#M!ݹ~:Ռ#NgrHGk; [ Z  >= *R?~wV:69xE* KKKϯnFF;|vkQF'a4$I_z}ذN26 ˲p^zuXjՉRљLf؛eA#``)~|K<#BӉ.xţ&㐰-#=AjD wk+kq$]G5MtxVJ^yudTN< ^٩غ8 v`V}KaCLtl wv:T*uSnrݰkFO<~p3]9x{4)0}^]7o{,ytڵK]]J)v~ UVx A{Ci fzDž@+1fSql Be"ւ8Aϻ]e`k7!Αc;ONV!=0 8x \<NmJlvP: {shnaH$~r#X]Z;nCmuM3Okk߿ 3flm7l= > dB='HVRR2~ڵvC>lT Ʃj̞=… Rm22`*KCAPRI"tCX nŠ*Q*GԚ_ߦh5سCpoÖt0R{nx~2u?]DAHZХt {N ^ A (MB6 i5t]sT`o%gp _<90οvd2顇;yqmS)S5kׯML&adY,2nFCN:vl)@2N燴YgH0y k@H"B(ʃ?5"NVQJ?* Q(HJ Hԕ"&_a{|λ3coՄVwog7p_ҺLBH俹\nhcom3Ƥ8 ض )% s/>@Ef؎_͛liF6L)mX"J߆b;漽2;OiuK. :t"-q`YD@}ckh״Ll2%{l ` tڷ4gmX@[ m2]]ݏ̚~}K^]4ev~;CR˝s ǎl,fKs۳pݻJMrP@'4ZZ^۶m{qРV57+ߵNdw+'A6 Ӑ$8٬Ŭt>Ζ;s97 G^[\b2=]0_}dg'O$^^ ρ򵵵m}rQ@'M "鮻˗BL-8eSk9art|pH&U&Ys_T)tdپw}l,v>j*s=RJ !WJ)e·fv[nM477 Y愐zWi ~?dYֆ9sTKS ͟pOf! `dD!L$dx" N jY^^qƲ?ԓZ[-J)RJU R}O?1E''^qyy{. UnL!W:vRXfoϞ=yQ2RblEm{F_2 ' !Dss7x#x8#KJJ 87zzxC3H:wSRJJ)ii:vZZZzg$IڵkLJmۆanJ& Ƕk0k?@>tw,;0O=~QuQ@':m 6X,{Ϳn+ |5p(O7zj qr#! \J)wV ˖߭uOLO3?RQS3`4MQ!N5DB=;xB<Lmy\$άnDGGKJllI޽[RJH)QRRrc~BȴAk0gECUե xr9/Ujp4V_M6e_zWTQ2E }pus/TF3Rd  hdf7vy http://ns.adobe.com/xap/1.0/ xPhotoshop 3.08BIM?Z%G?201924>20141002720141002<2019248BIM%Cfͥ} = y" }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr $4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzC  C = ?!Ƨt.HQLUDP%w~43pŊ`79\/˻iژ)4,p|$KCG@8ݿ E401]p$ [##2FtTtlԮю J@\+p )XPI.xؙ!'jCҀAQzjg Pn9APmXM, ` }G*|źzS*C$p4X)OTRYT/~ lz^})rπP D yb LpHzcx3nr9S'3ST q M'%x;Uf۸F1sք>R# ^ gR#<$*zn N!4H@LO=Gb+9ѐ\vqme`A .K0% F1 ܘ ^Ҥq ҸD<%H#D_$?Kw\|ȏAIBo+,XS[}sOHvFHŕT(^i_  {Tdu1<OJ< >+6(ϿF-GR L}?V@wϽI@vQsԞj`2dn$Jq3sHJރN 08ju P>8 *0V@HOʥt&IrO\WiBq:˕\ޣwzڈ}s(@$nNFAXe(W>~F;R901*d&,w U,z{!~V= LBCHShܫxd=zC$$ @dU{p?25 J&;HU?PihJ~cHP;I OΦ#)sh< l|Ts&UeP1mA#>@ʊ2eLqO@id<֤&V!`8S}q& u=*Gp>)n"W'Zn 0T7QdG~=t`酐Hcf?Z) ))'h|ÓOO0A! 9U6B3 ֬˃=*t* u"`*ӊU'8;'W0rqL;Ks֓ !9O>ȡw48_as4E4AzrF+R:Ḟ$})3*1e tO),|;NHϵLC+I^޵W+?~E/vxb~̀.`XuRpx GT眃ґXc'ҨDc{N$PS9qL6qҢ/aOژ%pĐ>1\ 1:wN}iH{RC?eOLL Dj"ِx#G4Ԫcs@ !TNp9Py48HJܨLO_10qך{ݵNO͆ 9l~u!+)bS#_cJ)IRrqLcјI ӷ(S֥ |ԁM%Hcx۵rǥ!4@#ӽXeUYGjdd QAHks ހ,^>bq*%F,8 c})Ho hMqҦ݌9oN4ᑎ7qP*.ׁr=朅ʾU:B* 4{*p3ޟ02(U!:j7*x9g,GZ~ޝ3MIDL㊏rުX}*T(c*3 \|)S,A%PuقcTP)Qg%sUw/ScDc zƟ0A(Īґd@F'+ک̅QRGݻ>+bp2sN]b1 (99SA"<=K ,$FERFYS94ƍ͊x]e]zWT]2c?Hy ?LHLqKʡW6Ǜʲ<9جic# _=}O Aeb#?[2т)s| s{ z,S,v߭KL9zi IS#׏Օe[Fy=5k&߂9qjd򞌷2?K#C<ŶM*B|/}1]m"sZ):(lgcS+%/Nݭzޮ-IWg\_j|hV0Cr:>\3">a=.PUQp8RgP`R#ʷ +"MZ$YɅCdNP9a֩ I'Vᑋ? ؎Jmzg8 ' IRCFX 0BRLV m稩䯗[Tj\:S 1@֬ H11 v~pd@УSOYI9)ŝPݩ N4*Vؠ`S9(xڲbtj{>\cX`^tWmW/#Ib$=,5ڹ4ӌ~u>YHʿ %K/cZ bO@N1#S#P ,xԢM9BO'P1Cٲ' yn8mn|z.# dfjf`$?/Zw N,YרŀA@Qo{S]ۇsRUA>U&vo}B-ۇqQ73èI|vLj;0\zR4p]{K?"}9h0j{K4(ni9 G4Snн;  RNf]@+#Ҟ 4$lIt1i*';R`R[1DT`t3@ya'itlۀ9LO$5(v~PW S&t>ZzH{w0D#g'hcs)Ȼx`yhI'47瑘6֜PB9 ؞T}>?ɭ pnv5;w j Mpsӈf ?hh֢32lh\Z2,霃ʓƅsI!6!]'"s#־q y'NYA%bI!q4cidvmB#J F%AcF)Dazҩ1!"f^a@4[1 %Cm}w{TO qҘ1qRk)xb yDijI2TqZkT;әEHg0LEE6"f<#SeF 8lm#iO ,Y(랹xTŸ)72I!l#G-A6A$})^a6Bca&ep=hlH ק$ kX˦=s֧8 fT)H1px<jUbPSG2:Us2U=r:(h9;lzqs0!L*;lmfݻҥ dV1sӚn1x\,C/jG;1O=|`#njcDKn(\n0sދX`'z{? Ê"rL㷭" O\p:m +2ێNhR/HR,G^{I#:3$ P) \>cPd;v) ';{H)Nܮ.YL@,Flzr*o1jOzn➊~fn'J"H)TuhWeo֢B@SҮdvh1tR.=(XIjTN+mI-0NA'E-ÍcUfXc; 2O^z¢I2ҸۿB4J-;\TJh&qO5>k2Fq #ҼwPc5,#$\=.|C7'u fZ{׋aO*1U988YAq 99''jo,+o/'f8H`\#ywirGq5V>0Y>w7.]7a_6-Jb $ q\|=7gөŸ5AQKrH:9=kw0 HlWW>6 mV{N9ŷ rE)!i-JIn}sI6p <\5ggY =d1~e%"F˻=ꄚ؜v϶zdGK[Zc,P4jdO_:K-X?>\sd:K$d1)V>6,Tgڡ6; s}+׸)1lT~\#>'Gx$F!|6y9Zpx?݋yIB1cS_.Zjw2m0v#k~FkpӜҰlr 1K >wV6-wHX ?A_Zxk34+ݏJkHܸ Gʞ]r=vu"Vua+vkUP|ի R~N6GzO[HI/ݾ $%_&UpY^854*th܂=Lj _$4g`8ʟnտ:qmi,DE$Đx䓞ǰL+H39!' uEa}zIQv{y5ٟZCI]n 9qdJ'y*8G6Kr$}+lS9x8sz[Gʮ v<vF O2?za.o"܂T\}\rw(%y\n㼩u?tEdebCWb,cB;LU}T Ȁ0ӭ<#*|$dڋ7n)vF~nsj~]Wk(_~ԞhMa!X!Rȹ jU*B/ʘ폭(ˁϧ[rCTl#M|vvCۿҙ$ gs; pbSOjygt|T;C$d'"&I NM PX]1Զ2l;UOF+IqTi"ȥq:y(< uJ0FHOJl@29⛑wR FU-yRG+Q;\{LPKprsUs+z`Oyg^P^ȩWzzL9E\;y46D*HR8(:d*!/[=Ew*sR0fWyM"O$@' RRsSHDHڞctL9lc܃ԃ~0M9H@bPnƭ '] hmry%ߓ1ȨN蕈>0%ĸ,Q1O7$73j5>W ܬs@>2yDmT~(%h s* 5$ʂ9 XwdzBĆnwy@ #}}*_- qʮ[1`dwT7 q'^xj#QJXF9>M>~ 8Q|\=KRZGR P2O׵1"1 P4fey0T J!*Ma(Bp@IJ/Z;!,0AOTM8*T9G1*>Ĭ0*2 pR1y捇~, C-,mrM"ČtT.'c 3NXqq}=.RfHwӵVےyA׬حm)zӊ?DKl9/ t RJֱo'Wj4{y,x$W+0eY+/|Vg:;\Өl)ZO߄t9М9y(2#HADӝF:{|*V P}¹ImLrE8bI$Jk|d,xpn{ ݭUˆ#^O nQGw2Hh9vsW9⋙ &xXm@a`n* BȠkRZLlv$V.zp&gomޕҡYC$,~S=k*MMmq N~渔[I|Dg+G'5]yJSVfb$i0l\>ص䄘k˞6NxNY&ؓU'I Q I!vtSf:K3(HKf})S(s\vR;ACTNzL\\Iֶosk̤>^_3͜.&+ol{z`nQK 6O22D=M-tVI>B2##\DO.eMܲ e\-م,c;~fgxz9TNq;rI!Cr#}p70[+^0QDZ(_QIN#Ң}VUy&"0ԱVygcP}jm;{jv&"L`=p8DIyKUV C'!ܧSneQx q>ֱMΜ;)OsU#՜7HϏVA+EzXP[I0jpȅa1'=G]qv)u4ӭ[8 H9yWtEN=3P?Z&+ŀ=M[pD.PĪ|)gl#'~bx }OJc⭲u$Pz{+5|mo3xVBq!w rȭy2 =@WYDDsKdc8[O;h+w"W!Pr!3]V"33zԷ}}/ė 0?*Ԅ0RF ֶ ƒXKP PDZYxE FrS8m,* 0O=ʐd#CvTջpM46 2qR퉉 Yz $ezR31=i6p;~@G I*#g# )хBEFʒl~\Ӊ06qӥ8Hm雘~\Ѹ^W`r҃ c뚕sepG 9 cGJhpz+ݥ"IV!=3"<ϨG(2vޔ oJv ;SpQ(Wjթ01iwc%$ҥ(1SZA-Rm$Ԉ3rӥH"9vc'\}zc!!A,Fr ZH>\`zbGڻH^pxHpyY\;G|q%g_Zs(SԲGtT\7-+񎇑JQ=1P7O'^"L$ `F7/qPƲaz qX~ H $JadV8> }) W_4*Tr VCd$^V/jaP71KlgsB |gHe_sN}8yn5 3m%1[(-JV>XW?Ξ"3H3s@rp~b˼QǐWU$ʤl TcRL A }c1 >hQ1FXE$t39TI;'JeU,POUn}= q;9>戕Y P{2y``OQcBgf9Ӄ{x>,X_|sQ&YaԱ8*OP IHUN3N:ެ%$)JhXO01㚒Y2_ZI̒Q$oS,8o8n{ x5w| !aHzSG vx\kĂCN sTuƱ8r+`ڼ#Pg,9}zch@-S7SG^Jm\ wyW<[[H|7m鎤Wj>')a5Z6ѸWnuQYSEռ_2,~`Ybr}8knuYp%N)Aa+*ybR{%!I/`8 s9Ҳt˚}u"| oolWjmy @ǭQףCtU'v{Zmv-U]\iy7t)MŎy?a6u4-#p==\]]s 2BH=튥Ο RHdB+;ʦt*ff3JHn  ̒+yWL:]@mь%#F~ikb/, k&tǭVv+h`R8p9CYZCJm]A7!l#b؅⑐K/|z|K/$PFu*0+eʎqŅ$@h2ʠsq?ֲ֚w$ 5ٴgY~',A #ֻ"Ѣ;;&ϴ@χSR1c_~[j |%C#f{[ "(ض>c'=*wH,ndϥEHqTH.n ѳYNI>s\ce9 F6gNkcJs9h82vMdYlRr)??i9z\ ;P& O`qֺ>y@23e4<4e|98ڴ.⸎/!U^GLq5lcC>oix"sh; *Hʖ8b{{օhXz'됊̀#j-^K}r\W=+K `BcUab~LӡkWtbV-2j޵ԥkVP \RCj ѴHTm9WZxwcS_~%H;_8@˃^!f '6F;s+U;Z[k6R $c}ǥhZGaNW#aһ{?[yr ˓N8Z=<[¡RF9R6<5ESq tɂf-szc!$ҢV1::jf<7L !Ԥz&0xžBLޡjS".k{U.(r;HT)>I0ǎ~18Fiҳ1cEG>}?ZqpЊB2 T+n?Zt1gOS7ǥ4 Pwe>N)F2~>Lg1]%8N&cN<3zq( @=)T&cdRaS4?)@:/>&T) ?JP @;U@ɍ2֛.{ŋ2w~p~}LL;oZb0r^n:Rcq)z4/K|OՂTdž7J)֐l2)61~V 6nEJ¹P Z,LPSD\=i 3mĘNG`ecیSD #ڡ©!=;$5$4DOGzTqS*`T)`$~w/nG@R1*pXU,9ޛIHbدB1*/ŞI$AsJ1dl$8*'+l,IqC\OJYKf5$"$~R'ip`P;9s?\U;MX![i3*J8Ɉڝ M A1#<$ulLZ,sN+'܀4HN~`Fdl)lxNO݆hs#,:~5`W>2jC .H$ 8qH _U4DD9Sw/qRnI(!ld qU3gzTNUbCsS"0̠3)'}=1*~_\*iا$.21sQH39Ex6>q؜ɸ1+=R"YW[GH# Pv7󊄬|ܑc%`pI=3U>L9vGi,j9 0U%ܱ2 }󸞕t6eo; ^ Xn,OvK:It-k.B@Ӟi\X޸n6 e~W9%tQI\'|{Ȧ\^[.A nп|z v{dby2y8\WԷt#ʅq9crk.*m3ǦFy'P>uĐ<Ç&lvk`gƭ 0&7z>Ʋip?ɔI8% zU/^އM#V"Hm\,RO,&?:]CHrE$1sѳ$J\I !7[,r?̧͟ԯ)XϗR-RhtB)eHZLA_j˺^ D.:7m'*Ӈl O^qԖMqlCr]A!u* ہ=y]NFА2"=xǝ-xItk5rSL a&b&X'ZՂZ@ҡLA#of$Vn#Apv^qJف7&2{\u'ʍ!m}TSx];|צޕ7u\9?dKs{nH259_~4gz- GJm\EpG 4@$G3e{&I@|ccTd%y )!X:{cH ȶlI%{t{#gp8bOAPH Tk$GL9e} )e;gojRf:Rv>;E =)%0!GB~mdHZSD#XNYS+ ~rlKdhB.J.TZ w0ԕ=&swoSmˁE⹻.7IPw#*'pq_j%%Y;O8sڝ:β[ʲ뚫3Gxˑqzk*HEumk+H.rGBc w^De{#u@v=ӓVc`aY.FLcְ-q{Dj/Iq2w.@-ʉfwjֲ[KV6l^3MshU0zV(upzXE' |C]޴mibH\}}=뗵F$n*7c \ڕw%ʲi)lյXUm`#wX7M3`9$u+`LY]ܩoo_wҮ*]1g2aqN=k\ y+kx:&8`I%z|㚶eiR;BC(H=+h!(-7ܮd s^J7@ҫî1qDlgg'vw`*YfQ(Oל{ո3=J=il̛D`8뚿 h $Pj(nn{ʵm5/n#%O$CJi,}Ն?O? ,|V,p@p9uKty\v>ž.OpH)΍ƒΤIPF8Wi*h7[#^ۢ1PϸGlW^6+͂T>?µK:'7c Pr}}m.sFbGcnTk ¸U$.>^x Ѳ28]8Xw q F{)C>1>3DG!p~P _8)i0:?(Z!]r٩XR>7-oZqA4|rz4FqsQ9 zH$ev9o5> zI%ǥ48%\ zv53H S1%=um:qT7~cیJy rzS0T)b. z WVۅ'E0NzJ$r 4rv鑑dhCzZD0 铞iǓ9y4Nr`;zIg8PIA*ǷzZ"ya9#ڤVā> ' d]iNXsڦ+șejeX=$)N/,`ީ;($|~F53#*3MKeD"-}dзTR:i(!89=*VeDC?ƙ#fvehmǝqMe)3S/kz( c Bxޥnek& "Wۉ#Hxp׽yN,,R\Iwuץ7MifՈv8Vl`<5\[-t?J~Kf/owubȓEY\ ]0ecv{!B * 3X_z@ҲٔN,?Z宼Ud\21WV򮈫tPs F0@@{EΡdRaLRMUP9ZʊS$PfNCezVR=[3mp91TH͑*1Z%X䓓=IXz8tJz?w3Mxoqb^[$v?z_1VRIP#+{qpB63-Ygb$8PsubO,NX;sH?_jti [ܪ3?YIq,Uuw]e2Wz.'߯cXs#nM ַ0\@.T]wcЏCߏSbqp;ǥ$w(nTN!r+yf6 7EڻOvm@ )OS\w ijı.XOLb +rȲ 3F\z ckne} 4"eAyp=*9w[WxH.~c60}nly{gy#$-,؟V)7sA4PLv%,ǁ_=TmqO>PN?Z%ĒBeŒ?eRJfPBOiQdYY\glmbI"VP~u"GnۃIBGrJ]PδŎ%{@< Fz{n=ȃmqҹX/[ r=sZu7c,{?ZԧRc̒=۸w[Yo2%ݖ;;a-< ޙf]F<l, MqHf)?.GNݿZ/IŜ{V5y1? mT:=95bpgC MO':檳K,-n| mڸ6y.+q v]6%f%xsA޴SLpO@(Ŏ:;WGl"36dZ筚A RĩÏcҷaf)EOc\֑$2Gb&d \z֎ Ec0}Ե 4PpqY2JFHsןQ]w{zj*܌1*uRNI8dy LD\޳qzv-v(i٦ r0@azlPzSѷ9֦M0$P` 4~`S?Ɣc7cw" c{UU^Ci˶ӊiLC(p[o8ǶiŎ22H:΄;qU"D;Kz{[)$!;Q^xOߞCc Z-.;4[ 0>A'tj~YHg⛆,KlTzg}W( Ąn=3O 1Hg*FDcΓ_΀?P"vls=)7 :{Sݤ<ϕqiayAJ؞(Vp|Yܸ,C:G8MFf GOҩ=A'7N[˻ 8= ێK?<7o c)*ޚV@IoRF;}k&TIBb+' VF@zVbrz(xVp3"ce#TԚ%-o3R3&EFs!:i9 F|O?H4jTJbvpհqUd#GzUp*ʜd0NՕ}i"!a>J~$Kx7$d㐡|3my-3Z"3 cu@nư32MSĖ;I&6v/ּP՚eRf(R?`{Kj>|QLF#Uéjn>nnU@uy x#5lA;,[#O^k>>FP[o0+0@Sҳ A巒]wpqu'һh3;6[kY-߹lmV2?X֐#H9*~d]Umfw]H0c >՝9yfYyߧ]lf>;)J'~G~i >Pܘ2&1O\< 3} {H[E衖(yjA+c 7tO8^^aIC6)};hR1c@p8'XirJLm1 #-M,7mѐH>n2݀<:|̥}Y Զy?YΝ"LC(l(#g׽YSi EeAXיLq0qzgֹԯlt5y 3mV8r1)eV+˖yZXleEC`vY~ai9R#z85# 2H=ܴ#2[:N-$qe\}ێOĶ֒kx? #hXsst$_/{Y{U2Kq4>ث>U ۹ n sVVr{[$iq'd cgY,(ey5V'MqO8= pϾsWm+J >އmZO 6on0>nCg`c9֗ ?Pp1oAZ.4yHp|!ֻ1iUTJ} By"[@d+?ZB]J%Ih#TaGe¤nx"b~Y2vC dyLAlhٽh)6' @@F'GH[;Kh$I.pw?\ռ؂@$3] oG$o޽1V5-5..E͢yFm$d2H *ŝrG' =kCqtBFX1[FD(z o}}+٫h ;֠m,|@; Sa JLjX7drăaA<**?-Ρm!XB0**9HIwo5f1vdz$im0?sX !`vL{ֺ֭|mq!۱ӁSֱLitwMs'$t` ܟjgYUUօ$eVXᙾcT;4n5KH`#,ѻ=9_Zӵ1,hUPXqELzVF"1c^/Fŷ/'OQ_6izu$p<m&:3ix5a8# /RNQ?"kִ,rs캅7 VIcدt-n62#zAUi4M6ezR6yPK $A09"Bw79];Q=G=)I,cҘ_96$6'IVPIqt2Zщ ҕ_ p9#^jHŒS`#MRDbX<l::T`i˝cTy$(I#*~cQ6޿Cc8֚#\1AZ^>AOtʨmZ ݰoZxK~ƪQ[/z?ƛ3 xǥ>LӸp@ئDUF,A:xs_Ni9%Ƞ#֕ڹ#d'?'ϵIz rJ_6{ !}Ǯ86ߜ¯>③fRZb6$g]&(To|e6s*r܄y^r:6 ۥ=1Ld:{Utyr3*H̱[ϥABӸS|dv\omTHRLLUgO(yюFG4'j|3Z 0՝BISלФ1%$RzS#,^Ohl,62FzzԁHq` 9@t@mI5Q@N0qCFNӍy+2Cs8vv +ƛ{❵ʒ$74[s={ӌT_H})"3H9^>FT+3OƢVg98>֬Wo.O`TKf\3z:Tr.w 3Qn2.l5$3f /c W އ1)<0 Ad;=^?s®$`Pe[w9=ڡNܤ`|'>qŒ\K-({gZsBs֦ Ve`%]9";sךoajƩe"Tc'{aT缷fGqnFE^I=۾}1Xȶ}Kg*G|Z[tLbz'k8̕t .ZFϛMGE/jQ:vk`Z1TqZ%,p#-i v}!f4Ry@jF-jewM(~<j/.Vĉ&%Ҁi<(c8dA Eno/!lD,g&Tӓ& +6a\%` ԁ=y e1W#ni[1,D($Jjĥ썭Â^g$9#²m'}UDb8,ǭnA:ۋ,I `jƩ^]&c, c\Bd+O7OqJG9Ug\J5 aQZOI6yFtyx @®\^kmY2>]̠Ew3=zs]\۵ՙ\wNѸMJ 7LY$V$"5SZr3Felq>˫5Fܓ; MDGv7Fەk`nGqUm2Rm[(mRt-Umfh r8##Uh77W a<z mTÐ?yOBML$tLǽΡ\-Io ifIH@ޡYrK<?δLPjODV49Qq o8tNmqADN~DM9\eqG}-K."PrI Gƌ˖!#xZڼ"m0k5 u+'+jJF8 c׎i0rNN\ΨWȆ$;H 2a߭ip0 4i jc&h^(xv= LaIwR@sɬ4%󃌌&GP]bye`H G/Kc7{)yf e,d`dmWk,N2y+fR6-mI)r:~٩]POb#ޮiZ][(Qy*[vR=.I$ӠECkf!SBP2+k% +Ʊ%ԥ.vK`z3%iP&sċq=Kp$pB&3\:uacNU6-(Hg OP=qҫ}ȁ`H򤖣K @Ԝҵ-d7O*Hʸ\ ~"VViveqV0iFl8̩EI*f7r7ӧh]حԤP90;uJ(zGxv5䌒Lap.66㉦++Y %zwi /r?ZKYUA_uW<4H>i:PgbrE"p;洱H'ӵ(w$ON)̌O)ZRLSɤP@/ ύNU,o5I3$Az]N[&nj`e ~Tl1sL@%>`T&b!R*?0v?m `OdzqL>fgE| SnEu{{TjWe X#uQ+4[_xrfB0zj"0pO(g A^0XV$YҌ^sYL~H]z;R6 CwlA6T*3^,d,`~=™>acDZ8ذ#N8#֗̒2@ <~zzX{Lc$e,9sNHON}z}i[ba;QF?ɧyhRXH$.T WɑwSl=r)RDaIƒNw`pyPInܭFV/{+>F g?ZB3Nh hO@j>`ןojo"<~5ȭ)& ;TXF|Vu$`3Hf'qVI ~FC 6J&݈2pO RC9,F6KB1<6 TR(֗ (}upyrszqY2kDо7uC8\|Aom#% :=Os&ȅ<ޱV:TX9z72) $ n0IЩ-][F63;iW$vn6~񁹌`x Vf4NvhiMr$V(wnw>+F9]ncry~^s:yx" hգݷaG8("%԰I!~8}? %VU -@ ٪FKmf, AۃVkVlH$;v5l3g. CC5mcq~֖B`P?Nͼz׌ .tv7zʬkTc{s%lDl7^}JѺ=EÕs(Xg+FҞ$Lf-w I 1=XfkZnb]KFҬGE$vuivlݡ9a#@=*pdo.1W #O1>ե'frz GPo$1}knu{W3qȍQӎ~o~?Z F|+c<˿jmE㓎sIm2\H"m#o8 OՆ4[ .AluXeRCcӥTՖ;xѷyz͵1%u|Ǒ:t;W YknKf?hG vo B]]c'|KS׆=Iҵ,^YB1>~vxPyr8֦:);{p^"`yb?I=ޗNΕ$R5I"09g={ ({ r{U5$\bt#GTqGZ76Ifگ%PX/zq4LbCTuwZg"ߐdx=R/zX]o6@LocnPVBHVx5x XckӾԗp>nPC}%M ̦H|~\{ֽfw qufabx߀ { dG):"XnYkc^_!/hb?'=~ZDDw<*튋Lk% xVw;w=ANFe7%[Rb AsxZZu`@F\[P[Ke힂. q$n6.5Gkc2L@;V#yp_aS=^K:*T1^̳wm+YJӵ&HŕevxϹ]dpMJǧ3c2o9vO^͛Bn1+ Xu?J.}agjFLq9>r`L}*ie(McζubBcus* aF3k >VPv9vj6!KXn9pG#jSXQm!mtUlW&;r۰A[6CfF9mK{Xw!}s޹ۛsH: J̜7DYwgL)#VV%Q9rYӮIҹHVrQp8TD"ڗ>\7'|Lonꪂ|p*얷ZEJͰeKHS|2x88[VV9a`׿5O\9'oqIFƭAi7cU Ӛ8$-gWF ',uPbRdg;֞ v꣆ YsFpQ dAZ^Hc4Bb=t翥 4Z\QPpXu-4\Zʸ`W5CZ.C:ky%.ݭ75fg[g#GW"@85I|Yl['ұf C(I8 WL.24{B 9 0*kuV519E뻁:zֺU҈oԞ#FYIOp:t<%07VP, r0{vo#n@<۞r &pzۭUx #>8rIHN6ϗ;ҤdrJ,LއjQTߚ\ ?ܦa0}sO ʧn9\==RI`H+|xri 2FN}i$k,yj\nNTU6a=x۸Aҍ]9 >hU(e2q(u|\ >Jf ǭdrrOq2{;?tS2 bsHq`GDd0qښќ B"0"=:敢voƢ$fHHLM?$P$&8=*V(rtUbG#Nݍ#gߑ<SNޟp ۟N0<Q94 a882u9#AT04`8QK/wU)ڊm<r𣑚,1v*qx sҥ 9'8QJ(=:vSM Kt+Rj%»zOS0C2*;n޵aEL3̆|\#r{ƹJKȀ:u5^\ K"ZH溎2 spjRc=I#`J߻!~N&9>2jpdpt>~6v(TŰy힡sȮM>8HHldֳ5%Tza?N{^Z~~||Ā2G5ZI5ƧsmRі~im,Csuk'%OAC4QrnzOҦxfdKB22=zTs5659.$B /=G ޶d|2R>'n*LaRשk9%"#'w'&)F0Kat©KMkY_1d`\T :):5`ʧ09^AdcRb\z(ȵ6ߛKco6q ? wdlK" :*wH>,]uj̷5K*|Ps}M8S*Fj.-dVG޳+~kCfRGr6ڤbLDpC.o$hؿ#.[it1."TdI.чRV@2w?^(=tֵ.:vdڣϹk뻹FA@pUI8_zƼ;j4m6mfY 6`6:n.=Ԗ|I{O,3Շ!T fG#ƱcvѕSOpdFRuۉw^E(46BuR B<]D$3ʡ2[ԣʭx8cǮk$) `>4QkR4$(Fdc+6Q$9?1g:mW>fw@P3zc5 #NRR go0jW$%Eg>LmF(W7LFlrz۟NiVraPUIU DZ!Ӡ ׬R\gP{隲;?t Oί^ hU+)P]]FGQb% n5 q$f~cJޏ46ǹ\HhpJeG{q9 {ZUsH!kk4 cA{qAb<Ƿ[w q$ VMʹ!y#|-kgd5Yba-.f/|CW6qkb#duRZd"pk"m"$$B1(c)MuRIjv]]K :z.{Jg*Bc>vGi8@3 e1HGSGw/}I}pi \qǸ [KKymcp9ңKdh䶚fm)rNkh#).-{-ЀCsRnLfi20Tpj^Lr %Imu<}*WڛI&TJ:K!ap =LlYԶ[.ggg;ÿ[{w{ |ɮvP"l'rX03kZ{!`c$'tlU+%cY4rs\UŕU@ku q]ql@@= ?^Նe$2zvI-n7L{UbO p.qBJzm⽵guRFx H2rDvDF? ֭?tW+"F7FA5Ēi'P/ym~F練fc^AyUbzjI'zqNF \Q2pwpN}2GZ4pMU;1<ҾThbxX6?sI {ROҝJСlcO)'\ZU-|TgrǹOZܠz(n) שҤd"DžR0 E9Uא0m%zPJ`Aޜ~}s)+.(0|B$l< w>8q36KRyϰ@v֞' &@Ws&WHЄ;}}l2VBG\}jڌHd /@\SAJCǔYI=RY_<&TbёRx'vE҂4oC~Yb& FqH*Kt+~C"\$7~)\`b JCn'%a$PFq 3֘lwǵVYwv{4)bP8qUA$櫘e%(ܧgV=p&_Cch՚xeIE^3[8x=2ljwH\z 먳9g#:Tj9-ٚB8#99k1Ĩ#W$xA+( CB}Ex'uDRO.[V2:)-O/"y 6PoP pw"(F' :Fb~fy{m[l,v;ZphR2Ca6㑑{gdYnox8n2 k{ HpW=SBZn&fIGl >p}i!_q RjI\e[zjYPqӥs$H%O,8YcfPT0ӧC AP#*短94M[bYkl `VLZ̐6s)\9=~ qdI zSɴB'UNI- JfK* T'LniSNk;d8W\  `:qoc) 3q ~4ѽ*&|a"a"ܟ1;sڦ{ˋx# l?ݩf rndQi^fKq;}}~N<ɑ'S΅خ9Z.[ܦ2ǎ+;RE8I͂{*BVN w 締5<{cXm7:Ka$PmBNC[#U渵Atr;z+[[d{ɖA>zg>{VR1Ll#!d't>C\i/r$y̪;Z莟m 7qnG!F;׷QDL/ˁ6$wfꒁ޹jx, `6Jg(!. w^xQ 2E$%8'8 ^8>:{Y1f.rNH'>IoZ۶ib?7H ٣G=EkCE*K%v8E>֯]ahHBZn?,M$S v[Feȹ_<$r1IF)C Ld;;wOp2ۃun->af}>h<"2 wW7Yb+(hz @@.%SO,a򎛁8'{KYm̫)$9P}ss"K #le۾^Mp_^UB~Ua6U~`3]zcK1>bd;GZ֔6jaD@ =N}^եcRY=0: 4Hdx; i H aמj5\ $V%aG8QO@\J!E٬l$Lw(o޵Zʲ rx9,V*7HCctuU/]K!HA`s0{k?"%3tip#gnrD_cIŻ;y7j% v/kx$ N :\Wq J;zqןZ$el_1jLC)GVP>\:PsJ+o$7F-0L <ӚoC|0uOwW2Ϛ8V'9TR[U2̥Fp= ou)S gFB|UukK=B'fiv6̒NNFH{VL# c\]z;+Mrգk|utȮ meUe#A.+gF$;6p1Jqq4MX䎙<SHpHb޺6HRBN'q?x\Ȩ\0:ޜ%IʨQ;pc8汒:SH.Q (q)%NS5R([U!O$g9jdst .[hɌZ#@;ʋHxGt(~m$zWJ8$r~޹F}ZT)AݟRDrdːN$/'Ң gAiР7m{})ۉҐ)|2sTHUo$4FK$~TaUoWCNiNsV"Pr<ezu&pAl)0FyғC`FHqc&oҚB'v: 0q΀$(F{)l7RzSf?x7cJ.KB@Tr: d+o#CیJvg* $͇eeF;HjCOʞ1x9jOAP PCn4v O4$#4l^xr'_*!@6GQ1Վ㻃OB$c11xh&q("L;j8_jb1 >.b1 (FcϯZse,p"#-I0,89UݰY)y3mJl6;vEx爼UVF#> 5JλrO<י~,XH 3V#C?ă {{׏jz\IrTPR6TΟR[ٔ8U=s5~!Ֆ8D@.NלZieUFۈP6^_ jP?J')iE aʞHϸ+c5((X){tC<^#+$rn`×P+Zxvf$+>Wsf-ВBGW7G"Ė۞g*Cc:ԚpR >^~^W={ȦY)ʬyy=] ,){yY8f^1K izo޴MFYm-\|y:jt[mx|P|2=5搦uQXE|j󞵟_D9zut{27p\@'N0{na5ftSVosj箬 yh͐#]]lF :Um.GcyI&|YǮ;SNvrAurEHI֓#\{⺙lo>,c<*~RײoZlڑoXq^^0~9j͝?wS*Y]o!~pv%ww6=;{Wksf@8; ƨo#JAf[2tt8瑒({ $.0ijщuNzVz2Hqp q{zT761ciҺhݫ#X_-B|ڛtזG*ɭKmgWdc*vfLSxļF$ ̷NY K'yb[(,mA3޴->g$*ǔ<zg}lW!cqb:hʼnhf,de]ҮAlm[vA>>cR-sqpA?/ֹRk Kn6K<{A&74݌|ܪ5vRP~Ej8 !XmәZ"r.:~'ygh.2d7O8?Zt̻E.b.pKe8,&䋒nkhj:Zv_@==Ry ma p>+Ԧ&~ЇF6_k4gqidi%Ȳ ǞWZݎ%ror=^z+%0p;`vh鷷1A4c6y@;V@]~p]z˴PqYcXc'Nk*/,n$@B;n m^}]-N9Doǀ3G lѾץy6#gN;Ths@HTQxM`.rJC$qmWLhۖ'yDA ?;ICt>:sm1I۸zm p}h'?.`2zzU!B#OozZ8d28qE ȎQP$pcmR+0Mvp*/)ݞZ|VN{jgP8Q\}{fdn:8> @S4ڪ@}M6"W#=G*ԯTr{ %`>ǭ"Lܾ=d<;Ij}ţfe ¼~(- fo3v 9l[e s|BҴo }{ִu}]2]>g21#FRvO\NN7]]=ó(p33sw̍|1ǯjn5Y_sF1' 9 F1>)CN]L_VK7N#Ip01lqҺ[KwuB#)>.W=NF64(wInϧ>s)n?+|*I x> :%w*\PHBFoCqjXܵ9RS;mBnqGEgNdH/I*|]:k)0_ʲ4ŇewbO?֞馯RkwuF{{=.ip/?tz.916YWGkA4$0‘lHõA 0h tPHbl"[m_}8bCmp@- 'QQr?cFGoZI~Tb;ש?}8(dAϧQRY27*ǹW5IFyݎYpz}዇Ϛ6NS+kO2;HW=K/H|3v HQ:RW8tLV_'=kAlx ېX4iKǏ w*hy|Нe"@NN5Bm1cC<U^iY7YCN%Y&ю01OokM44!º ܏QX&oԐl }:`kahˉXeuUri\v`1_L*7GkXfAShS&}G$}m"0@Nx$7j+XysI*}e*M{5#"6y cZK 2/9BEvz 'yP3Y3XysD:l F[h=1)A[C2Jo4l:rt#b#bU+6WHBO7}:ns*5[1۔T@HfB7OZ%63a*M&Hg}W<1dvU%E\n"e@$a^Bi-23zgҺ9mFbH$4ȴg>`*3zzW\q!:/&T&iQI6p[l?s%BM*3ޥ,:/zrq:FTv@z=:o ^ԓ[MepC6@ca];cBs1JbN27qִtǸi<ܬrҧcհYpPozL|r$pȲf~PNp0GLNո+Ʉ *0>o}j۾‡fI}*bfuē6o(M 4̫qqqq v<ӯ g{Ἷ7rc>U, 9}όq֭c 6:lEanMg:qgHfkhTPHɏ Uqfm7&14֍ClͶhX89oJ2!4ygY`c74[Y [1뵉vD8wnl9zvob؟GPNk;Bk]6-b.g䑓c8 k[7#GaliSˈ\Qq=WN{HviܮA/Ȏ8rskEԒ5pc[:Nȿ(9%c[}S5Fs`rOx %b,\W6$ noc[6s490\=}e󞗡IqvyXcמ_$ir#v2r= |\bD@L@skaxpYAQg\SzةKCŢ qOSjѼ̪7cW/!U5&d8+'QApTd 1R*HQyv~b˜EH$xzavnʪJ %k<*2 aqJ.*Ar;4J1nwϯBB`4otUy=M&*xiUx[S;ݸU H+Nqސ4{LhC9)1E\m8H=3zEa$>R1cS`6_$d79"̣k(ev43$:b`$ ,Gzk98U\muaDTl NFO8\&[~$cy;=}Hi`z)ޓ1zS 7jj g(fR6Ϟ$ HmQ_NT[##5)S1 IGCp1 sreWlQh x'+nWi#*Th(*p)Uu۴簢T`F@0Gϥbfݷu&q;XSTd QI})`t4\ê`h¸GˇiNBa#ҐUr<K H V$tۃԦP#9^H:~De8 zs1U ۰N:{`4j dib;d[@V^2G$jPgЕ,szVP1,v*}}?:kL2 ՝{q< w>[Z&Q!$?Į3s\Ż<{?˚m|)y=n/OL˞OrY݁s}U߽bjX+8p6uTXGQ|f 1u_ֱm_q&kq!m rNzgrAnQb({fI-MCS]ei0gF8YJG]e:e*f ʍ}Eh;yg=Y~Aeq ;LQYsܜ4th P7=JT^ *i ?tW--v|s+k&c)bc}JSz{is,Do q֣Ƞ"=?JB,S!IV8>BiN}ǵbvr{u`p%I֖mb 9b\>޵&9dl qIQC$z`n+Jꑞ-I_ҡ#ጔO xY<* gYh/!+3R0y>di2 ِ (Djyp I$qZbcrv 9M0HV.ޢ:.<,Pvp}AAڕaH.wZӎ33_8 cOQm1]1G$ <f^;p^fPlTC%2HF.?=~;. c?7j#Kp"۔ bFG'Eao:Tw=:ܜWWBo.N*8:~);7ܳ-̅;Bk=+HwaF6W_-4ui ep@- tQȬfHZMS-nEyw$P}G"MeqwXYǀP ]b{$aXp={YCa(:67;Vb\U"~lU {Zd50$=on*&҇TKm5 >HMGhs d|^>^[>L>э3p;{Wuȑؤ7q<!Gnt<9;O\WB]Nu^4 bcsWGT#c랕sMӭ92$Qol@`>\`i" fQ+֕-|2s~f +ܩ|pzcԯ[KQ mb~n:VU$Ģk&0T$[ w F$/Lm<~a2d9w⣞ RG6mc|JDd;ȈkR5x.@ lzsPt[i # 7(=GTDskmWs}j2-"B2o8z?A08m [Yٱ$q'ؽ?βRRG9>THH\ ֎)̈H 2zcZKmlm!@aӾ};TVY,b#u'~>r-[JDZʎuFxUFёԞFH5br\WEm FK{܌s]PNHIJn5;([t1N@Pg\MO[4"rs=juE.8O&Jo zU`3yxO5A$x7*68 V9* 8֪I-M/x ?oBGU*7ucU-7OʸI]-Q39ѱ|>#fSizf'0#gϵkI)T!c^גOӥKogR@08 ,4\}Fz0%Y)t7N7Gæ&nr;Iny^SA<>M$Oc=֟W9gi0d vAitAܙ{.M؊|;0E`:cXa*H'ӥe*6-N&[ DU nƲ.m^"ffڲ냎++{!m_V w?a\TbќwLc ۯjϞ]ڒW8q܏λ@K"#>ssV-֝&.Ô8bqg8&qU8zDstyfG2F88{E"t^xq^iw\GsΈqCxzU:V9.#jl' Ўޕojm=Ut&XyZN<]0I۶c#$o&oX1@݁*A~>y|ªg*Y2+ c?u,cB"0j&aur4-1M{Wn.գ.$q/b=yey+XX}}GWnZu?1{7POR=+qԭϾ|x?ؗ@>鉴vy4@`S)W[J N39{fi7(Lg>G61zԅ0ǎ g󭑃L;Ȩb6c銕 )Ŷon4>#  >ivRz}j`qZqo3 sj;z@*lS+~_0&_4 zPpV'JT <=+\:a* RNӴ}~vxiG{crI?ϥ>P$}7@?SB7cS-OҚ@^h ۀ?:BĂgT$aU&J^~s܊L x,Ol~4bJz5F$ >ݣMBI9>)?$01ӽ3iu*'H}Fv3M ͻ,Nz=t8JciW.rqvi Oj Htqc-بusg 11Nb{THҰssDv GїZ@txfObzP CA)n ׎ur qJp!X9JO2L֠b" 1KS<ϧ$d#T:((p=AO"VL|y9'8*' X4eD0z(e?Ug${`p  HY N:TmAg$b\Rɱ$!Rc:M>>drHx'\ԍmpy}kO5A(=FoI_SM~ +ui%v]E[c5旗*\NK+. ޕ4uōսI~uoԮwL@KmT*}E|&X܅1\}λK*)8ǿFՓ6$ɍwǭWDb7B7VuYݍe`;{K}9Hljo[$jpT\=f۲8~ܼYy)nrx#ҹtmAf *}93xA2b@'p-c;bճ .Kg:ZLxI`9+Kt[hmj$ 8ٵ::mF0Ldg;w:v5{cick k/$]ŵ]q{WFQVhg3!qОsMI7 !y5R/aϵi#dOO+Ikd1xǥP%Ď Fl`zc[3Y~UV=IVR6ߞ8_.4*I!R~lc NV.z$ =fbZQӐucRGZ0#jvZI.sչ*[sdS}y1n&>Y+$\{<}QXd3ZW1NĞctco=9RХ9kHSy ݦ^ ǔl.K Uo$2,nװ;Ud݉q'>  $ Rۇ^B=(lfh#4 ?#r?dbbAts -|sӾsԏX+ w4wX{6cSxWN6W (?_ƨd>m] ԭ 2rwpQ1K|C'Nј;\l#(Űi !I3p9l{T7|Ұr88ҺۈbrvpMc5 qx$[w򮸵sʬxs=GZϼ$"52;Wq#"ufN+ 2VWIX!2qWT]1k)sajp}X+1+HhW'qֱ%c_r8l5r4̭cmQPC}˧e0RNt㧥YYlťn1_0}?ZϞ7E“$mo'*' @ۑ׎kJ+a}+%{,fS!(88yϥD\"zYEAV#*(:60{s=sV`O|#=J#3GIt)ak!YxTh>䞝{{ִ%T'8 uHyD^&J1 B$7p>zTsPXԭ:5DSG#''{Cբ3DOqtVIo@SnAXut MVe /e+X)1R7I'OrOo+J4X8UlJr}20*rؔԨjo"+&UWLVY.m_:@<tEtڈOA7JȮ6>$WAjF qqkբpFqE2,3.⧀8کϧ!RA#Èdrp)l*4IS{RȖ4RVH=1YkyPA:MTeA}CcOD5ÆVTJ`:||N#U(P&KcvxHʟuϽe>c'r} dtv:hXt=?+t]rz pVG\zEaj7n,:NJm +cXFr[ڼI]+cȭ It[9xbH,rtz>PʣF̺\,1u\'Q]Ŭacq5N'N'N^j+q=\ oS78=?Oֵ_ۜ R XOz3)ʲc*{x9;WK-Mc2d!:3ҾŚ 'zIHtVRWs_4('$Nkim !UmǶ)ݕati!u9򞝪D"|pcR;[6qha ӕsBd+0;lRǷiLϵxy皃d9,ր$=)0霞0pNz翥 "-Vm iNvov6bJH?I8ۥ2FRllq + R@ w)̿0^HAWp їۓcO(1yf9S!ORcr~ɎdR*M^ @ S$c$zT_4/Ə8v"K ,g99(.NN18}lxiʎǜ3+}SWs9Q$I`L@zP1M~KsJA"6U>R3|Rws@pxZh̎ ##9H$)ʑg*pB֜U:hA32qII]Ažqzqwr֓tC~<w7(ЯS銅'`44j2srOqiH<#RGǷկ/=tq-s.ʐO2V#y$ ҾMniq4(r7ʽ,rF$@A?|⛗? N8 w%EvvҎ9*I*ϭs | z|ܫ=qXwY[`Ȍ}OBGZښ7:Iqt=31ujŋ͑9 0 j i$343l܌bsaǧ]2e-F%3($:f%H/z#ߥlhb+e:ǽrxrD9Q޹͓)=*$@eJc7N~M QUd ;zR[29XӞµtJ5vjr#suF @#ų'gw:}@[z`>?ҨyxmT{p98'錁#!tɴτ?1Qޮ$qI$B-Ўu2EqP)}22({iƐDV9T x練U{߽lBD )ٖ$=J" "'~U~2.t.p"nr*̺}̞WT_$eyRdlsӭᵊLC6xLhS*(q2`dg'[;aąO\=Ac1]Z)+r1{ո,W8ziB4.GO`?SZ"f2*3Y/&מ֛ [ u56.SN͜x' j\=1Slt)L;㎌9O[N )pZ쉜{n s]B6L>N6:A>nX\OZ-%Bkpc]j5Qm2/g.}ƥ|1%nzwǽAB\j)ApG\]jF(ۍo޵\5MB3l[ԎqY׀@HH/^]ى0 0\`<~H˘nRskt})үLdPq'=0.?AӚ[~A=363[jbۃH'^X~RG'^2pE #`ʽ)|M lP {OAR9\e 9\qzfn$.ʸ*o> 1r߳)?['V0,e9P KigcYAxF=HWti#(/nO3p=H)$R=O&h(98:cڸp#t|0vO1w}  &wHE;iG.zcZI6@~uc/v~U%z\Ë0IF_j_jnJ(bæGlW{w,Smb1}|JF3A8;%cX+kL"q_: nAr:Wxqt +'>㷗0pXsWc%Ƹ%0$qړ=ZP-$>H|hų79)fXe@:ԂBfi 7 ?k;bCYǸhR,yې=Nq,NF9,r icTl㚶s*< }{HXLC#=P=ډ1V"40Bx#ށ]䷅LK$$ۧT؈ ,3#f>GAAIô!Wv*9]B/Oۦyڹou@EQ[鐡?9R a*/ vgfc.8Yp㎤zJ)hmy*Kd)XQS21(ʯq*ZE<ɖpwqh2K#hP׎G5‚c&#7g[TH 1ݸV|6ٓ-<=+qh+R8!陥TUvan3ҫMhG9`Zj8Cv#q&%8m#|#_ےf-5y Av=*琢Ֆ9̐ :zʒF:}k4u.Ψ$tNI q,UH 1r}}}Pr;~t"RD8.F8 ׮ie{΋2@!VL[8lZKRk ypJ0{ eXh2bz`jCl$'̉ @\)p/}~:W)$3>OIhz"prĊ #=yZKs$|~\}; qm%x$. V<~8bNzjD|vekt6!5؀0=_#0 {5E1#IӍp\%sBYLQ`FGpd[2s:̚XwXїZГ͍ZN?ƺaQ:4wWwO1jFˀ6! Ɗ\&[ W7Q4D9y(I 0ƿ"@Xvk;N[^1F=랸y<Tl BXy GN;9al :c\H!GL{ qV tZXܿ$=jpS9aIǙ'=*W9tc=hܪNYdgRTOrI>=LmHO v#6+q?tB3T8ֳ/exذ0~#6e4ynuǿּWm"B``zr)n]L\7mUSg%HpZYHn M5<nX3q׷Zf/,hicgv>N5ywUڸ Ǡny؁}KŶX h3v-3r:m)a+]NS2[7 'u޵)ФyYDZ s霎+Ѽ1vPK ac5G$)r9 u*\v{Mٓ%7Z[tvR‘dN3>a$=s>fq]gEz2~FsS_SCr Z$`(u >܊_b(Y#ӕP؃=kTqO v i2@cRv-(@)1RwUw ,8H pE5("nIR:9K(5cB瞔ܐh=q5WU<0~0;zUURI ă[ƄH,@_(xTҾ]rx?F>P'až4KI Z¬QJbɝ=xjK-b[(2@J';Wl~qNHsJguRI*LZ& \Yvtٹb;t)Eh` 7qchĝc'* { i~ Rj H%F}PB5Nё]zuyIܵ<'BM0zT391w#nHpNd]^c/A_z2 }qFM|4˂Ju嵾uke$݇H[N9m݁8}9CHöcBUa|LwC\7dD:u\VZY}hyp whbl~^@>Eo-Fx lM:gauV_Ii$QsGX&LFĄ^;ڬ"h┢aHo?ʑ#++H#PFs pVE_Ŀ!`xUc#| Z1J͗'@^o43].@ P9F3ڥ7-2SŒv,2J%K[mHq%07$\=y4iOM ;U-F;x<j#g%~?)]([V$08ϧ֯K *H3QbGkffa B [IH#2?JT'Gۤ ⳯%Aܠ9OjԄۼ"LpBVm\!V#eNOQd n/p~޸ J T;Cy8C[E6m$Xr0 81kJ+:3ZA9jFǙj1l7뽎26m\@LK}+|I93Y$rh!.}}{WDYTW!U܅l6$d;XY 8#TiQT2\#]1K'̀\kxGfXɶr`^sWgJ$uZEUDUA2?[vb+[uwe3)##H;*q>8B)%f9DO9y=?Eye0lt);5f8'1ݙrsPEny28uPgbĨtheiW+s,L$<y?ZTj\DP=Oπjj '>Nۡ1>Y8=>1R@ *qN*eBt℀i ^:6_ZiyO=84"9L)9nyiQ gJP P1JqR/sZ&CCF})X%[~3\*1G'!Gp*R[n>V pҦJ9`9 Um ~4HHV oZPdsKRnUQ= 1rWI8432BxH%S-}*h$^>L擹2T4u|Ԝ{)e2JyBz:dϗB63xi#4'aۦQmyTriavQ2Oҟ  n)#53 ք$*6cLp2=j`QقmI䀂N0dBhDMWxuTĖ6 6)^6P \RzdIkVehQ",|٬-VH+G ?CZt̋A1Ot7[{yϘ˕##sNH>Fo,r@f~m#J+F5oI91kGS"Fnv*=# u$kL wM+qCӭbJSCѥ_"$3W@ W{ 0d1;Cob{FIe{Wf+!,Mygvz"D4ynqHD֑Fq^=;#FBcyvYHVPΛDRNmi+wx\M5̑G(=H=MS g 6BX=< XIt$jA(ÒmӦю {T͸mUdQ-?٢ehd#bÌc=sT$tesՖo:EbIX2[+xu5N Xqu&y ?:Q FIxaC,8 O&J=}W+mp^yRXd'A,&Y*{@*+gr\䃎r{{5EGs` >Pwv6,(C#ը:02E%eP(q}OƠ]H-ц s\ vdvޝ2 '${s#ok#)a%FHrFsTk'W˻<\>ߗךq$ G{n}ԓ4C(W =V`Q)5[IcH7{pCOU-1+[gڴ`ʵ,N19>"Lt ,@Ifu[H嶑&;yǖN׏_Ɯя2=@F2, 4kZFDf!rTM7 = rH>1ʤ.0²"h'kJF,4mJg8P9T9o8{\SŒ .+zՖGi-}iG{%=r%i\8jWfءQ݀v:d889=8K Ld0<msI\5%xvLEsw"ilrpA &qpvk-e1>~SQ\%1TFж9aTE꣬*rq<ߖ5&ȣcL <ʰ,fOA8m Ceb0сrkFe%H.G',S.+y)ͺir2# M'r.yڱʖ0 ' o)#$:Rhţ<7z#0O'~vB 념אGo|J)C_F?PK paG=Z{b{-, qV?&OڨY9 V(])R u#ugA nM. pbb`q $(.@'zS;>>Bd>M;l+gq#jTx5%TP})QFFš+Gc" ^=B玼ւ@zP?JKqAu vC*$hL,:g&C`zR[hL2dzooMhKa#B ڜ@zև꧷|e1s܁B)?u&=;KY󡙤 HO^l.0iJmwT.qT;U'+p8M{2`uF E8msQyИqLpH$kC$4sJ8 =X .."q U l*gF?SU;{gGKQã+t뚻31%eslN99Yng n1Ƿb2IZҚ͑OfO=z\Ln+L;TnmiIV!,1:OZm\NҙFsSS^\J+8qjӧф`R>އL+{!P吞uz|P<[nxzgul<]A#<+s= KSKh8S0͞.mIbYڣ;: w*MH+p ,0=jRH 1 @#nMkY#1\:7*T9>d( sIw,Q+MQ\=j~Rܘٮ zzt3\IȡH$c X+!f#~5rJ1>UI' -\YcԊXl$|ޥGP,"O@ V"NCm#1w`7"Y,t\aD2pe^ XOCTNTlY%bnc 5 8jqv|Ƃ%Qw0=MD{Ǜb|=I{իyC.J5ŸTVבm˽e(ܜy{VyiI6i]%HۄepI8wΎ+Y;\amSe0zdTg*:ԯm:r;;9tDY`Jg oƉijHc ʳ.JW v1…d R+O2d;FzzJ'[e'P1NA&C#Wm_,X9AKq3%$0;M;J\m?o̡_ƶ-o=1Yg4 bqJ+L>he:֭"̒1͢l@9Ps'9ǵiJVRDhGs뚷mYcJl$¬GqUkc GRѐw >RF>*}%ʴY 3\#U혍CcFsZl͵SWJ! B 1a^:Gkj丅I ZGxCc~yA~+-"|O9L7λ|C^Tȫ")XA>FKb lp3ҷV+1#$6(Y ҝ<(@U,` f ׭kG9}1S+4(\H=lHĺmVŵodRN[-WLHqа?w"LʮAtٱ|ި[6~@`d gµָ"CRw1l#`fnh+W' PG+ RT@pY .`zUFN:4|F#ֵD_lAKv h6>^hr 'RhycޢYTuQN.s;z~UI )~<ӱEhӊSn|088=ۥb8Hgq'JTPstsx(ܣ\Ҥes(𥳟RpU=2'隘 ."VcN޾2Kh0Rڛ>8 n.s#1Fs=M?{` ?ƣ p j~sIC˂=)άTV@>gm℄?#566[8s>\OV#$튠+!<; 47I./3!?ZUziwrcVkSV_(3 % 'W0=Ԍ3q~nbtkSЁ4nsTߦj\/A0㜁fa,Ȭ23Wzbq-&I >Li*s"ZB|>xDXjQ5T \Q'Q8|de0B ڬF9Z198;;Vn:$73˶QFjdxbl$߽gZܓHAbA%q ϱX@P)=h%,q 5[Q,厣ҹ{hЄKߞ]Hxr6LSc`5:zeXn v/VyݡcT)$.2#ӽT8wLHU4w$f&zYЙ=?dS3v-xUSqF㒽Fr<x=qQ{PC sBOX-E&]FQN[TGcu!p $wVm#x囘"7Vd8;`&Oҳ#t,RGzG!!+_̌+@@;sLI#s 1jȆa0_=-vqZjȱ <J, g=,C*|Rh"ÂzsbE&2ڨ{C$B?ʶGrG kEJ/<3oOV\q3Ѐ9D8frE, N<OS)D)NW 3R$L5 w}) -!&Cz-Y[vઌ'oLHYIߌ3 Hzq,Gc)bHxT?ۏ3̐8 wpd0+@[H1ڬl` }'ʮ#ƟPyp+>bňy>y/ʍ/'h$Bn֤[+m1'V/a2H[گlXIkfY^8.#r8jqd (sۚȶahW,_ЖdhԆU^\򱪹t]F l97A\zT^Z^{^㌌kK'oS a\㎂Y#ms<6#9 fѿgҲc̸H88$ GA=kLB_&NxӀ99 XW_#cALdw<=*aK#ޑ#q ցcIJ,ivʨbnvY^jȁeb_FjnI T#viJq mc3ub:| {aUy#}kKa ·%8 ݼ3DL<_uL#$"Y:#s$M}u?v3~߼FP>٢6P>mrI>lRHwUI&F$xC;uzGw ~cDXD|)gQX:sX!uJ4)[|6'$V,i0W$yӥ{5t}z ak2:yz&bNN*I2trGQarG͟nt\Ts1#]K!xzӏT2?c^XU XgHۙt*B7#AP*@<̋zD<+ ~C4I?q:Pϙtkjh݅}'Zbwԁ6C[Ozh04׭)=)}.PGg?AH@<D0Z>qӃn;c @1G(zƐYKp0:r3>iK,noJhb8N{uw|3#*Ǵ*sOrq8Z|FaƟmj<=);˸uPx00SbJ"A7c9)܂Ƿ 2;?9~.gG˂yQVrgCCn1mKX3W(F$f'dpsMP O4H ⢑v{tn#ꦱuPLԖ%Y|Qxbd0>YhY i,q*LB(.x=*_vX)88񯟼zd8ʎZ E5s5|Mə*AOCHx+v3`ds^5*GpLV(WxێXr3鞕WvOvrӒ6D6YJW;bUQ̡w?aOq3}??tQܓ;9:}+F-HidܟOAUspZ3 '6<s;ٳѥ}mճ=3Tط\.ݗngh{VVw1 `O8)"f@Su.tSL%f^Xc" Y?w>@xJqxSB@5lX,0*{qk9Y4ck[xD,F;>;WCj$\ l܎ \Ιcvq ;$" >K;9ןVtx80O\_zGvl p=Y3]]]"A xs؃܌ x0d\`:W7!e46>DbM8'#m+=iKd\r0 >EGu,v֒\Lߺ\nBk)D\;^8oҟe iD0[ܬ#?e'RTb\M3r7UW.8` >eY$0>aG<O\68Dhaa4jYI#җ9Kss/؁=*$~b;YqO)Ko,;r>n>\UM(n|ew`z.)u M)pzI.@ʹeT~pn&/q$*񂠲Gq曏St[DTt]u^fsnK8`w8Ջ˗Lo rFZRl!H@ ݪ[ n4}A?JB%V0ѤxFwvϨ>qHeBI^޴ƺn^F'p@a:䃏/̉ nv\IÒIi-9\(z41_bYqrUCaUjh4,l0'XvsUթLS RϵNfC_\LS̀Bî3Ng@cQH}k9-u!!{Qe$y=\uFd e8m 3Ye!ҩY0#m[@ i~'ֳWW*VW*`;&P\~fQF)rmZNCL0xvY -?298%pӎ N=_wtӾiIK%JSI#F\~Ԏc1sGsPxU<$E8 }ڑxaqZМ:[Y_:0d0CsV07c=i!'!p2=5n9,|ԅ3ڦ2f4{wʏm8P ƙ H-Ȼ6;Բr0G~f#r hrC,; *>3p1jXlw3@:rxuҸ`0@>棎Bҍ Y"Gr+,R)G;}jgDrWU佶ƻKd6'62N ?X1MTGIsHD<9=OzPc՚dsNb-`_ yGԓWq0zvZ(Ƣ_kы2r jY0!Y%O';](vP lk sy0~|cr1ג=8E4d8-1#6pUgU f>*O:VbUr5\&M tZ"#ۀT3 n !H:W8iʼOz4$pt'q3Gtϓ9*$ո9?N:YbE)@M"7Dx8:B$rۛ#h@jqԉM"7쑘Y`qT}A{wsvJҳ1-&X`(=Q(]G8K^Eazs⽏K-&G׆x*W \3÷5q*W"91{ZEc8Y?mxTŰ13U9/p{Rwq4[;('ޚx\sOͻ 9"-T<F}ivf??Poy>犉D=_RĿ Ɣ;8Z\u94; @YNyңzդ)}OBzr1RTd=8bw玔tOjbܰvm9ǭ@U $if(p3P[k) !IwRXaO_JQPtqkPhgi,H[ w$h ǶOOdXE|. 1Z·z+WZztv;$6k+1?J%H12AYl"09=pGMj}4FVR2Kۊ㕏BKEd'r:\sQ`G;[4r?Zʛp l킱,S`\`9?Zܲ|0~]!7[C'q޲m̞tҳYWw;3ҰhƵEY'7P3;"cæjQ vU}2@dFݖH- ֱL+oi UKvu`jdW_.HבQ.& V1 ^S%~Q=dawvnz5d@xtC&[٤F0a<M=H*id1(C#O\b pTu{zBD e˵rAX2ݰo$4Hzp{d$02/_E4] e (%ہ>֤<$~, r˨e2G 7nǐIWX" 2eU֋{60I#T nicH{RP\c'Dj灎rjyz CSf=*x#H18}ieuT ?+aWϖ͂ 6d2OjU@g OLWLЖczu4#f?r@# H1|aIqUY\gտ#֭"L.wm@{x)T<ma 0oJWn B28c?ʥmǙ[Ļnu< 0klj%bʰK0!9 ) Q1 u|\`DA~x(RLhB+iXO <?ҺcB* c~]v1d1$Qc銂2jͺ?=rHBH,1c"̓;ex v!"|k16qLa&t{vv-"9 }L$I%ı̰D }:j-_nB Sl*;$ǿ,2սZm y91u[Ij+d lYNXY#xd!}dEh~xz >1% "-s.b2ӎHgԺNp xK -`t\pvRm:ÉCm%vsy-S+\+85w)#a`;uX+E~Qp8a6tV-zc*`>T|ީim f#v@=O]6(bryWE8ݜ5e`H3,$$qwJ̑ABvFFϖxĴLyLߌ)*Ȓ# |lQzkx-p3(p7sz}ŲCn?#y޲cPDd ~c֮YYNxƐ۠~s;bdO-q=:Ӭ)դ*=Sr-yCgbK8[L^oKpP};ddE 7teY6@Tu~=Im&.O{X.?Ҹ ڙ@W*R=?f$BukʌfT;uFzћbykC)S#׭0F ?*EnH=:f":'C?WFޕ1R,P,?*kbJZ7qޘ ' EHd`gS9##hYn*y2?)ӗ`'T roQ֕H28E3F+ǵJ>QÞ)MУKoƀ9 6 N _ʦg~rGP )?Z S6>sS#ӠT HT[`g\.ՠmU\ ߜǒA:R\zȯg9ÆnD'9?/fCLs&{HQG' ޢr8ޜGR:s5$G?8~z~4-"vU93Õz,89'ޜ@eHlV0UX"29,MX"HlOJRsR1_ F:~=idC<ᓏ\1IEw zzPI!G cHU%$ 4(`#<\]1bNr9Uef$"|Wr[LҦU rb=GLx&K V!|驥Nd.2 z K!3:**3ݳu.8qvSXjci27d}:Um'H.iDyk jյp>1,013UG(w)#v=u"W55&> gxvph=N*HR+eSd+I~;FΨr [kflO&Lv:'XX$˩#ک+4<1@}Mwyt+};~5~d!JrӚN:iICG #Z!1H- 㿭@ōT. S] !yq\1i(`?~N T*۹#ޙ?ڭ`YF2ۈE1C4ipXdb4}Sᔞ\tN‹Ԃ;inb{k>EҤn(~7AՔClѱ(FP=*EtAp?~*'׶}:ͻT{gZYa L\mO+(Zv{QQfx$R8lu桵k7&c#)$6j•_2?,bYp8~Z&/5Y+}xpy҉ci0FA$Z#X°]m~f><<39#htQF.F+|dmIMAw8>[gQPG@;*1,VHG:;Uy6, S4.29I]N GcbԞ,Zq f?ŸJ^ F*0sqTuXTqH{ʤ]9 n;\&Hѓl1Ҁp E>+p$T2\Vdɳr3GCVc DLk! VҡoPNCOoªh\,En'3Z,`Ŵ7˟Nբ6Gkm+ݤ6eb[9Z*-<(qr:Ҕ-|9 eދxk @2<) r%%`8jt͠wy;wLzb=@|?wo{Vȱy&ܞ+U3>aC4Q-p2O>3#(m]G^LiGvzTh'R]ͻ493. ɌcYG׵T}9o0ACk8$gޮX/OR /,}쭑&6jȐI)9Wzes* I>8`s9$X`-y$rݳQ4,͏j&I>sҴ7"ǯUѥ f9'%Bc )5e$ ܹ=646 #hpH=sYb)ǵ\A:SHh"7C\x†UCn,9G#E>oSڰ-h nyՎ+ r|;GR= jҨ"L9Sݲ:]Mٌ(gMwgU\ 1#R`~\z&Ȇ=ݱvzX0XW[*LCwykkr8;XչBGzcn1*!mݱT9X'2>VTs׹1l-hDʹJ|;sm*K'˷p W `7%S<=k/mʫH,%UJA "MmvD b0*7 xvq(22]qG6Z qݞޔ, ;8#֔(Cw{4F 0IRG|H sJ0DB 2I 4jfT،?ƌ'.OЛ F3 (ԛ(cϵ(JYWxde298`u d*z`ޗ@_w$e>3'vǩ79֑1 X,1=G ڦ)V$1`qӰܜdP;}Nirw9-R+FM;-}h].%2 )t'hJ"}w,p1޸_oi*/ȨOz>Wt#QsAP-xv0^G5JVE0(F>緽}ii9L"Vò=+ Zysn?,GAT۲'07ozߊ(e%C rî1\GM #G!KrlOʯ=Goݝ[>Ge`ty8`>fSPyKv;rq9Q-8YdgնL?֠nd˷oi<1odB7᩹ю<¸B@sz#X6xzzrzhPqnA 7}tj7UI\_^+qc(2Ku£hA|,l'8_G1Q1ђp'! }>6݃*2=)|p[u^i]+bARN`ns񨈆>jd$o%䍘E-7LhŬd]H=wX-A8syv],Fȉ'_CS Wx>3 ѣL >RFѬ(vOaV4k g,v tI=W3\M)s:H̦,9oʔAVX.3~N3gQ ~Ҍlg’b@7;"}}A-gavD. DyckhDA%WZ|6x\xL:)ƭ$Jvsӯ|C 'is&G+q֡<,(jK(XJ2D%[ZV&hOItyI$A.?{Tinw1Ӟ;ڵcdu,0Hl{>DTD-njK+OnZr)z!1oO£Adک>n%rk`R,m'=cóUݳ"11F0E67sr=3֔iV_9D+OOF)9YNr3VjG!bfB'ZdYe^H"L%CJ#$-% KoەAL0sS#)1H;qHLwu9@ڵ"+6O'}*l $pI2KlQ#\) Fe$~u Πc*Hr:T"K߮gҀ 0L+!d`ZrJnypFzՋq36B z҉$F`78ȫp[G ܡ'+:¤F*]J F鷠:XزBx5>ED,99VF=jIoƪH_a@Z[&eF>ڴR"G$A<=*mE`2C21::FMvm0o3*@9/c>bӹR!U㑺Y LiX͞FAUmFʜ!ϽXe|oZ9п$]n5hJLq*:q8ۓ8r9uޱ4E6n@ͅ@[UYvAyϩDf2U{9MH* 錑V:݄FYP}%8Ѹ=zl$VPg9.xsJp\3Ni%=`Pv?1ew4341JBq׊ 0++1R4=isbh2zsNt8i(lրCF^dE$n<{Ry*3NTޤS8jI*)64e~5ɞ(!BI$ɦ)~!W!?A$%®Ǔ3TWiv<9JV;aqOR r 1G ˽=)*>e9'8HbjLl 6Goǒ1և({Ԉу_j@>AaI*Ye]ҫ)*VFPΞY ''Q$m~a GDvwo@I#Fy chFzuҺ s}/R7tԹiDk rӧ|b@SbߎkEmXG'i<ꍖD't晥`_xdf ӠJ-nme n qYqEs~mL wQ>kVh ݦybۖ>֮6l܆q:GJh!st.ػy;<Y+^2Hm-Vyd_Zٺ8M#3|ϻiEڼSKk)-ڴ /G9S -Kwdvmېrzr͝)Xp89ɬ*$v񭧈n OT#F6{_oC&qrʱ:4JfG֫Apؒޭ턢79sMCv w:NYIuIEq 1sB=1O  gA3!vaSj@- $\I¹1j[L a2.s|8\N2xIf+"8e`?RKDdƍxRu`sȒXsǵKh`pe2lCʫ*JHi!ҷPT64h"A!E$[fz=߶CTdqךS8B0,'0O{|~FdD=8jEwqHBCzE-0ۑcZ6fؒD:ݗ0G8チs8QfT1 ],b=jki<؛b2FjtGˎ y M<$xM=XZKɍ+c9==}W?vBd8kFYα2Lc;;b@(-؞V{UU$1s#@_ S$*bxHmVٓ\lSn洊dr%f8g>a1Ъx.gyRap9dOZr&RT?FH,y, yt֪r̫#-;zSLmW$H\(=!Ո6a-Y  oJ4j,a. za#f%8l #/ɀ>_nOS[;ñr|nV-) ˰?(x>ޠ{=$onlg Ϸzm[S˲lHEA<*l0.H,{z{B0sޡE!@b GD!FTz{  b29sp2r~by?֟%đ+C3)J(sJo2Avr=Z7EnF!*}A,u3nr>`sSKRrҔ򔘦w= ~4$hYmYӑϭVPf`V!hY{[St0n;n<\ $'?ڪE#;:oXF]7.A݃O/,:ѶqnUv,.Isr?@?죒)f(G^:Z+gS(:F@djO5Ygkf%7r:4lɖ3)l`85Uw{pG59c[:g9Pf \ &"(ccA2mfo`r=+JW ۨQ.EKL8Ň9n)+68b?\&M1>/z"'"y-BO*8#ջp%Ab0F:ٖC@8I-ppr9ȭ9 #nuJQZ鵇3&xیs;8Y~`ӊ DӐܓN{7{!`9^bmB)͞?:6 projijy=NlCҵS8VM='ޭFcԞI`l$dS EQ&ጟֆ%\צ=*IP0c={LH'TC,6n}*Db v!/Ɯߊ;R0 >wg0|Stt?FOQ^ pO)֞s4%/35<)<9n?ʩ!1Θ'\pziW>sCBI I48 uoG&xl'@n On2c{ ~!p~ԠKc g'ߥ-*L/;<`ޙ q*O0C4H tkb{wcLtfC}zJ+^v_LtM W;]Yzc'UB1/S=¦Jp8!rUc#튯l{irqN,2Rm%LRArߥ#1sғ N2A:p>^ԌzS§iTUdL2ѮrwcZIcp2OJl 0:I좛*IqO`;cTPBt=9lZpFw3ukϙEn(qC;UWm)Xs5-' e8ǿ`PṳPݱM#ɍm qϥUbBSz0}ڮEdt=zc;J򰵓aX#&^E4ed+n .9$/S0ؔF|;{S&0; =vfh%؎w *Hc*?A:E1;N#F"A4:LuYO)*8iyKtP$یMXb!JF6zrܸyFλАC.335nE7}1T$X^z{k5g"Gy6i3hlQ%-|c.ziI geY axx$1AH-m?n$X}OJFl׵I-C=Mgjkp1ZX%/sF#p3|ۣP( \۹,o ¤D*C&=x< GSQ*iS:S:%*;|{խN ,ܳc rAVO0dBˎ=}^E FCק cq'(3׎GJzyCb/[]4ťu\m[$!E_.WPuצsWc_fWRHX;2#G_e#~B>z{y&6YPH K P,.BCRfno>095\nl@ar R8QC!TF)i[f^]. rHA`qWYX!eB@$O.W{c2@>DU>fa9j4G2B.D7yYK^f P> Hv{ԭI;X`)VbŹlӱQe_6ItbHYK٘) cfp0}@Q9ݏR#AQ8Z%/JM犨IE>Vؘ *X淿is )=5ibbpSۧVGky sdzT"G, 9Kh|k[)U%uME U!ngcv:;M1 ƮԐJ֦02#ssDbQ"ȫ`gRA$q$NsgjE/AԆ GޑfyP = =HkJJe ̧A;TǽHDž\GAֳou8$5vOTmza[;\\lI̛;,qO¬_dKT%Z5Ν~=>bYwGJxȮՉul P,6*q՛&x2 %9h *Cwix#̊WesGnu.t DV,|q>Tα8 @פH^Zҳ8'kjqGsuēƙOq~Uϓk#4]>KvFĝO}kf-ZD//sL$M6._0Nׁ#2g r#~֗i̥GBs$rv?+hD{E@Pg󀼓AR{UU+V6cҟ-q2qAjHx˟M$őr6?{Q!g})``zVE,pT,H}?$1>׍}Z9Ų"W<'4T F =?ZT9Қ8OJg(*j`;mUT18?ZU;Rk.6Vݜr)ʐ1(6})zRb)!\S7 NL xm]mqfH^IƟȈ8u$`sߓ+='V@N}:SbQ9EJ$CwZXwl}+ $n% mp8+Tz&p\78'*K5^SP~Q.8?&!dp9=p? %ogn0Giʡ)wS6`F_aҵuYl*@zfXɾqce?1< uvv C)9ݝTX̌!YsgR;N>n٩,eѴ$;(_f(7+gus׆GlZ>N叮{ńbEX8\zHVD 1}+gJl(-rG@QxdvO,::ݯ,x]{Ӂ(([.-֎C%[TM^Bg~Ugk-N}N8ie?7Pb~*:V1nJ%ܩy:ul?0<{Yu-$ Aϯ5p g>.j2et;Uc=3RB8lav8lJY_{3*. 7Qzbܺw` @94XǩJFV̓*jZG f.%bjd"+)b8x<ۨ7+HĮ`ybux@=6&TiM&]erzDL"@ YHj|5e*R}Iu"34q INw &Yad Akv; 7HerNzޥibvEW([ݛ.~q;OaS];Zo VdByR8P{q֚/9PPm_QD;ee\vTg(d̊}8ϿW,>}Ho3J$9@c8g8i,C08#>L Nٍcư|#WszՁQ_?uXeF>Z\82;@t:[2F`75Vi!34өcU:N:@:4chB2n)"NxԌS79vntZζ3ƌchZl"P?N,1d$ hWf>%';Su"upORqs uiٷI9=#ڷQd7V,WINK)2£ ٌ^vs3gڞE CTֱд5E̎=}Z҉f|Ԏ,1߽"]3 >M?h3Ip0 z}kG[,Qg_0p9])bFwXY`v+SEwK`cNIX¢H]<)X1ǿ9j$d@ĠfO`1^TĠ8:VIpq3`c~X`HIAX=qMXz`ԓ.B$k Ve*j4b$diQ6'e'ʆH\BC 0W<)5ĞlKwcS*`Cq":qZӧtW6Hobtbs׭]T,$Uے1)2Ȩ`7`2xM61d,%1U ZmfYL`+g XgՈ "cZJs0⠹2>P~c9Le3@MnmJ|w,*)fC<̯-P p~ %U> ==.Qix9Ğ(V@lqazk;|w*T`zkgv' B3!A(%I<`H|²GNG> Y\asְc){qZGI kp9 Wˡ8jȲnʷ[<{cn'c3<=+5g]lDѱ$r:CD:8ml)L|Ďw,ѩ 60 W=/ߐdw'dV8җsPqc1 x4_#9Sh=O.c4ew銅Cw %x|/қE#<XJcNwq`ӸߚjqL֝K>rGOjsd8UN[IR6F稦e=;Sb1)UQ!<Җ@NU9zԾZ?wch忺) iO \+|l(_mRs)HN[|Qh g#?(n?QaBEH cCPcR6 J !f|ޑ9$d t 0$}iw1@nX<8HTHN{TXTu('?^(NÉk6rXh_|E\}@% >>'gm5` ;{Uv:<&DL)۴8B2ӊݑQ ;udy.x :t DEr/|[1`\-Ğię'Ҹ7OBϚ3-{YǥI|2v.O`j7+ 9װ[fvf \$κ19i ˜8<sUc$a䍠] *Xp(dLF 9n:qX$wA#Q#|14Y&d^z {|lt㊗'s2Ǚhs&2z(wcW N:ثH^<U-F)q'tiߝAs5H{Hcxۂ8֥SDNYXmGoRp6RhK8GˎGAPDˈ!w늮!y-[,>w<OLlj-Y^5I \S:Ao.11n6u?Z8!@ Cl_%9zR]DQj)0r5yM}ϘÜ\*!<3o cFx5;fcr0J|妠rRgOݗ?.ጯ_֒yˈ 5 kێ^7f[gs9#ZTΉGU`Gn9ϥTYn*K'0G=EfvnNmQ"m 4Xp`F;n%\\'B{jF/ZF"2  pB۬3mQ nzO'jBVἶv۽r7Znٜ|Vs>wH7m yyA Z\fʠg} jBJ)VW'8YC*F]+j[WP瑜DQ:FeK‚?{=kRNnt>Ն oI)0;R%XF0VÞR;͌٨" fY7smmHݫKu'F3ӷeDIRxr!ߐp}Q]J4՜K2ZD󏻷=AO( Ŵjv؊iآ.Ibw8)n"<2r[%&1.WPCVŬ~rM0t…6'UEdX0F<7.T$zӽR_9Tcrŗ-Ӏ:֤fٮArG<iOn&*p@h>g%I4۹cݢhyR9\U+qJH :9늾R+~%s)F{Im'zKyvc9+9uJQ@[ڣfA$S&\C%\D@>*6؊q`>Kixl'Tuw:^13dGm>R?wX彝3ʼnQHwnfcE4m!2kE4QLt8,% тe 3ըJL`MBP8u9H'Ε(L5iD UݽyvU" ʱ=G}}e'#{ 1n\zuhn^+(ar3=yQ,o'^Vz-EdL凿k!(P?˥C-LorzA]Lv:KdF2,xa1mg^p8kQ6zs˴1iKwm )"1*-ip6_Nv"5克9<;G(Ǖ?225n'"E#aYvsȐFK5m )0AP9&u:L\+Wu`ʑzl1AOS]=ȼJ<:vSY\nV}*,@pŲ#z;WrVGq*}xLjn#v6 ֺ59o.3+M$2(<<(g8><$7e]7N< ж1:t3vIG#\ 3d79[@lF m亷O Pyqmdž޼n׳;0J'U!RJZGizb}  M/Ăpr`!^,zc(ULήAmXRveHzЁ'kG+'#N.vd2,0]o})M{|TCz)D@Yw9P {iw|cޜQMP #$ ZrR/_Mcִ!jA2c\ҕ,IRS@zNrGZ '9ƣTz `i>nhP0wrT GcH1Mї$҆m8TLc$lĒsM5h2irse\ہQΘiť9<&xc™\7j{@Tc3O`6@,{pGb}ӎ@+ۯ.FHlR>픎PY=+@ i&r&E= fV!ǒ{u*"s}+<{`ntZF,(҃Em3Ԝcq ?f=і]^8zA\1 >l` =K^9dʑ)F8/<nkKĭ$#82$: 2 09kfˋG+2:wl RsMiX2Gp왈` pÜxf:=b,E0[wB9u*х+Hd]<,Une>Hd>Y3G*h8L]%l*Ү\+5yXm8j 3c9X#eVG;TpOA4*a NIaҘa!U/,H#`}jY0dy?_𩺹ܬvd2X(uY$',NF:}ieߺrۉpj+!*s׊ =ʉhWŎyj6O@?1i>|W';U!NLd9ӣa}nQBd~\oR{vWGgtL(?}J㡴dtn$[;v!󬻊ۏqjyQp;LIj-bB Y,Z)8r9&-<8W;SP68w5,7&LB*G ԙ`q=ZvۂV}N#}8u:9+VX1[f`,$rn R݉鶖<78q5O{٤g&)fBZS$ vq}1=xV#:ahZd%̉& c0:u}sH"Q'=Ai9$0}\̷2W s땮,KD~%O=8 xɼaUbN$69 qӾ*豒ZǓ>oJI39.'Hg ,}QqSmľzt ^XW:36ۛKSf\SO>H(U-%SBuÞGn*őGWa gDc$pN2RmBt,0C }rpl_%uqVޛ~v0x^=3\b-@+'E]/P?ƽ HI#yr_ˎW'ctyz{iŌ6^X+qgyn4ں;7/+3\FD$" dvF_c[DXfT*Ԯ}]:v\K PasZmA)ઁֺi4#%c^9;Bl~PR>r0$vx^:O l.ptRdޕұMA`]p ov޺M^)IHy!~*ǒzpiŤky<7QwRCoAޥ8R؏s_>G|>e[#=Ggz}XZc$~=*qoٛ]C/gsh3z:E4gOƒ+nx.U>`BHpy [}Hhᇕ(xRYǩ+o<`23ہsIޢJttκ[KU#6tuny"[]3W됅dv7.3vUV jZd IJ7*vБҧ+ܘYXMnr'v:V%nInJ(5fyeePfnuj 􈏘H^;М[w1fo mޕ~T*DQ3^aıJ( ˷ϯ#?tG1I>kkxD]!rrz8M*Ts\,r)dGZްC$H8Q:v6Lx%X'[}&gPzq\m3DOOr v6nd|\2|-HH$Rm)YUTҜQF9砤[B&7rVlc(  (v~ s+i+qiHޤpOu(.:c%=z¢g<0]l1Bih3H 8Bp6w_νitZiH2cU6aÓ}3)IXE,a8̞f1/aתkOd*N@;zX7ڱ$췋+t:z(Ť{8*bCjЇ@F;J$ g+uV.>9گA6G'$#c#>*6`a,oQ-!F1&paWW8]Һimbȍ*H8#AYy*voA85LË;|×e Ol7J \Uz m[bKQaw 8ZYC!687M̊ǧ-BH=?Jbkd`7#!UH8je#L?EUʅOh-%DK'u n-$O,`)qM tG$d't7*ev0Mt RyܭAsӵh8u I?(p:c[" /|1`5g15re\m=zqf·"ǿ;+p%RSv{tZhGk\&a0W+z=ĖJlÀ0>=x f;JS +F72@c"F2 $z]FJqG>kcxĊqo nUyUq[%?l&W8F$fzr1+|KcJbw*wG918 q*ܓ$^y{8u)&! _Ua`D֗317~t޾F'P@q0ևLLҝ0N6?"=k/Zvm g.f|{MB7=89|7tі(jp;bD|4¸SD%@,9" )Jf,nэM`_@*lP@<U /=)w)j ҟ"0t@+I%G4vlr6֣9:S3 ^O9u$O|/=W0sJ71;)0R28W( 8f q _?>iʠ~sJ6;?„VdXc=`Aj0=MLt}() # &Hwjs%K HHP܌_8=y*vbh )+sJw6~ZU]sw/ T8n LD#)Q7f9>:tlr܀v֠Ht[@ {iztJ庎Ի ){X9 f + F=M˩ˑQׯ֐.6|۰38mvWN9?5Ds99Fd1,{C'hOa_6((yǣgW_߶dd{On06$(c\XS&Ck,9\_qlr:cc3'5`H0+sEHb`[ 'IX xCr,wmUc?ҥY&A'#gڰl4bFesۥSWګ)ߒO[9 'p'Vi278k=qҪG]!%P}+.uDp%9'=yQ杁 ccJI2`g:3ZDl4.ҘY72ª<-gm #Z`ˉ|ѱ(yE9CMIȚK|dT:=ε;7㪝h9Z$(܊06?ZgyRFkIWa&zgځCUxfv2<p#רT/ͺ m ^jic^U/-d|d]p3ըj2)-LL-d7OlNI rNz՛՝ƸtW\U-h"# MMs-,Dr Iq^ǬkKu.Y3=\mfA{J/gU<C4FM{DJ0^6s֥(LI$+o^t3@8&zd:WCi[C!Vn@>J4хVI\oBѧC5QzZO2B@. m`}=+oelM奅>##s7ՃN&+2Z/rIU9E|rVZr#ūRY m=CgmrѻB[xx=~K۸au4L8R)`T{(]# [L6AW?30қ'`lϗuNrGu \4F B|2j%YGݒG5𰓻Gm7(k G,q~@ 0[طHgl9oJbԠiV)՜?Yp$&5 <{V~-rІ Sj`W۷A,C/#7^ޭFf*KDjsLTkonqi ;Hq޹j1O1=͡*?uyGJK{ȕ|Z11J9E=D.ш\15Уz|ƂB܃ު[IDQݴsCL 2KsqG*Nw9=ɩͮ|$ $jN39DI2ı!_~IcmjbC֠SijP?? zbpjK1ywsׯ҆ݶ:H!"ho xZ޸be%QU ߞ1T D rI̱1?eOk~ h!.78prxNH!cgDz)/Z\'_X}&ZPn@ָr4AyrrS%>TLZCv#CnGR;Ԝ+z/ Z̥6pOm?˥x,:$ܣ.r31 ܑb6pz(.=vK$1 @u^.|@ wuiimRY|’)RY=I] /}8kG XKmrg*~oszWAkZ$u$׊Jռp@yk:C!fRO=ғ8`+g8u+f;:P8 ryƓܼJv;R:5A˺+LxS^OsҲm:o&F 9=j-QY_'3ӸO98`ܓ˰F?ARiOcK@q:u5ŒѕA ЏbUD'h\HZ5 \DŽ*vTDO&?gkϨ\[/cJOQD?@`?*7D7m=F=R$1B69_;nXjp =-n$Idf;zfur;J脌g4wz+wBb:_J*2##V=1]:ȉ۲Kz#̫/01\Wx]̤=>Y.Yԫz;>WxC d`)hg^E??P&1yLShki$i==(  . 3{izJ{qFpznwz֠?8vrR0>'9qJcǧA A 4 GSK?Z  ^"y|1B?&?ݿlZX^$$J%HS*jcHA!$+fUjmF؏_'=¥,mU{Йq(lJiXRۛ;čHpG0&z4$0VPsu] X^I;@OOcRVGn3W\O.= -=@.k`KnceO͞7Jі;"vٵ(s NZP>ҷD@dHWfTWZ1fU#=$槹*yL!$uSF%ǙqO`3X(#Ur6=rġY.3e8ZѷUL\dvס< f0*r'ӽi\v!#+ܜ\ Jwe\dz{ɃLo#M:vY!ݼq }ֲnt6 APz(nS(ӧ:1EPpH>Vq}}O?}*"UVfyg<ܻsYң' % ٖ<=kHy |!`m+:;HY&p=+gpud?19'Ot; lvu%]߅9޳LV'ڧ#kczkݨAw+?ֹ-F_8`(Al=XzRRdwc?=ysGI.{N! ̽#^0U ִڽͭCʵFd 5kmsaop3Ou?`5'KmpݳaƏis=$(ǜ*v]W&ZGRX57r#(@o=#ɨ$=kXdnb#YI;SHIBXFaP8 nJHdOn B?{t]$\Aǭk) 9"m4ᘴM=3ZzS '0_- F mnXAau#;͒1YNR3oƲq4L(vܙZ%"dv*{fWfPsLted<6=Ys f ,wc<2FطrUW\眜T|T=xBz=*[+礜Bx댬0[&LJCz1ן­M{ -*0r6*;4_.De̗w 5*md J7D];C {Wn֜vq-dぅiǧJmo,,}TOtmq'9{kXKS ͺ@6nZb[7$`=qV_"ym@dߐfoX= Us2[ '+U8`&@8KkhEEĄnA* bXx矀0P Mc)NELa>ֳ+쭌w -^*kJyM!R ,8Rg'˹&3ΐ68Qc[>&ȫo0 =Ju^!kiYlR,9u˻V іP FMyZֱ0$"W:<|ֺ)ԱJ%]].km|N[i n%( LrA0*im ]ffC Uu)gK@FWg5jF)R,m s#tR"@noTm*.@~}OLCwzڏ*;Gq[#U\ ܾP \`~5K4(7g#n9.2ppr81T?B=Qʑ wpCqe נvpyIwlSypʸ%GOε-%=:F8@8#>R=.7{0XZ++߶<$ŹN߱{Ks">)@uO^4gyy8N?u74fM2nAwu5m{sw$tA#^#*3zTW)-Kn88UmE=-R2: :8 E${]n۫f>cm`ЏjݢH ͒@WW]^# qOQ,GD1sp<&ò%V=9!OZ$vvn\gl_Tt\]cc/!YvIZH"$Kr _AY6b#n֕-D@68 ,q`yHNT23?\~߾O)Auhř`‚\ Y-*YbstCGUM4yYC|N _ֽOOXQ$ $r{׊ >v jR3#5In%Ru c޵,XŘ7Wre" H;t0:Ҫ $0Flc=(!Vܽ\sT.*R>\/^\Tes yzT'&q"8'QF8?.jIlN/~x#Jpq@ ݷʗ(8ip;co#eQ"3Ԓ6SvpE|bcҢH|dc߽;y8y9SG|IN8OcPo{pHe}Csdr(x$̞P(6y9 wGc󩈅$ΞW;H9Q1ji%I֒0&CvMUЂ$O!;rI5Dܖ=jv͸GzZa% q5>=$ 1^r7/˞\(0+`gcY{k#?Jvϧy6qǜWONP IX/BG!+Tv~0f_:&$zW*bEnyd $0VS1똻)&I7F]mL޳/!}O +#Gm~}jφy$NY{┨1EVb6G9+`ʲnqI# ۃT`w1L! Q_d lf5$u;7.|it?.[XJF {:z寤q6O]Mɼ$)I8N=}뛓{+pDШ{fmƸSˌMqұogHwج|tͺ+.ۿ' (==)6#&y#x Fэuǰk>P̡``J6XQ-Jbs;;cӁYD%/+j)˷0MrPSgڲ~ fSZE™,кǽ`_[=0\+r׃ךyŁUH B1.3"@5 ;ڔ+$pH z?eKlI7![`ޙ?zL!egTdZ⮵ ,6Q>iI*Ee!] 1ʸB)eb ]]ޮ{|f񵘟CW--6-,;g@u"Q8[i0bkHq>^9'UmK颾!E8clf3De$Fp@=F=}V<ڴg|Q0 6_}nծ9tUn.`ma۩J,,QΠad m?09tRJ2ȶ_be[&h n$f܉-f2rDJ^GN+")5)" "W=fZA 3jr'{ו^3v=:?R_^3nJZ3fC]5n#f #>2G ~#X{x"3s׭hA5曧a<F'aOa%W$iʚ;Gzwl}i,H%F~~JKK۵]?Uq^-ylT'Wqm\Cy dmXpN s؊қr#ځI{=+BHc(#^i%r2Elpy98!],nO*dݹUI`9#s5ю-w?0z I<ǹ\<jKx&xgHQSvA_sUM̒[nFr*Z.2Fp )q5 38 z߭Vk5@%³Z*[4I#<*cct\:uAePNprzHÀ'gyʡ#>\ ҆28\/ W]iݦ tz '|e]u,dK1R5;>1"l"t;'u*Y9&t~n4䕗xldsߎyq[fEI(^(>WS_u #'֍4F cϥrzvf""129P25b$.H]1WZY4!yĺ[+m JE_P fl6zO¹-l$\M-mkml*ɞ0|î0X[af*qOozƺe+0gvpswF5%E T f)]j䷉ F>5y%͙񃃍סUZGxbx?lyVz0 z61{m&;q&I jD"Hd#$#zӦ1.FCY'Vl9 ߡKIpX{vG$Ie@[GԚޠj1Y3#V}|3sv5(G+YQ#L_RMEXI= E^i*H }s:uqgǧ?ι-J "3'Pt $[v_F8v)MvzVE ]Iǡ!B x>ٻ2JtP7aUٸ +c&$=8,ISAa '.$ֻbla;G ԅI8j! A 9֤!I*{S@߅6MJ'f̊UqM [n8:RuM+N@ iЀa y.H#):5"aA>ncP{Ӹ##5_.g*si4I5(PWRtwA|݆|ǜQW FJg:;"|XG<՗Z?0.>0]jƝl>G4U!dH#ڛ ¢GV؝A;=$|pI$ TDGJ}9ԲOJx 2G!7%*d7uv$rsUQ 7R0|H<G'e`z-ԎBy})TrUIQ$ ?+G-X1S &vLc+QA#QpF͍F'`=B4F;[h繤y4raG7a]j7:FGJ'-vvI'cmim$3g0}it& G<wY|XUvb=ÓY x 覌A񃓓ߞFG덞KTFTd޻{&ao_3zK\zяtI0mβAiNY!yLxeeOROsR[^.CYiwakzR*}bå(1Qƶm2'()zrjAgP'9sҖ dԊs2,cqkJM\to5X9;[i26Ú)t c~@#%t6F T1cLBZmϚ 'PpP>`$8'N6"PboRUn-3ysw+4i 2:zچբ|C-&:W{ZZ=վL 'nXVw*9`\`8n++NvyUduqSvp8bwkHJst9AjIo/8)cc 9 ܜ*m>PedHGs^ii4m i2OR})#ue.9cwoW E_.&,:9.JGymhŻ8ݷȭN (cN9?fZDY>e ԷqGw иFsM[ݣ_: [TMj r7E %X՚bt{M$IHnbW8 8W=m#(\Ttlm$j vi kh=Zs` }=0ϩ-fJ:`$S]v2/ 3M4L" ،;ZuԂ8C#}}E-̋~~z{W&;śhd y&u,l13>½+RXY^ gy,)h2^2s|/S5FkvnӐG+pq_Jma fFs{oZJe,O9?Tis)DZ~][OzKKǹ'<{Vtn1!dsyoN=)s 1]'wЊ8Ege0 xc+h_đ<ovZt;6luü-\Q+ӃH*[>!!V-eι?h[r3b: ֻ&w`.ь+ұMnI(td7\Jh8%I3MiIdS}sҩhQrvFx>Q]uׇ#)=A}$wd#kg(nW;["$fy/2:Z7ׁ'v9+5&fu$0qYp;@c)Q{[uK+FHcJ] [. c%Fxɬmo Tt Gמ:Vi$c_\zxl;n6$W2G8HnLygibC&yФgZm#**dy` }ꠉ/A8rDdv[ fHJ#",c_zЀ۳)9$Vz%ckLAUעiUR9q6ruR1vRg#S0 Q'Ķ{Jy>&?v:qZԻnN *spkngHb,$<#52؝`>5b!%䓍8?x|\o!PF u> OC@|JՆIew.;=MygeF2]Ճ78Jlۨ#W wzc85mO[i0[8ڶ^nʇ @\W/p [v3yxk%u_*8%Q#n/UEMXeN:נ{ HA*t=;֑F]: 8xz0Oϳ*lsM'8Ƿ^ ֟w`v]G֛66=UbTɒFAɴ 5{;]IH5)YcvjyN*Gyc_hS&#G\QٗV(Qyj\ұZVdy 3Tn%ţ2!< e +M;F;206'!X8'!eYJo py֡$h6g ؏£NMya{+xZFڎN{ֽ[h㍜.v xwGNEٓn}=+C䂋d tO#g3Ḓ>:(< P#a$`K0I mFN2q'YҤqKLsx- b'FX ۛ5o%~\;}NkeY? ((Ua2;͢Ll"vɀO}*T+!NI4lV@ *A'v>\pI FRT * *~cYN}!$3+fl 3Ibu>ýhy>fV )yVbYT ɐ确mgV6bCGk-B-(?_F30Usbpa^1ֻt $s( H+$x'ˌHkF~sK${YG+1gRSןYK{QkHD&U7jzg[hZa.ܑ08:כJKݲ)l0P26u2sz]\d1Yq%.\u#~ #KS;2[ yR=;Wj:C-٥IS#iV^XK ^s1؏qH.$!<ۯ[&y |n #\X -aCޅAtiW p8>Hh,c<*r;F) 啙3߮p>+M2&PI9%Q@n9l}+Rv8 NG-kNn} V4O*9`b _ʸLe1sQW$ҹ+Ŀf|2'>*\PaBcv=+R쨊Ҵ?=IwnBŒ6s*0;Z!dzfgD&䉲|p9>*QEٰN=jX~<խ:ɝQV4bPw2__Akk&Vz*`8^>Փ=\/؎ac$ğQ]T&vga]aڄ դqJR=D RQzd6)A 769+sn;U\c%GTG^A mr| .j[\"cqԣl1.}IR}I +( uXDf'(DZ_[z4 Hsc7sYiPePa.A*tm68(ӿ+s}[S_HY-̍H O1HvJNà#J ۮ6.v~=xkv(aA*8a,AO :5@%Հ;A=GQEJײ40An=x*6: z+tW̓#Hgzb[k\mAֻ+ 1V UlGW/u!؎{J= "yzueTc9>J `;f&M̘lXwokY Pv0RH98zJ"'ʮꊃ?Jݶ83CqOs[:VH &'gV ;rs*wmR6 {5^LUWRy:г o:#[y`0ā+F(>ұy_3wVDޫl+i&ٴ pZE(tJp~_rsvNHC(嗨n:kLk_BGlw]̜88W}&p׍W|#)f@ 0$PG!ut o<^3ɑ>X'ʗ0 s_/^\Gf'2¾EI* ?xu;Wױgg5sN"+81̿(4 3,-8)ĂVkq4.n@폭0F/~PeyFN)@#`)d#qP  B<8E+B%㯷 $$cQQA9q#ţ* VGT>Q(s(\1ן^"I ˍq 0-{ oq("7$ 1z_]Nn|@9R8yu}R;\zr+%D#숑9=99+J>'[%ƫJcAOåX_-,wn=qS0]xY{z1EM/ `.GmղrÁ>VlbW ?k*y \; u,=>=I9-I u !YDHq \"O6PIlR~'ާXҞu# %< *k:y$H.T`jǥ]F##vq՛-y`?&wӂZ"ohF2GP֠4\pAovxm(꣹lc8\LW,ں;,Icp|Wk]en.gC= uL7I) jV(iJT=+Sq{+Xl5;p3)=@`r=ZeBa1SBL4'gXȐѻ'8+thYZ$f;| P@k)Rh\/͇#3y-Z4w *rٵ=G1# G] @:SZ2&by$:VSscszZY%Bw;>YTҢO=JQ(l+X+A(4WzGWHm'ǂk t#jtD`SGKi g\AV0IW_pk*$W !|֦0*Lr=:֑Fr+.D$@Sh  {Si$Ds 4YD3zՑ&rQ*$#q󜃃~qW[ς,ĊSH#C;+O+|mF唟OS̜;1mKwֹ y(ېF>V,PAZ'V"=N~H#Yr@@7=1Kkjnzl/ȭ[+&cϽJ%t: pzMMN"#r`]UY"\r*=sڵ!,$a# 3c ~JrLQC-6EȒBW=0y-ZqhQE:HIԃmI7+`nRJٍdc!*H"Tr w1_AY,QDr8jEhjJTy#_)r1 3Er#ڬ(s0TC7! NxڮENCJŜ##ChGH?#g;53maX*nH {Vasߌ`7OM8@L߀Xq: "vnv: 5X;F$'#,%Tb{M#vvHZWX{gu0E+'cysMyL`Euq/ 9]ԏ"$C>Ǻp (j$S쵙^i|FpZ\3bew<+*W8ʕ(F%Gkxĩ >a=x`zr=+Mrww9t %e߷n<= xqbʀyg97 2OA>e3!'};(`p}4Oݎ!@Fӏ`(\;yVӵz 'ɒ`0:S8QFb%'Jsg#iF2r?:1=iOTeTg1c;"sQ8ޛ“x1اpb p?1{B8#Up I40'?1>Sɧcڢ0MLHM)piS[UaSV`g'=quI!ԬeGھq9u> vKv)"Z 19wFd`pJ*CqMfeszu*Ge1@سDUF t* $+b7^x"xy+֝Ư3Ȧ09beQq~ьɌ47W\+(@# sPNJU\9xh<Gޫ ,R U1c `o٢|&9˜q9jSbDQ @E]5o vO|q8{nUbϮ+Xfxlcw}]X=kZ:R@Qn͵IX7 nJM]E_K!%A<0=:QNf$?-Ky$&Q>{UfiSTԨhAna:$D9P:+"(^X ñF2X7ck4RvઠvP1=pk's궱,s*<= $DPA#ǯaVpƑ yϭEp1nm"c#5p|"I(=A֦>X6|k>uaoMp֤mb ^92i8t7̍<7NJ1q׭Iz@Ć~qWVjtF- *pI*w PѲe#*{~uVBB*'ASV2XbcA!537?=ya}^1U?2EA#Tgc,Ap025JWVyXې0p2:QfjM34r†@`sxd,1y{5[_wdg+gU!S >E#jh[JZb ,V@$zWك)9)2p7# wUt47d1[3/byJn00:wޢ;V+ dwZxIltyY_b/$B;Qnq>L 0.NX䐼t~UX#^;+XhYB(FG_LK.4t݆p :tu2 'mHg,;+LķI|`oOBk:ՍbE@aID#@'o9Um%e @w5{ $C|)<Nu_GL[ drN:zVgP-pd Ҩ],m]e™72=%vS9.*$wa1Xla#9Ui1xz609LZ$HB1H֬ ;\zcޭ\/p$+x9BΆ3IHp՝zۥrHsqC]E WyҪj6p* 3ׯtz9Z+@Zpfc`?}mɶ0ۨ +oD!2 eaX Yc:Gٛc*jz߯4+\Z*qb:Ws! #==KO5#R2M\nh3ޣҴ#IfNci=RG%hLjm\ Uv1ۏ\Z{sm}I&[dPyb(#Đ'+뤳mH~^*kv}4u#+3tKJ7>V {"1hPHU=Mo cH$XϒpGOLjh%!?uGpH:Q,?2|zpqIQJaX&s#Hzm\F*)_qP2ͱQ'cj,3m0>LcNd6ye0>˴ ִ"IղǦeZApa^+@4A"^?ZDX"cJϔwbXƄ = JװaŽsqH^^o,F'f1v?ҧw]ҩpb;Uo)YrsUVi - NJW.UI01Re$]vZcG<#]%~al8?Z#ʨ82lpF1_k2\yPd遏Nz0<:s_:i˷ jOg.KS ]Oֻ Nf[tlaO^x:a >2F޸]7D]`.sYJ,﯋\wMK6С1LtvD8אC[xC2(x9w c{Tڀ08C Jr-s*`?4 E3*k9"0G8w1g9!wzӣڸ B ޠ_rr2;WX~bzP1Fz,XzsIvuڤFrc)3>w8lgI!pqi;ӭH z C?Zn¬:)*{j \^OePY<;bDc֦y~^|r;w:;ق*N{棖4 oVB7F⑎_a݃Hi2`}iXxyim¸Qs+#_|gZW2-`TWُL|-"]J#Z+*ZhBHC30`OJu9m[yGC» v(G)pAƼUi$w;Jcc0ӔIk 2 >`OB[9eFA4e(y, GP MiNy$݂p{֜ga\;b~yߺ&D5hVP;7_N^&`frHnF:V:zVMǛ2 jZ2şƶ䱴]ق3QHBĜ}ֲExÝ5Js02gH%m\BN@g'It:ծdEpG#P Քn6g`"p[Z֖⺞ =&}wT㱹Msӏe6%wl֪$2Jw(~0Ib3&s ڴ9u+[[yes79Q*« FH#vhBii<(o}jFϔb A˃&GC' 0%A {z~ @H$q*TrfC#QWcpJr8;Te(7vT csy2K1f]Ē$w1Y7f2R6HʭEc#<⣽!Q|=kx**E8 qOzXZW̷?tFie-򥹍~L`- nB}l`mB$u*r*A?v8$^:{2I e0=R7Ebc^,vqRMԎJnZ&9G\d(mԈSZq &'Ң>&bIPH>u,ϑ"A((#'OCGF}[1FHnܑ򜃒0A5kc$F?n GKA<.R9];09Ӱ,D-އ=*#4l!0Hm}OƦ@BH|Q("sEBwt!8 zdh3489I HDq.\."gf;`YӇ+2|3ǡΝ&y<$֤@# <j5!|Ԋ- 02r&YĂ uTQ[֬.~nǵJhE!SsZ*@ҒͦGj XVFz#8 Km }ރGZu<#9W69*P s*,Uit~;TY#~~l{}A5jJ;>KFql?-TR? +f_.xB8? 8jDOG.OSWOl`>QG#sF~Q3wl?]翥{^ks>*U@I1XTZ3Ga7sDJL|s{גbM xs%1r^_oeo+Kn'!\ =kOSr3$˨00R 26 >,F{%|A*_;Lvs=)R.!Ws^HPQc?y>((!ϳxWsp07SZǝWsftB\d֠DN ?ȫ$~@w'cQK eNW):fr3N皯,3|vGם:z ^=6O) ##i_ԦmD+`=ktnr>xn@oqGo- Y0:Ҝ\G@ t0\V߱wyKNh; XqVH$,erv{q굍$e@\S ˧3qǀP^ZGkQ]EȐ)bO PP~CN~jՒ&d{`Ub۾R؎W$%Mf#'֦0AۅGLϧqldjJGU{T"mT㯩$f]q¤q$ O=}YaI& $rH֬*0`7L 5ijBG@s>Kw)Xf9'r` #gC+du$z$lESӱ8HNnT6skOhk<%sԞHNk2[k vvT:TЅqڳ$u qOMҴ*\Z pB㝿S$ZS9'l[ ֛v8-anpcLcTٲƜ'^%Bw}xfK]A A9wphj!U_n##GN{4L6ςĜi{V7w 6%EЫNw۞?)6Лt$Q,vZhnu'HbpGͅ5R+xS͎ٶ峻9=2.(v-Ai?wn\q8tQݴ~}vVL8iLOf#+V fA3շҳOb ؙm+G4u]<5 ɼ3ӂ{j,I.<8ۮ*۵;U3 -]6fԢ۷&Lwr;sߥh|i˂#=OEq\J*F/gkb6\M OMǸ7rp$}aqz[>t>11x枱]$g.0ۇ$殹BTڢcHϴ[*Pr! mG8_)3x:[dX)Q\es9f8?Z66i1oJ'9=9UYycUӚBoFϑՁǿx#`>Y2èi dbWz61Ji#ƾa EOcd"’O*S%»@`q3٭[cKlN1=MZFSd+hp˙sگbmnjnϦk.-} Rĝùϥmy.2xfY/mF {U9n+$ [B :uI;  9B*0&m WQ)a{}y"-q[lq2oO}M y΅)~jX$$:9}}Gc6@)f(k !UYFkѥ I>iR% o0եx e`ͽ 33 㓸d{֤ɿ AUh,8uV)w gluST Td''ڙmk3J q=AҵEͱsq=sV!W?E9$qҶnV@<ހz@Wp}+|*)NT/s+Tr?u6AlWI}:~5YRG^pUSGUY^ 8>5uy\ߟjmy-PG@3ҹ;8v'w=>ҢpԸ;pk(/r^XQ$}zxP>WREǍZpH6ZDFJ ֏7BW/)X FΜB2f1{T찐]w+ 10H9b~atZ4A a=J!ޅrâr0FV;B{h<eŋ @QU[H]6} QFvg*Y|%}Wϗto3G? 7_ŽG V#|}[dDܲI+sskɫ3׊Fczb'N7>k) Z2GsUtG5>P_]$<'?Һe%&rp8[Q,c!9W'~ܕ,6tԷ垧g啇{j܂/ǖ `U2?2o/q*K sT`UӖ%Qh#gJf/) HҪWA57"icW8Ҷ G" w;2LQdx砦"=y=8tfmJs;5Z'0 8>[ R\@zR0d>OG.3[]!cIYmm1;S\D pBqA$w0ń+#n>).< jvQe?{ҫ[_<@]g.7('.=- $%FA֭2.0:XO4M(toSRl)@2BoAr9#D:L|s 2 r zO:I,LX-p$!zVsIbM+J lQZ7ʡي@qUŊ[$uY8=+:qs ħzcO5MH%S`RO4fGmCU nUlC A'qV-E#ۅ9'Ld֔ro-9sncS%yrg J}w]}<2ۊ υd|q}?_~O[" p<Z";]Ƀ3s}Y&6z dzs֥)@ݎv*x31㥳nrJ*2O^ºarcIlzV A,p` 0:{涭d+#*ÎFU(lv۳e.I!Iܹ]m,pc_s\ޞ$6Ѷo0suTXʻF_vi'Ţ%B|rr8>~0˸9oJґ๵ZM%ԕ=z.EU %rXIM<{VVpP R+4gn9:5mAoI3HV9&(HCn01,Ri';JqGJi#m9~rIJ=ܞo_25Q%I %xs+Z9P ca1&Atkۼr[HힵmM;'S$Wrp9-L"5 9+Dߺ{*pOuJFs~yb?`ߟJ0@<?:[ sǿ$o^: |U+#=)$mn8Rn{R [M;82s 03zBSj-s:~}PM3#ܻSt@g,`UK,sQqN_B>a3Tx`'# #1fq08ԑܞSD:,hpZI CFzG#0bGV|;2r T1 Sӥ2;*) sբya~g #~"yI(@ϱv5K(meY#;^2+GT}C*p1z,neyMP20 #v bTzK~]IpQXqD!ں[{gG 9'7KBQ ~zWQKG#~=j}0FG&X ts.C'ݨm6p?}rjSccUEeqlt+xХl?1i_A{ >J`cV=eeR[vsڹY񁏼}\qW!P8m =@#V8ӡ\rFf D.*-N'.H>bWGe;2x^P~ZNr?ZtA"l_82ڏ/ao{ՆiuTC{##'h%}؁#5=UOCqg*Z% x0ʸp{eu)5 Cdmlcp?ʩ*C3yսg -"AnRP~3sEm 3K|r/) NU/^g xە=N!Tp6)nhqO!#˗ixsSמշ[|n*p91UU,@H?3qG>H 2 9iA4D = yFߟN^yeUF8z,-rjO#qI(sW-UR+R-a٦݌v:'FjFrǚZ;~c=FzsZEDZ$dI:)}88;Hwu2Ew`9ɬ&cxOLոfN3UidƦ5*X}i([$.g9Ͳ%I;; Dwθ\SH(NGlMxm]r5qǩ$ULo$͆e\8 չU.FǨY:ROl7 XWHQ>̛u$se_\'dؼ7 y񎕱,Dd'lc뀱Yݜ8zv\]ϲfU1$~9w I<0 i~P1qUS*x*2pRCj$8:[DꜶ[pAS@݊Iu܈P֨ tMN00{ףxWBku/"}6ވF8q5|K^S ssZ<7?J$P~pp/5Eh|ij4`|qJp7Cҕ8Nc?5g3cI8zL+rLZ\Zhd{rM2> =@I#Ԍ>U$& GEK/JnFW朼sȪ%PqERs{Q҃'+3~\Rv0O={b@hR)FA9bn ?*pԤ0:0 KJP έ^7RA)t=(=QOj F}sNV?^pwBjG=ң]zٰeocip3HW# <jp.%,'P8bfl S^T,$єg)X"Hw]!1}CyG9Hnh4wd`Ƃ8 y3266sҘC8cAu7p;H|{w$bY۷͎ުHu.9i>c8ޤ0N0F@ǽ)3A,<pk m9qYlW1ȥ7 G*bhK}1ҭƖv$sYD"scs^Ys uquk-߱O9h1 }~LK k,ŷQtY81CVQ2`6h,X9W'"ԸN؟ҵKQ;"[K0Ƨs1%~=idBH2'=y2y*3LK{bFr9xrd4W͖tI Xy$P8WV֖ nB~UdUj,ar:hU,O(YX 刻EqWUF7G9+AVZHDSAT<}kL[E+#nܒswqv{!D+O(S1f sMY]ػU銲W#D*6!Z80,.=?XR0HS@ݜ E"aCe> `HHsO#~{"Mqr L@ QYCAo#+HS8ku?iU 5XNOk"Eiؐn%9=[s&ϵsۣli;p[0r+*&+M-0o«ܮ;zjssT72La :ːq"HZ2}ͼ6Xퟮ:Un7vWZr" EIM g#YHV3O0TB'=ywcVeq֯Ig;aor vȈ`8Q;3y=AF:;{@# ֪Nsd A۾y66 VV84k") vۃp})3;;pilFI ʞZFa(d"vUWwe!u#1 !AW''c5J?{c'٪ ?΢-y;p!8o\֐0V\@5 ީh +Bo18ןW-6\#۶T#sk[ m"r@ֵ+sƸ$('Ik(ˆ8F:cֺ  p=NkXY)by:WK0yN*³B|X$qֻ"y<=;FU81U,U|9p}@6 j6Wڵk+;s(hZx8N߭7RWatECyz?i}7}=)H۞=تN{S,8l`݊Mj'~-.a4890qPɑ "Ni ӗvNzPnȥ=Oz W0#ЊwN3nsڜNp@C=䜌s@lxv6\J2}*.cmA,JJx(\sڡɯ=JҸ7Q0:rYIV(!劑mR{v+SduS>pGj>Tb^1UH$ C}>GV<Ҥک[$ʘɱ̲ =(hBITnG$JYp6I9t>퀆uDǜǥKE:@"l A/A$S$I#i pN:_10N@I?@,cS'W.wpx@Fq8wl",`z"fM0.9ieaz%!Aj'#9:˸*mOƓ6>s4,*$?7 x5ghEd/־`v #΃lk c"l;OM֯3#2vm@Y- @G ?Zk w>c)ж`s+{WFSWl1+Rxd眞zh[FEpW5vEw+AzUj防dY#^9l{VO8F~TSӷ>z "R,l%E dG-0Q8a{==MoOkj&.q zƱ'#=YJ&e)h%Dqv6j;x-J˂=Hj$FQpN>]j_+I$&tbx+.MM"G'kA|P )v;w ݛ3sJ''ީ$#\DĂd7g4m(gҳvʉFq]{GS3py ͹"hپ׭g+B#gȱ%YA\T8K"p01iol7;97qҤ L=H8=Emtbܥcy9<\mZ)WDJÒ=;vXX&6PC}{2Y̰Y^JcJE,MTZ!e + 81WV@제P Qv˲Y@]N9u9A:k,PyV+ek.fi$BO-ց deC`HIV3(k2TJ6!WH wusymW9taxϵXE~vL2·[<1ѐI4(k$=J%/8h=yIY5l̇nܼe76g*&Gۤr0XбלC )1~)cO(C0䐣2jWު% ']ttӈKcwh9#ZӒ1nv̘Hv萙 #DF28bh1l;VmKnG2.y͸)o $MD[@6N݉E\bCm(U>P9-=kT< k?\9lg$ZXbu(ܠO=G8eqЎUbYIO^gV,r/}+G;fǜٓQi)1q=GNjԄѵo>V`PC`Ҵ 7̲VUᣌSn8+T@MλbA<}9%[d8$m80*y;V58OCT9rIJ&݄l<}*S1-A\e 1X̒@=rnlpjȬXcx0.ZۇhJ R:o[VY0lt8'֩X`؟w53I$ 10?N3[# cڶF Ǟ31]F+1l.ǡ9(D@װFɣ$$Ҷ-ORv=A6vЎOQ\%ۆ+6"䞹'Ozb@<`b;ƣ S6 uZS w@TG9dRw)X)5"J3H0 WFUGNO5 .`Sv#7(`[qKpqN*0 v"׹#V-@ێ1Τ¸}i0H?*(ȧOOZA+ʪ 9N~AK$PIJCߵ$K.H8 Q9ipi3AT@\sN9GNG#4Nj0H[H9n M?h$/jyV-)8;ڥd#iozs;1Ju ҇fOe=hU©8`0 N?b1}V}/.jc k)n Nހ*iHHcQ櫒Xɞz:<,R:mEJH`Jqp8u>ؤ+ $hW#E8B>QAЊ= JY=7vP4Nr>n b8攪n8#)Tn 9*)i$} L@$C6qOHu;qmi1#H rႃP$ezgw\K6%s9ׯo=\#9{09>t)3^ )Bi ҹҺ帮Wf|IzI#ۂ3)iBN%qs]v˘.%aᗏ@I\hI63ߚu>{$yK&2q3ӯ[,ܶ0MbX3 9߭tV<Lu?Z2 Oαo^E~I98'qM~ܟ=Ef\|y`;~569{%`TYQJсg$k^~a:YoGsܪ)#m S{`t ⪴o'ﱹݸ|GʧΖ`FcjeyFyrcG+5KBs2ϙ72jHUvNO]-F.sqU#M~T83A:e%4H/;yrnZy8VO%Ts˔HǷkcw=ܬN%% [<Ӥ'-nCg{~UXf\ SkN:jtŕɅeC@87Sxf+4NO\H%)2<<=i)(d II/[XԪ]Sv68,w$ddP:VٸYKu1,d* D#vO*E x#LkO=_۶pAsjXBA{h72( yl}犬-ྈ #618ӭfTR!}*@e֕[q 蒐n ǽ1iXppXMN(`YcaRKFr[)|qWGZзeo*9#9$Va'ϜN;E:HŢKCO]i(=.VE*.w#s5G|?t⣹dsA=ª%,[rvwV7, !sБ5UΣMIgL @ө7xZ(unYz +f~|Hr3sbQ H{˓XFOoz"(O<}kƹ:VZCv}i9^ѿ->0=0G]m*XX3l[ACG\.+2F ݌6kMjsN7:d rѪ 'aY$QcrO|v9#TN9R;*G+^GN̝LB  `ԗfHK Cm=:U|:)/B?Jv8#JHw8I#I.GPxDmҺ^]BH7O1\,v3j0W\Qr~c9WnGC 9e3Wzpv'׏\Rٳ3ENC'40뀭 o&I#~,h%yqޡ\ũ1 8(YV8H$q돡YA蓐ny=ZD 9TQ_- `@z}==sޫL6oҖT%t^O.rjfl.(1" t=isL1]ʄdQy.ѳM#y`nʅǥHwr^dV 4^bq:g,ؒ2u\[o9a&W0m󌎸aΒ;; g%x8\zgֵ !էz(50c17g+9c $hו`3kv,~J*1kS4 ʬB 9!Y 6*nQpp9wR@Wi8mG\깵9*yD:1`vmq\0<~_J˶ <_~A֭|Dh[\WDZطB 2(:6?q]9|;W*9luϵcE26ǧzGf 8%n >)$+)oz oiz^]3Q}zBq ]a(H'1AUL\tzTOvfNP2 !#;mBq4G/w{!d#sLrӷHpT>Gv !M h ;T銉8'xT\Cz Rd; P4GE$~RhE/o&wjё@@ y5`03AA*XxBBEC)H= +ή~#n>ӚRUWjsVCPU>+tUV`SwI- p: :~<$%@>v9_!|֚Y0s}}:W^+=.+\•X븡^xɕd_& $8ڐĢq$tiq2Z{s!AA倡}^>uj szV0y9'9Q-W4rvy"H;=GCԮ'Q)|z՘|ń 9>^eEN# rYg-4*7.>]g⬡,H n?.jf{o69jɏ|8Ѻz`zԦe)\yDP@ 0֪h_%_="w1"[=X`q~22n[H8 6+>U]ȹ$qJa$}0Xҳ.c.]|˷ @ =_@+%K櫳apqG$: F"6۽Xc5+o@ǯֻm5oLlFʐɞ=)B7)G$"7R[*!@ֺ1j񠵎v" %N>P_j_2ahW\ 6y gּIi-e/;v Zjj0_H?M4ՖJRr ޟq2ٟ[ 㷭\Q ^e-6=*^U2;01OJL@cMm* m>kU^=x:['l t8= g:"'^,lG="B-Mo9,fIb.-IjՆto~jZIbm>Xump+,FV#7QDi'gr];zᅲ$x_ +2(G^:jįm=enRGK9Mgr9\wZnI6m3z^( r ,9'=1Ey͑d Y^MēI+*89A0N޿9&Ջ}`ckXeXdp\2FqwԺ=drS4US }0?:oI% cקLUdXe$u6{y>V {kԌI%8gs5r[2%Ts;[QFݍf7 "uUry函h"8cj, 0'o2FJeJz a? cx鞙XXWazϊxs cV!˶0vo v$5AR,WBt# @X;0YK(zEl ߱/@: tŞf"Z?z݌A!^Myvf0}@qgڽjbT5һcet 1CrG*e A$WdO&LhV r[AҞJMwT@_‘z81L*XNH79w ' wzU=>n.R}`Ԝ㎴CLN9@psVEB2{*Cx8J1ȫ!aqsN qNi4":<*\dcSSЃiH\sSץ4cю8ROZQҬ-UAES3֕Uϖۂy@BN J$rOS p8??*@p{@ f)Om 4s۷J̠ s@h\EO(1?@~$sHÐsM8 "d!$'8럯;ty E 4/6p7tZb~v<jF(86Dj ,2ԍ1%. z w9#y<0['JT(GDjWz)@3LaAZ2Y w^=?V=Z_!(Z٤#ݱ־A .MS889c\]o.1NKp3U䶀Dg$?/']xvǷ97 %rA@>q^kϨ1FN>e9ɼ@m;}1Z$e 8zkt;Udyf ;fO@oƚ"( hjte-6 ~*J$I@@9ߞ뎕c%k.qRDNٌ{chUٕpEa+%Rн@#ny3U8ҳZaRܤp} Ar&>\**885Z)RH<( Vwe;ILK'}V{^q3`1CdWv!Obr?ζ2G`=r}G_ʩZ%vg>R.9.Xryp!OҼyy^l[w$1N*Lc|9c1yO8v^W>? ./dv#? q1,77|{U6O#g^BFN֖Y7)WkJDd=ujdNYUX `K Uvy<zmu5zڻ-BPʖ?/k5I <3=(hihm.t֪75j#VodI9Dn̯Jp7=Zfr$;M4żܸ҃>gs}= ߹oN߭a) mBZ؛i+NuǿHFΌC~ i%!߀2+Bs׭_;G210cϥU2"/w9?J҄NAP߆?*FZ888'>c}1Opv `à#'ޚ .apBp{rztAf{zù1EY)sށI*ҷ~\A3v}?ziur7PXnŒ78:R 2l!cs&r<ǵ6]j\ PI;YyS0Qۚ̀c(0m?J uVɪCETusN`mq Ϯ1֡J=5daNG0[nw?ٹIR,.Hr=gbq迆E@\:S3A<iaʏΘ pI횓~RaYG*O|4]p~>cuH<(^K#NYQ 봆$ g$sδ/JGtʁqGg}S627qV 1J‰g5Ȍ .FI>ڼ= {M(0ϩb,KX'5ѱ7m㩬L\z0)HJ.\T[{<8ƲKSh$E<$Eϟs%*A6# qҹ"k.s*Ms4ʊ1x_BdL"i81C)}G%:Bx,88X59QI6VR,O^J+}Vwkf@[9c!{zᦈ[p/ݑzՍ2iZt,s s}UjG#WcU+}V$M!H;l#~YkѯPFSZ8X/ۥֲ# ܠ3}Ƶ5K)%~kO$qu9AxA3;WWO+^eGb(Vyw0#ԂJ;y4m'FGGVgK9y2Iv^Hu^E8c(Ygr:㚷2/M#) 1('qDqqf)\~`J?j$FT| `ci[ҕ)KB7DMf`H Aka.;= 7l<@  s-@ ^ӊĶmE7#\$uK{]ҨŪɮ^[5aHak]Jީ{-̉2d Gߡ*Ԍc;B~QIupd z?Z%Umr>tRtAw$B7AR~px㞆ojơ[$x{9fy,m1?/玵Y[) 1QMvsrJˌ*4?8rI8`ֱR8b_5cm`qڭ)d0;^wcS屓/Hgpn7#PHm!]݈ϡLkU"7`Fs ߵME#Ee{N 1quDٸQ;Ż=T $Lp _*I0G˕<)VVd^L x,}U%B.vYgǑ0l ] $F0~_jj; \E*d׭^N=:Nݚ>ql{Vf9C0 @]%l4 g$r ,H,<(MTmpɏ 0wqzӎObgo\w=i>S C׎ZD%*%y85>R,FƞTmZH9={\ee09it F w,p0@9z8@ +>d^JBTm9z&sFMGB2+J# y]bFnw!} oZ29w *1]p9#eA,cP\QҶV,N'nz~Ʋ:bOU:$!}90}Ľ_l) Mvqc`']Z#rĀZ~ݿwR =o pJhczFu7qPcnBB$\JRF8`'J@ZndQ3Қ į'4W%qޔ=i*~jp9@8*x3xiāuژҎ1I:QUPI8!\ uD6*y 78iMsȥ́ޓ pID^i6Ө"HhQ@Q@ 7 3ҚGLL/Zf1!! $V\>ڔFTH>cx*DHe'MVwMx&+cIgCA3S<|ih,Ȼ{IHČ(sF|=03Kgz S31ǯ?B˸'wn}Vץ"oeSSw>1% Rn M 3299 xukHSWq K 4:p8cS¢Ŀ(<֣ ʲJi?kr[=VuIqnWnNϸ98%Fvgߊ i\#]snW#*o 8[eݽk>#IWp^Ha0x*fܳ+fPF{cUdhG9$9n\s3mÖ>qV<$(9Y=OVEm E I!Q1[2OiʨdڹPcȑs`; sgLF's:Hv7 3? C՛YbG% G![nY#&ck;ιRC!qxƙ\\Ӻ;`}3)*yj$8`AA Mqe!åiUL3!@3=*H .9ӊHY ;B18PPs"NϾ;Rk&2KoN_ˏj,k"@bdqM&YWVy!I |Ī\20?¯G rL\ǽXtui# 봞N{c آ6.%J_<9ǧ"dӨQVnI#twɼW@^JX\&Yt=s˸murpq֮ܙ#GSF>!nH@\=/ZWk+AE88?X6# 1wNi(Vy6Pk=n<[d59`OBՌb\{\Om6AX#)0=yjx M&v!A#')Ek*\K@D~Tn1:c=I2E펵$X? pyeTG $rl*S*[l!N9&odCa?5mː#=y`MbG ,s=+odỉ-tcdͪc ?98F#1YJ]I"݉  I弑T(3zؤC!L J7N:]u/vu \] Bmv׽ynFl-~Գզ _8㊅JGj66sg޺;oNO瞵PG Tmґ&F8#=N{+nV]ܓ7n39;V2 8N7"H@z`}r=AUa\vgU[VbpK@,-@l%;xe9+hA ] ȁ1VH9T 3ѩUZP[yj]X{ c)(Fg<0A&Л:|YRrYfH rHqkN8S|GR3|yQI_AmfǺF,~uC#FOjpBnjW@r-$W+)krhC!xXmg$u$wbyA4{wcȲ$[}Ӄ=iVQ'HfQ4mVRg&\{{qZ o#_s޲k(ݻgAVY Ab{1I+ ;I .c~l R  >^'9NLq/'ޫ{S nm`7SO&I{ BRqzMm*'4>^cz~*lDZ=?ڠ3,i$>cBǵ|,s36 0P;~_}'J:8.VDMv񮫲bv5bcyuKciui wtFm`zmKK*o'x8C粭%d?Z{!Wp#׷ҳ@G0>\$QMzu?Ds'Q(>:U}FT{$`=#dP 6='xgPxpEf6Ld^4aS=N}s³/6 -sZ&Yd`j[$XN08`=}sUtybx83ՄTe]y8.RTw|’{Umfv  ):؛[RqŸqj!,O*9)cFz㿵>00 vhLm).[`t'ޕ\DVI<jf WpAO֩53\qűAg7PB{VXxA.Daǵ9=LŒvG,@FHnV$hd+sSB#62u++wrݛc+mU#Hj} O2$;B}0:rj̒][7ҒwaJҊ=9+c$N^*ȳsZ3Κ41<*]D G~\kM P4/f(n?x zcOҺn2a,6"vq*XdDK:kF7)m@i]m cvG^kf}>Wavgbī&/XX5?%IR1)O6g =.cqǠ5XKl.GvBi-r\NVU(LB1ںfɂx]׎f>CpZO=3Qt8Q{A̷Mr~#R%8aNzd:ÓQµŢopϠ}˹y2eVr/+RRyǵ001h!uPuneQ[fpӏj4WfH%\&*>T:sj#6[Yc$[1Ea{8ZKO'>iwSA!7]ßzuyW bn9V?]0d G$mq¯X̷1DfVRX[|QP?R<Tm((5zst Idt1zi$wI@͒Tj y'IS4M+8#{V f7k?Ulԫ2 M?w?Ҡn]c28-Ooˑ#;W6_1f܈Y>_zt) yIǧTy]b,9#=j0U ۘ g9N(Ϙo2e aOJѵϕLuQ5e{0$sRѲ%{ px3UtA<)? q+2i27c<ۚ fw NΨ$-V^r?)ֶ$Pu*asyW扝Á0ǥds$anV)$.G[[fS)%z4Z\ƔiG10){ ?,XB:LT"T Uܞ I Ro~ޤqҒ8ƿ8- p=8rbF}E*zzԆL@%>g\nJjMj4D 3N}%85G1hFzu3$ueU] 8Lv6*u_Jf|SÓWGpĩ<*P@D6r={  XVzpzGOO4ƇҔsKx'/j\b9RzԀJNG"siҎ=*j_#)2ORD($NQ@Q@Q@Q@CJ WY褍ǩt1Vl| `>A8<̓6_ ~QWe8?;1rv19Gojbffƒ4S'NHb@ī iažÃHQ!OSwp8F5B6QvT? ̕K c05;IlnATV1Aa\gڀ2$=MϏqޚ&CV5!@ =UUq ܇|Y6vݸ'*ɈI.@AK(g@#V/0'>n0"e 9Pvf;pO^3O$9?*kT$dqPo 黉LHB'LTc2pO }SAQ9OC>%˔0'N0Ao^v&rc` FK`k6U͑%M7^ӭ]w~~ ο,3NЮ pxn8^uEnTX[Ϝ8)K*%d{<+Z ;2H ?ɬ,U9-+LNyymOΥ6ۺu2\YKu<3H'+'-MS&$R-СN׽gެg@9<󊸳"9 Rj$C8p>9;H<(XQhY r=jG%ĝe/=?1ZVuUYP`<4Qw y$S$)%"G7m=K%7BweeͿ4%,?7arq@>UI;P~_^=*[Hmxۅy8ڳha2 =FAr2Ok=*2ʾ\@?{kFXHrJ>U?+ 5u$M9fO5\bJ摞9e-c}jߗ/nH_ЏQUl{tH2 4vk0 1fiŖ.wܨxOQ9ۥgHY/Wv;ߑ0OiuلVyVB8=1Y$iWxU&&W"ElyqL]t1q} FHrA JG/hFսaf,,džrÝz抻)D<V-TEZϮ{ u'>n8$Ӄ9?/q,d(IP0R&sӨX:~TMXm[F ekL#̎YdsYʸddc8}OZٕg^)Í[zUţ ӱxYTfŒV:J"b.z %wge\/;1Sk#dI2V U4hِ`Wy|D)ÿ*Դ#*hT,m veB0L89>ޕ4dQ0z9ku mAbm9sP\y ?ֱeFC-gIrS~?.Oo](_5bvPvdt׽Lz`dW dQ*>Z[ieR#r)&2"t&ڛ{bi[-lH9=H 8Һ yGۜϵr 2/>kh1bGN}s:r4P ,X ZEI1rN8g0i hV@ sR<{E I9Oޖ 8A"N٘9#>5Å!ٛewr-in7($))v>T:Sg% O=ݭ|8=9rf˵+2ejVamJdž}ߺ }+bUXLϨU8;#퐒 m>lzWJ̾q֨px=CC15, QS1U'&*;Sy]4c r=(’NN} (q;`=ɭ 3rzӊgL ;ilH͞3I}EԊ6zւ֜IP8'8zS%Si~nj hv{T^i ȦMIɧc04u5bM;G5v Z(Q@Q@Q@Q@ج̤v>o\v 22ϞG+sSyvFW MD#Mw6 稠{cGI''jўI')<5D Pn1"dm׃U`KsC@F!G̣ki̡)iBÂyk@=7/2)ձn"rE`Np{PfH\'OwWj"P4aF 8@X"1s 9 wmm|T U3?ݯHvT^;gc\7t_8={ta*ZH셬ؑ2b{ڱSq#?.3]nG+kڍ>g1S̈z{6@SZY#"7ArILv,4{C)^63;2Ti TIP 3%jTʎ;ؿgb JșJ"h@ hBem#}Рs=Xd]8Ldi#vw98.bXBx.]CAˑ4(f5O!&Hu1#cO@<3lJ@-Z+}w0 \Gzl/_Oc\4t+r3} f_Y+Z\[`]{Ux>:z{V}ūEy7g ~)|$E[𨭕]H5t)]l;dl I GoڙU}s#oH T?CUK#qyXwk)&5ls3ugUi0[gsu2y7NNspjEڔpaikdhїpAxz,i$K0W;;py~:Hc"y7Yl~,_C*A7ul]Q7Yc1o189?橱3qn,I-ݟ}W B"6׎3hDuŴE19!)'G+$we/nO'SOM2418קNkq{_Fy$QfRF俖9Apڠ^ZMt8-V-Ζ혺(h: 7%sӓN:j|V~lOj0I=*XbxA .20ht?uPOl>޵w9esvQBq^b3} 9(|SAF9C2OE1ՓΔ`qSٶwNµcI PoV&G$B#V#(\36r/i\Ք?vPbxێsɭĪ\*cO7wauՑ69u91 74ikxa㓏zHYe8ϸ Ȫs9L] *9v׭j,Ӵ|6x@ ̞^JF:ZfwyN:Vo; 'SӭoEyIt&C,qߊˎՌ vxXJt J慴9uc(i6FR-GlªBٙc1jن; CYS! I tyV $lgiH#l1xIUd11 c\4& J6 o¶Q'' Y+$s3qG֜o!pz̚j*z`w~kuϓ:QxI#8Un8'J09幡lHԬxjE j!/ (ZK3o歨)_np9q>+,Uw7$=kUyaU~^8'תxf̐RJ0Ў0q=붍GOaDV#<Ǯ+coq޽J D< r)An8Ku8ɘ!x48M7-~gޥ )}Q29?__8 UJn=sJ ?'qJU#d/Qy*ݝBw1B6wRgk?{y e8AlvjmV g:B( 9sR0ܣy7?h9F8}N9l~"ຒ9'J 1;c< (9e=2jf7zP~l劕{{ #7QL>~1;Sy 7I#JR@|ACi33?J_0l~l,IcϦ8apqQI+39+;;{c꣏3 jqF\[ۜ,jIaP1#sӊ@.nr9PF zR) ml~uڀCý9(rYH=̑-'<7\]  {6+sOqi3-!)( ^ 1#ݐVԗ(N`2 } %آNAWnȤn|9VAXS#9 5z*$'o^URHFG:LWw T%eWcp_<9ѣr~ebB2C*S9W,婪Ta-ʺpTw8]nҥb@靽Tc'@`;橋He+`{T\3%2T6f #1"fC3lFDzz^U$n0+3s*/2y!?P11p0FJRZFPR}? ;DwK< ?p*"GRF4}h+p>4O)Enuv2Ž9ݟSx2ȷ.tf$)/f6Gօݳ),e8סTgM2`|Kxaֱ,m.E1^e.cm i0{)dW a)+F9Q;_caIff+%TTKSP z5tq#o<U4Ѹwb[-05k! i6p89'4I# A V׏n[$##jQ38<`o_)ɡV۞:ad1}urhڌ9eQ5a+Bm@`ʀ$8?+v8A#"Z|s!tW0Dqs\Ԛ=ڐl\,\;U.Bg۷\wPjrUJвgm(+ -* zp{d1YVBI۸߀kVNSәRKY7G& izaU=k%*8'8#Hky"#-Է=[2i@(pIJOS3 GCb('9 d;a<z XA&BD>exb7Z&R=sTjJwVTIUp uB$sG{h pC2}@MzTU$TEZD(R眊Qޠ`gnz8(G}(4 K}1Fp@" ((((((Iꧭ+aTp)Qq |(}9?Xb#c!@>ӥ|qKmiz2 |SWϞ#hR=})>C&csZ8>-׷4(<yMMJZ ) Ftj{K0;b|O>C4, ;g5*,Z9K $##U?>3#}޹z9Wq?^k9 1H?0>Z8YH #X&07n9j$1 SznFsÞ*eFYbr\0O[j>*2`:bf\=gxP ѦzYSHv {?*ڸ ST#%\J{l%GGb 9:/࢒$D0^y ۴R|< =AVbw89SPG\-|I`qT+Ho=:,H-o7_0 cbR2m81zSDzt=aeY-Н iSHL#WKlQ>T#ҵMP hh ؀7? ք'/X+[/Mв7 =csc61cgWxR.[4萲LvclG}-j>`@WTbcנD_g@L ;Ն.bTA9|מC\pѲv]a]WnC 7z!Rh흁pB"FF?⻕!8H_=4m#?)I#zQ92H?ʱn5+ (\69>jND߻8*=Շ]fiT1\'ki =Y۷ 7Ky).C0;k5ct sӯk};0YOMÞ? X$#<= $S\_3˅ r}8V>"u%T7l-?GBxՓ-@>iC'F ?c(qqp<4q~oj {4S#809N;1 $҃O[W FrqU%Qt8(#±؄N溵rU9 ih೰*ǃ]ݥAv1XHU-_gn$~gJ֓ґ1m'Һh3e\eGR:ʹiyar֑>MmNGIǾ*}l{uIC̤ F_p=cYA#䑳OZFm[t-꣰?ZӸ_<(Zl?2L@=hݳ_.8[]T݆ Gq8ŝno$wA 2qebeQ.1U-?1'C<ÀG+bRA2{6_#Es&9z\*F+_*^:vGbjW8VϾ*4biN Zqx9ARy ?ɩ̧FLhPO4ғkcZwC@94 K8DQIޮ(EPEPEPEPEPW!{cКr!Ǯ>HB"}:DꃞMDY҇V7JFZhq%2|:I=QXQRު;?p.F،~(qQV=j/9I=9qTE>aҤ.#!G"sќ{S6gh۴5E ,KHuN1= >h*#ݮxsCb$j7Ѐ[4A]\c#3LAzSQ 0={fB IFo{qӧ~Fí!{j:?,X攀叕<QRKІp&i V>r~aW9N:fFfRA<*Tц=@様37╔8 /ґqU 'pkǾ$h&O{ V2B9Qd! 1Rt9U4xUY.0c ;XrcT][9=* v2U @U"x`4 }b`:ţXȨyq p@?AV~ T0Ak:aU'bZF\`Ђ9Ls~.&a,jȲ`>Pqpj@[p|@T"+̤>+ Ӕ.n\`x ™;=|d`.>Lemѡ-1$ۮiyMNpqk7q(`ߴG9vH!)j 5Ų3Vm,w1KWE(*\a`< #@+RR2VϯJmmDPbHb˃s{dVX#kT>a|vTg Og5rĝ6x;w ˖=i jh07c*rInõ`z EZbL>|ͤà5kso} ?x@;w+7tW#@V"qprE,>_ҷab(L}㑻+:Uʱ[*yQC c5)\ Q*fR#UZKFpGJVQe~Y#G9m9I;9;@{Yia&G',woDcQ5#x=n ZgÈC0=?u_ـg,<%q}=jK,wH޺)lsNXd,K5Y$W{ua9BGyIBO8mO:)iȍF}kI؉?2z5Cdtۚ4"eWvYnb3ynI` ά] d ߟuBPq~꽜g̚H9 T *gܫISҶd*D e dB(>,eϥf֦ř\UT~9㨬f1-EG8A>l-8wˏDȼȭۆʅp'kJڀQR6p'қ相$VNݫM! |l@!l0r85F2viH(7[`nZ릮r֨64 .'0屵GA⾇偷3(sҸh[~vQ"8`#P>WUQA54y\ExF'9 6zQw/-Rǐ3ߵ8Xה Haȧǵ1F2[D2CIנ8_R:fXM PHޜaI(ZظӀ`b.*c/'9=HoaNĎqJt>(ܖȥZ *((((((yD(d,Yp$bz:R*!_>{\ar1ґ2PSFq"Wp@͞x4D+#+@. Jm%G֚(cO?O.viw<M)q<Up L=S\*Fv#g<v4y'|ygv3ryO2|d[FB)&P `AjVf> q+2, i` ӊ.M*oNJ Dw$owO0e7ziH6ӣz7z /Cgp:maG9UhoSHʩoKbCyܪ:u'g'鞢壹s0Gl9:T#vmfZnN5esH d{\.89 K}Ua#ק\D  svaڬ oVZגp8g^T}%=QpL.` T%@ J큱wr*u^FNULcw !"%FQCv%? JG#r~=i< dbT z1ӹsk"F:htDf7?G=}${P2pFP|wϡUP3 [*SNZ* D27t=ZÜr<"@7yT򳠐 07KeUk+4;B 6zVIt3]̐Yn;z`,d\19''6ECJ$`;~kǁ[CA} ՛z*XL~u>[(0F}߾:Vn[[4{H$\Ig nT: u4Cl-(g$Vd1C-Ԫw\c֬6B7]p2\cts@,^bA9<*ɒ3,nT *Vg'9Fx89OI yonq}sV#Ke:\5{%;4K er)#VcX#BP-?ta' Re`BnJr\T:TszhӑKfAczc5al@oJ0K-]\0 tvj|TBH`F zdWjqܥߘTFQI2I,吒rqdƺE&q@ O|DoJHÎ:zu5N#ηgRS~ԜuOm\4Z4&8T{g+O a܂8Y$D>m`"I zR-A@bmSwwʞaugޜԫdP79فkn #`Ujŵe|ߘ `W-qG9ʹT[fwK F*va+pr8>4ɵ(887iUYdM‘l=ڱ92±0 'H)lxb?n;ULD2:c=uIT0$rzE(4BVQ0W+݇~;U]%\psjHG&LqO;z׳GׁE V3ty'PMJ]?ֶ*B:1kA)r\=+h +q3-h]t෦= c4y,o$=kD\7Qq"zݹths $ϧҩAvqoenY9A_- UdY`t6w`4ܸ+#pQ({B.6tnۇ+F[|)IQU [.'ݔAδd ٝ>V gڔs @h{{5Y '#6YAG9Te ߚ R^'j;X˝,ӭPdaGִ& #~ f5]cfH`޽#úDR>߼Aѓ\ z0Wo0<,|L#G5R|;dJ[4XTnDUE%*(r~USu_Q07zR)Rk'3b*p$v > ̗vzSF%TsZK8㠣nG^R)W9&$J3R&JrFiw4 )@h3 u8)җ"!0:M(KNR{j@(`QEQEQEQEQEQEHrH (vÒ>|:@LnR 7S-F@5\3ޘ׌jyr0/J'rμ7CS ^TTPXòjEh_9탊ABΙֳ]>\p;oi X A}rGu9ʐna\{/z^Mx%soZfzN㶈pY$!sX'Tq䙳#Y}+m\uݜG'|qGSeVE<INn~ \@쳂rQ5{}^¥@Wl4~57Q;w/|Wi4>PmѮ@8`ǃ^n%` HcrQ^HVz2#RkS鏽׷J&iNʤAӎGJ˞59#iȢNlRdCOY7Ag=KkfgV8cߏ֦M3eǏOCE hU@syK aob:sdt[tĘrAtBkMF,Cl/QmBGI<+8b8ݷ8Z+fd;eTg}inM ߓ Ee̎)MddƒO|nT`s3ScDZɩ+PP#t"52Sn5EK,3Om؏j׎wlα(6_¡m~fA'[FB<)$vְr @N:JtP+9ێzզpPB|7?<楏/9%-+=Z\gId0U98֮GneYEP >T1x0s-Âsp:`dݵˡR!TcSgJ^HTQEV "vH9I$ɹAT>Ƹӱa&h,e` 0=HGi"i^GXFv28Z?,FY2#I= \^ff+oU e>`q:oÚ3*pr?>jliB=WZFgugv9 e>giɺ](Ͻ#޺#cqw2FS Vz)8Haye<Wo3_*Rv yhO$*6Iפ{ve\tR8Qr-8AaՎ;Uu6S-yw7|zUcYLzqj꿳\y=~_ACmdƄzN/hqS>#BK TGr3ҵvPw>h%cέ"Ld l@@w(n=vgp1Jla10"Qgౌ\@H#8%=@\LfeR.0K/+w1\;#Hm`O==kkyڿw!OCḊ((,JU*.4o១=c37Gnzl;dVN"(=2jꬒ' v##Fe%,>cVjX1hSFOA yZkuD+gh ~tuRs.5'H ?x+6dc|wkʒ/._ ۹<=_j.@=sһ)qY#] [a*+x&! $^N$L ף =8$#Î;t999tǽ4)nV@W99OL+NQ#p R)4nGx4P:tC ӚRSH$S30:эÎ>})c5quqNn)# oN;S%֖LqZ(@QEQEQEQEQEQEQEg^7qLPǜPF>n?z{uœ0U=䆄', lqL<ޔ(@c5؞b[4weA5&lC mθ ǯA @ǡ8)FO#F3#v8}j7VxwۻkHʨl}?ƭ"$1|v}9'i^.7Kf%S0;\RڸoCUC͐T$uPL1( 2q Y"89I>OK.p2(]GAt*f8}מeY;I9*Dg~=ϐd`c9*@}$)zםk.H*WK<27I@=ּG_vѻN4ChCSsW4O/f$/=r>Tt!A?ʼW~5L}~$b9'q 'ךw=Yk2I=9ל>76= N2:g|&.]/?QZ%ϝpT$(2xjfxZ@bTQxn+uV6w>_r:|BL7t@ `J5gԎ=…iB֪t6MR妣+U;sg5/5{Ho*Ac}Ht4qHyڿS󯣼 X(3Bzח$\繅hJc }>S5Nvk3!Æڇq&2(W-A;s^ƘJb +@=G5)pUe=6/ase;ΥcRX<Z#q| * n>Dq39}ūEw?+5ݸcDvDYOQ]/:iW8H2zH3#HAc8yGj9QjEkbXmb*w\}.ǏsA,1H-ԁ6}OWt.п8~<16A;R1V0`*= 9A`H*eV!C9hZu@~_zox2T/µ 7[F^5k`4"8y{!+0s@ 7rCD6cR5JA2}?s:6m|7mp2ϖ (s0U7w9d,0,I.Acvb?MZe orM`<8CI\4GP:<`kBdt3@>>(0ysǔsq}(x ?A*Lj\`O$h\ o3+˴b6mۊ,_+ 7_'<M3Dcy%n/Ӝf)b,Qs#[Xrp=Pы5s$'{sb<ļ!H]Ÿ@'nH$ #)I+){y]T Nz=地X/=sZgj1 < `}\NHa i3Fg&G)WP;:wX2!AZ%f8Q2-X~Vʽg9O 6gG/fI8KBY:t Irg7i 7ޜЅI'#i4dh$`+=L˓q^"A^?+d*#r^;ef6?L?ZcŷiV%U`sdWBV8Jڲx5q=&`N ^vZ]|!#}ӧභd<5.z+ѬgrN>b޻H3X SrRdcץ}jC1$Q_:# y8.sYJc^2)!mT'=zFDžZ vr*3VK7^h>ng.۹Z/$O}(wlʝi===ÁN !ZhzSס6'NM8I@Pþ)CJHZhN)yN{u7 %:REZB (Q@Q@Q@Q@Q@Q@Q@ϖFm#801'_֕9֗Kt|`yC׎2y8idgOԄpA.P6grOlTw/%yF _;\bPI޻G9udqڋDe&3P:05;q3K `J MN"R 7V+\fbRv݌wsA=tl{gkBԬr{35F9.1+ӯ?o_w..Y{5gMISu,{];I0@Y~02ߟQɋmK[1Ӧk.UhͨjYXuO {OL+T0 ޼ByaD*s'1v|_fEXb9\gp G_cҼ,ne+ڂ1HѼ(p~bGVx" uğ6nu۸ͷ(o1-gSKy1^,^+ƚhI$ok'wk|h+vI5bm;`wcsϯC>,ӆHma?攊:&17{c$ؓpJʲ1vz}ϵ_U(]GS@R̦Cp9*<#䂿RMY 9'ɍuÄ,) aZ(%T)^DU~f;c9s-#8}`{ U;5!hA:j]ܕ',3LGM"RH"6їNJ~aIy;T$'@P9Ȋ[J{v`z᳉Ufi E$('_Zpv/cVKTCp NO]eB*ZҤ% 0޸]K$L =vͩfXYE.# G=OԊ{S~QHl:0Survf1'ul.㹑#dm^4K 6uީZu<1 "@(׌v5-KD;!iw85~٬ KilXI3IEZ ˈpvϨJ2E1޽o庐Ёj6ij,l2RW}+>V[(xRz@ǽg%KciZ^4q g\! gn3z}keg`Yv;j#ٽlzp'٥&D%~e5xi] 鍽Fk^ 8VX0l 謖rw YHλS1ֺ8A4[h@3zDsxyb=T_+&eGQ)ǮyS2Hd(g*q?zrasN[dU, ֭lf%0Ojϖ(tfGg9{ ۂTF$?'~15b )$ɪ݆a{c?}se3pA |)㖖Ps'pN8<|i7HIhHvE`G {Z:FoC.8e_Z;K) V@A'~DqCş0O'랿w^+隋 ̮~brr93^dKs7<fF_zlTn0vj/ e!v2p?O\zU-O>Q>w"%N勨RǀNk[ ѐXwA*ُp/t_cGY{zGV<K.~Ld_18rg8;TT'ɧs)xjKs i@֞ DN(1(ti(4(((((((((VmX( +ÓZ àٞ&jgU}t *S*d>oP*Igzz 3fSMT~f ϙLӣYENInNzgP eԀH 1Q^ uXa!1Bmҫ)%6yr{b $Vڣ,.=?/zh'?* ̼P-+/NRK|SUc֑s玙0vTx֢H6&#Y\R]K2@JIl@ *xy?Z&pI+;mVrH; j o5 ^SJy5ě@h_8SrT[8 ZOAw݁kɾXmUھ9Ʃ~hrٻc+*%Vwy2 PLUT*KiPaPëUuwmǹ⢒)%؄MÑćxfX$60r7A Ց4*"GϷ\ϘXTmBJg>kJErrXCl ep䒇[DR7n*~}A$X|+m$H/ZXXH<-ی|z2v cUdH>s?›5=(QOS6>;dL)c$v ϭh[!/qPK8ٸǭ^h-NXUk} ;ό)} SnxU.#1Jӟ7y?Nn[rO6#܎߅8Rv%%e9-}= ĵ#)CjJtipGS2={с9nV)7.FC՗ 1yPn0r{1&dnS[aVBYC&(hge,@穨xUpzeI$njI%1ǶjW`tO֪P6mN/8'>Z^ER\+{8xޠNw")~-O>{~hW'fO`9k5db<sZks5]#W>ַ0S!XV@}~_AӚ漩70V s־ .Ek`7g-œ`UΒԚ{P:|ԃw~2 UFOJ`3֟rM4dNinjO֛>hn[x` wEu:Ν!)#SԷK3}p|U &zTlvl tr"H1>{s5[B$Χ`? uf+[YeF wzکO}yn ?u:UH"&$1Y: K2))?N*͆&f8p8<9\Y"Hs=%E\>Bd>ƳMV:F#Dب[$w?J#XNWbg SI3+:K"(ar}XxHRvHg$9u0,U63y$(1l\/50P}OAQG}w6w Aݳ[ mψHªhc)[E >Zjp )${VD׫ R ~mQ߯NjHr܏])РyϥMu|؎8HlNz}*v+>x`>*Io)O@mK)PnRzg{J%&`B?L,D(<"sycYcn8S3F4Q&8;8<ֽF?(+^3ڨAŴ%#Tf[\T ըI pw'2k:I`}ǒr8$"%F#z@S }MO#l KClbتg1Ҳ-##v},,jHOQ޺-<<ŸyR'+^ϛVXaPķ 2éDP(`16K1#$n>0X] t*s7RX2F  =+'nw|*F+tVIyeݜX.:UQɹS8QQ?Bx2O2@w}ev=1ڿ3+ JHd w{ƾYcnj| tnz^&瞵22CaJ@1Z;h̀9N9?j@`?iCFr28&ۚБ?'4ғP1KEh)QEQEQEQEQEQEQEQEyX)1`c" c?ZU&%;u󦀪2;IC)e'8n֓ ~/*Wp 3?Icڠ dg-L>lJ۱q@p9O0BCL{spJ&֥ 6c Y,;GLpF}fNS8@C v$`mUzU6n9.WH~PL1X ),&:h+GzA.qHNH#AJ"B-QYGk]HHR̪`GoʸIn^QK6I /؎9xi7Ry^[2:Io3es^Dnr \g޺ɮb6q} li@% ]`Tc1YyJM  |1bb|V cy1G|h`'ƅwdgTu%Ix-S*6 d⠑L0ʟ +Mm-IʰNc\[Ɉr>1YTKeῆ[rG.H\&%N>E+x@8#QߏJвY0h8^4(e,t֤3y4T;^_j.#{m EHypw$6j(L'md>ǏζqAx"g!#T_vdsבWFd1֮BB2ajմk-Էp1k#' q~B($6rx##Ҡvr b~*d$@D#:N;b8&}fÁϭlʎ%\Ne Ĥbm?LW[ymW=)Tr܎ǁ֪iu#G#V2-e1,cyiRakq)G;Qt6ou#7F<#[9ܥ-k"@F`uֺ,IQRFB[;ؒ sҨ JԥdeAzvb8Ff;dnîÊm\iC4 BPOO9PcWwO=09 YP"tl+uTqǩ #S$n Y |n7`ڴ'd(:?_P%S"8 \s} i], AI^Q#N>xjMAdI-㉕|\<֤O(l>1ֳRgL"xާj,12X7Rq%ayNԍu̚'Pwj;% ml) psY'qozGVIQTR0ps{:TFuE"r3,f=ǷmTwC4`ߢ?bh& ,6?F(YeĪ͂ϡdI0OVG)D%|3K`?g,)}T&EU%xs)b9O0O7ʸP]9$榷2" nzdz)dGR>WsZI ԬgOj腷9*RiE4V1J)n Y3 W8Zp."RW?x(7wb}rOOӥ_5gOh`~U$ U,c'qҮP m8OU{Im"'TffX%0:>^&_!@$m'#8Z;Y󽔜OL)ڲw4Lc?O:{չ-`hZi 9T@DŸڬI[5䂪`NFЃzsRL$Gf1]ǩJܱ/9ݡޡIrC_gO4V-Y%M_[Ē޴0P7l/営?)T(WiwrPP'+&{ T6Pzzgֱy g~O}ӵ&iF ̓8?kC2{5NkYeN 0osЇ#zw"X&3QC?:3yx| / H7UKyI+|7*Bt|r2(#9nF8/Cr}*L{pğj$&B8z/@vn8M@WaR9U#sEj5?ʑ끸C5n.L@^1,3ɭKv㻖MGoOi=G} 6vA4I<ǐsZq[THAz}ꍺ\\[R9}̲@v IVg:2pG%;Nz}+N-d<λƲy|+8sKN?.YH6Xާ>\i) jg3\=8d# w8T܃j|y5[2S vF8?td,LF0(3-ak Ebff=z_(&x¨lp>nee F-N: -PJW8$kĒ= *Gm,P8;yOJTL)E`Yp)b\aU~Ʉpc#WHތx3J$ZC'Y[γyl,D<|NqsKg#IncV|ńg9UFfoUU(@=kl?Yp5mnQ%W֯Tz@=Vbyn\/: -!a8ćidw߰ݞv_ZNH Xə ]b};jm_`7q+!>) F<ibO^[=*1vE{f{`t xg/eG{0߅ 8cMvQ81٬2MI^ܱTă~#+[^s̻Kv~#c+܅;Ly5xug/ MnbSôκ XQ""B@^ָUL8F8eܤ'>{WBz\uhXLҼHo3=Gegww p=j[Lrw=7pHl$8Ĺ {nsֽC "*VN 8Sz׊Yܹm%Rdf *Avtz es-_º_m\C p8k->.`Y3Z׉/7/@*w'~&xӐ[p9zqU}n Zv@p:G<9\{;:w8_S柑 ךv#!TpsJ8$1߽:t!0+AQ@Q@Q@Q@Q@Q@Q@Q@Q@.s*Wb6 79|܀;(a0A>8Oœ0H==);`LPrH31x9!˸|:VIx=(r9ϭ=$÷TW(PW&UGĿ ㊰c9X;C9~"! v9Givna&3VrGj k$o<⶝(bw`'wZG;㨯1G.nFq?Lі:7$ƫcw!`2~+gfS|}8@kLFr:U@q1c|IOze9#r⵹15n0@ sŀz=cNuq]ʓ>V$}Fj㪬ʌd]8VTTt91QM )9zW]%Va5r@|-Gϩ)X꧹#<Зg]xZ}䶏j Pۆ7^^D)`ozoMg%)qooR}+=L4"ko {zl/RTy$ZmGiq#}aHU={zbޟqm13o~T[GFZ:KA'Bhw]WG,]:cЎy<.絹I\=TFJ {n_[]3p  =zNKH1`>S:lAHaYwո*?rvVGzͼ?#'nyJTΞUsV9-ʂNL_ mr6 Itc}I$+vJҏ2 gPI[9ۀ0{=k&:T"lC:Jn:cCwoq(Es:O³,$o>BpIWc cZdI'p+aTHvDx^RFYz9U_4KXm3ӘGpIrG9\{݋2~H֬=HE8oETqK!W*X}<-Eg7;u,4_{V$X`Ӟ{yndڍI%tU=@\pˎM!fIʷPqzT{Mw0$V4e__jK#uW8Hr>bQ ʀqO7ױ]Ge\=hI2uq2\6~K^@AI퐎<Y1+D[iIFH-ӎSn`Uݜ~g),[T:Ӕ.>wcN+$T}_Ԍu\y0F SĴk~=8WR^0 Dc@VN67R{$`| 3:{)pInR[W2GdmS𫎄9֒Jgd &$/#$T$ $d#3nqqXzZ;N"6EVIZuռ%PƴHNFTA$&H;\`V--Ø`}'Jl+,`{$g*Գ8fB2OVC[y2#ڧwGJǷ,#V *{xVt+܂FHǹ|ᒠ3P4j$LJs~OOQ5Ͳm@9+35KALјp_e |.sZ"-ۙf-gd'j[p@NIgn~N㷑dEᢑCݻwA:U.H3vX9JD$2@X7I>Z0$a+VT=f2=} 䫌uDT;6&,DU9QI#!mĝIs}e#cHpƻק<>-ZsG0?Ѷ@' W$duiO1Y+4R81Uw 7C2KGZϟBI^IX|(ϡ<~jFO#qL8.yo'0uVz|n $H,;2ߡ((ݷI+Y*39"eA޸ښcEnUD27ڴDy+('I[y^8OylN @10X dmS8j>AAP$P#8HIs}: ιx+00rt+JO;#'[HԱMVljٮdSo~!ٹZXыd\eNW@OA]fGUo(;sڹ w=dpO\W &xoXmbU?Oν>͵#h AR- [C" 7N:Cy;c=GCSapDKbXU^g @'rR\1.,`޶s)ñy`GOOOlU{x|L?&&o3}}+<--Tv%B(QcUuI'pԃ;+}I|JbWn;~^#JbKo2ExQ?$`H?[["#$H/#{SW<)&WWyC5o!*I2/s_&Ee,Out\5ׂHxc t2qxL㢺nR'jC=H f`26wr1Z{&/jZ0&ץ4`ZL斬AEPEPEPEPEPEPEPEPEPs,0Wsޥ W*̓)$4LUǂ+=nzS+#m{SeS@Pd6HH3gڥD%J9nP[8d]n}i2Y %?pP> (|V|t{ZCpAB 6AG{Q"X*y* \G895!G :LDy*V}褀J\oٟI*m.>cڃBg!}sڪOqQ| ګV יk>!in$bvqZZ<ц}k[B vGS[z֬Bۤ3suntLX4;=t>}XuA8us(Y-3=rso-mt vw,It @gKZsrBKmytF9,ߵuQ]kˆJ}.pphGuZ]rVY .g3NMtb]2`O=1Zvw; #wQOT~ -FRz5Dw+)@K/=? RVw[0{u4wm/w9 PcBp'/IFKdc2q4|s9o)s-y~F3UdFbROI&8Of,p?ZSd,Z[?9V4O-ݲB |# wR7jsgEUk(6L[ ..bRYK2'=2N:jeP7!H.䑙~SΜ"+HrN0qROPvb#=:C [F61=qLY"dHQX\EP+68z}t4ӹ&tgE &HY)27մK D8d6?j[Q;F̿,1[<`(o]N*nHpr1uD0^܍r=:V|%‹2$Jp0x >j%2۩$'cy}tP]|iHO?hqU}OjA["v ԟ+bFXNא$º QL3R[G0QUB `g95k<$[rYrLw5m TXUU}̳I #>yU%TIe8 ֋pjX(ӜErkyRYDGmxn?i%ݸ1DK'-=Y7nIkxL#P=GQfۘa ցgcn0j$ƐXI8f+NYO8Q:sYFy3jͤhb6޳:cK4WQWO,ez'FVF$֜g bR(6Mɤqy5"aEt$`ncT≑@vY. HdG*[*&LF9 Ub`˶Y'VnD1r3 1 ܞ0ҭNº4..BG2w7'QQq, w yx+M!_jYc^?auyjҺ V ȍ%5j\FVL}?^^%&(`=y+4[ ^jSNӑM!4}x[ 'LƮū|czG5%H è~as#J.  N^i"}'ɰ)2)hQEQEQEQEQEvr<*9 >b |Te¾{,y~Vo\~z.@V `QdG0lTB^zմTݍsjbm9>^Ր Rz05,|+j6 c,=Sry\ڧh6fQNDÃ~x!&a } 2&vך0îq\Hq:Gf1I؎HmT$lmf-=yr4N^2yǞy+=K gaW8Wz2!bx Lf[KaÝ,q^qa#Rl03)iֲT& O/<*y?CIq%KeII3[UFD)Y< ƒ3#8bcQUGbERK9Zɒcc.LNje-MlZ{"6󟧥`_[Mnd9PIH<5q$BB坈< H}q\3Z[K*U;QB #UUQ?aܱn#n쁎s:sq"6xnWJwLWr ,}?`wQ;_U!ϱqWޥΏb_33>澎gyj TS<Tp{^6ərr{q͈AI)ri\A쒹mn23;ⷒG#u$+:.e%||Ww]eͽΑ%KLJDFƼ[MORkZk)}pL",R@'\Η$aߌpk]@ֺaĤ}{WUZ6]83}Y«org= Lz֚BU3 lt5Au9#(¦FIN:{[mBQPEVܬHqȮ=vlH}J/_5Z3- VL(.oAr*;{d}?ZsI3e9"б,h3Шr}k+"PIO@@^=}k6C,sjijI<8ةu$tW5͵5Z=r$gמ#T9., Xu$hO5q!~tW*C9:k]t-+I, *Ĭۦ)nIҫ2$Iڢ/2I-Ipg^PKROklH1RJl|)n@pK۶1R N#iVt1[e$|(p1:<*?bxͻp@N|u"\͈g~y\m?cKC,2 ) 5U%X(6 ,Etb[}Ȓ8ǽ\Q*(GKp$r7E63Hx̀?6;xS rG^v5+Yc'֩yR7m Fa ҐPTXH5 QPry>}.,R0ީ7cVhƅۍ<rӟάZ_ʳ4Wx\խ$8=:޴,{- -˩ӛv $U%jmi-Q2??> n^4S, mW=YBe2XZ;05w(DO޳`I0• 'wI3m2f*ddeHé$°l_&y\A#]Haa#nQ6$GF§qonyI^{-K lE`OOUHl[0c2yӽ_9ګryYpēcNϜ\S9BrXHf*ŭuF ;GXUI-!r:KcOK)U%KJ9ۯK#Ω' ~^'"ϻ88)Y;P:}8b_r|RS{b ~UHWkdLRb\|OE#T} b:#>*pFz`<mJ֕t5< k,bF|)N$^ =Tp4N3ƒzoin;[:Ȟcm"GP`G?3I+,q_dJ I[ѣA%zS"N0ɠͽIL+vBѬYyn< sUf9" c}Gַ$d3ʜsxF x; ӝHC2t}VVVaaTu%wQ$bA27 t<䞕嗑Į"?xTiQ]~8&DB* ej󫆁7 #6pqt+]J%wl!ZHIGM6BeXU8jqG<l?Zu;4CcP #߅z<#w<-^"INW8'3Ӭo]s:uz}Dl.* yw"d {j5'Кu&A!a*/`r+tPDQ-sס[O+ѝ!ː9?jKH\ALv?Ҷ- (ʂz^_i !O+5L[3w{V'"pC NMv6OˏЎzּ\O*|@?LVޝ{H 8Hzo|'pLfNڸ/R!ϵjEz )<{JN"H݊}1zըuF3\Ϟj ߭KuCQ;bԕ;z^b /?),WMtZwiF܌qVEl 8޵r;84nc'd9=덆ubFORUlTj3ϸP;RGšdXu=(+TI8 I!EAARdO((O|#qVU䓊j,IL`ymw|*(3I8H'Ң2|sίkjUF0{v&Eu2G?_©]I09>aWqZ'%K8%5-w># ,;H*5/HDH \]b̸ \ $~:=k96hڤ#DV6@=yZW*:nx KP_4R =⣖qlmw'ԳyTw8Sj>?TwL 95լor`2uW.]qf] d_9=>zbyL9th~E5&W꧿u6Ve'F{VAE[2I=ҹ͹^\{#/9jݬ]5$A!*JNJ殣h.7pLK^S(C1oOJW.G['dΊ6ڒM?--"8,^] 2'ұd7#g~+Nuc*e O[P xv\y+pʝϱ=-E.7?=노V1||sM#R ON +" ul]H<)ӌB?Zyl^KȸW +*J-3;;&Ij-#ڻe39*޵Xٲ9892d?Zʂ,.00 5QAsn}jghwUz$W1'rqA~ZVťխ͎;b?ǭp&iUbd78:Zlyo0hm' ̐ɂ8*;ƩF[=L Rvv&$h~2L@C̐)yTz~5%xgiP:.=MHK ת~r6^}9.8w5.,Zo9 `uHk-b,:n!@^[qvR{{fhBKzgU &sJ65Kј.[i+.8iU'*Tz Ǒ̹輶|qmdh$ovF{S+Bi--}L⦆KEgEbG_*8Em*+=@7Ȳ9[RTas"#\fO2 vH' гYM+`ߞجKFYnvpzcr?![I ̛kwz:e¬{?0sSo4k!&s=LIr CV'۔cX3Z1l#"7{=OPmUO_fbGr{չW,#@\#pQ܁ϥWWx~d\x}qe"J.>~ak+ڋ)0HӠg9=me@72m瞿ziM$vyS+Vڣ{nK}}8֪yqB#oLw')Dً06ȎqÏJ|[U<}2+>8aB g2 Sdfh P~i qPF…?֧?.v> q`"df_${VZlcb`޿PeY'WGȸ>V]͍ZH^BHi˱R؞+ye-!le=mEgt#Q2:u*[Qǒ#\sݎy497y|c{Qk8nYwrvq@{ԓIIF==j).wCNxҘ`UG9xI{|eV_6,!`U0zR4LpyeRI"0[EhL8\'+֑vzF6ědI3ӎ+6@K8sZ(mpBHC+1^=ZjF.j\r2z;es4!D9c$uמ?-FI+qm9@>^{zH\2C+ucZ\ X:)#sp#ֽX#4ZY!kNr;ҽ'OFd >ft͙J'?ƽ mV).`$A'Y IDӕ1VmnV{X!V~ YsзZyQ5IʢoC >V<ʰ):λl a ҹ""<i8~3V<ԽszZxa0 dϧN+kOҕ;C\]ۆfb0`4DVFʑ8 &SV3+IIz#.db6(=9yUTa+I_*ٌWmnMF+7"&ynL8TP=}ADArYIj,eA?0N1_= Z @t"c/gy}V?S핸z̼cX:ceRo|id!sIl}bvc>[cyʀy9>.̿R@á# 1[W1L+B0ˎ fMn$e8;}+'KSsvʦc9$[/|3',rFH'" (H°"9ehpzǭvV Jׯg>:6A!j36L52:gk.^+eoݨsпb"BNUpAvQ p&7 6g?Z冷)S8 %1 P7*:\_Ad%Cda={v <#yI ,R2*Zv8ҧX {xq}ޢ/)x,&Sx[dӵIv,>j;0:c\ulg> wԋ d\q=}+ίkèZ2хdfyvl6R2Θdz5ֿad r7Lq^c0S捯×rh"G VíuomH6W b-Ou ϔ^BէKZTBD6G@ IZ(Tqihu&%_ e,vq9jƚ% '\c=Voao ְyT1u9sqshaP3cߵusKVө$nF ms袍ZѣVrA!z{[Y$P\cZԇTB;&Ge[#h5p[ݛ;hAeCuOֵE,eK3}3Y#luo#P9#n8HcBѿeP+R)* "9 3kضܟ~VX8[ijpF:Zwn|yG^0a眗QFLTum Q H>/SUѲ0R0--`xK{ݛ=}Xrki1821;R]4iVAOJdRD#O3לt/g ludYHTueM'䞃5^d  UY]\!Qq=!`fy|w'ڡ8q{`-YFLQ,sS @9?ły{zQ6) n2/pkhT!j8.YX rWҪ>o$3̻ TzM1"g/LAVFXueQO~+UȆcnmFxv2$m'w\kleopH1OKedMo603[BzYK?:6m =ԶL:oӮA9u*qTfHInj2R$]MD4qbc֨ o20젒si}Vr~V|f)Ԑ!ظ#c'U #J1 *4 $[/o2|r>PGlҪ%ù$5̻ |)ͯɝq G$@8~u dXoܞէ:E]gADeBu;ʥVܣgy93T"KW#Fy*S$HddP#$}=? L9K+wU$,3яM Em&D&<(ri+<ѷt֯lIU)b LmO|,F&fPO"p^I> Qi俖|ؘ Ƣ8\'߭Mj3UV I2B(lʆ^ܒ#9k* {FhY{c̏Jն($jFKR5,Hqq⢖dnY RG z UkomG2׌P,Ӡe`2r;jevބD-'T&eO_Ư96egQ Xb$RP}YVvI +8)&{~r㒡r~}67SԉuQ!漗Uٴ9 ?xOLsX[?y;C$pw ,ao?Cdcz!@Cj{s^wjeۻqOֺIWT[Z4 4 p{^ϴ\+F0WLs7B-j$g)=k+{UDXqRz~dt Č^8_XsPlLrCIi7*S6ɱ9G׭ H9ydeknf @?r0'yl jj 6Sg˟^_+}Av]Y- ^7v 9#8WK#[g8RIwnIӸAOOJV"i;L,{`ކX{c?Z1VMENV|F:Rj3QҘn6 z[!HM2/1G}V|]ybM~׆ik$G9#+rXYn0BZQzBҋBf ͹ZdYF )9x,rH30i9?aYуhP|;䚾b.\ٌVѐ1Gce݌J|%9J_-L3cyқ[~a&T(RS2VP&v :1F$w9\:054|NdVw'3, X6pA՚IoL 󌌚'3eY/>^8*Ϳ) =F2: I%2@\b}D˵5 RI&k4y.C`6Hcd,N1ޤh)F mιy"59\WLbc>lS=nn^0@ִn--’ ;’0ҩ%C%x$dKzduF9Cp5Ŵ_0BT~};K).F?xv{GblUP2!v\}~dR)x; 3W*M<Ko4y!A$5?)jmc$wSzn1ۧOoox\nUfl xH$w ¤ks5֚@Qa=Mxot;[))r){ʹO4FCcWlc8i2rv\UTͧvv}0@I! A$O\Vthpm eٰOOcz#( ntu]֩yncSA#RD!!^Qys>1u'64:w@=xUr7Xz{}uW3tb@͐7QִmaEf Ǫ|ҪiZ] i̡q02yy$K$76zzwD%h) dgcGHn, ;3?V}$]܁3 j؂o8ı,1JHk2^%$$zVm3xm %p? ʒ)nz qZX+e5TG8G%~'1pb s{~Un+4Ң'!ً;nIdY\s <簭Y?Vm&\/I,p@B|Yl 6<9-tn=M`*.s_喸fhFUOY8S/"de`ES?)Oq׊ڴ #D-wvm';y-{U\ݻmhiPqsMXhг㴪9Bw<+0|Tt!J1.^أO1A!F8`6AoZ8 Cmleݻ=!iSv"H *UWՀVL,w|F8+n{!ru[Gb7(m Ǻᚺv|w@8xYH$FQ:cѽŌ zoB';;L`7FzJuՌf2Ιۺp8I]O$|cg+?<琧eI̳Lٕ}}ԒE*-9>ϓ 9y7I5DHn%o6 :MWK;%|'Pjxm^ 9f?t}?5z7͸rIGJ2{T8>Wv2H'DFI{Ҡ6Ӭl՗ԁi$ط-ѹ;ty`@`9b=qV忿O(2A+ Mr|8p*mhpr]KF݆*ڠ$ysOEo aO8˹TD34p3W54אЁ)\]F|{ь1˅ pAGg[5Q2iY-7#5R[OJW̑d`QcV`2qҷd(zL&v )Ǖ:ʈ=hMtD:#p'=P1m@5zciO1^yjB8#&i(s x O|[o)DϔTvdA5WPxʌ3efvvg\d*A ҐugKIsH7a5cP %<v[)`6O$twזиkv#=T W#;_\*d]=qA+H&0mc+W6OyS=BvfhbvE!w[Iy9`IxB9DգkrJ4a Uiʯ>jbvZ52sp6(Wy`$y=? S9vKkVg2*7l֖ 7hJMHܹ 'jMs:j޳nZQYڪ2x?2q-Co 7%}IХ%7C W\Lҳ7p>󩡚9R{V$9&AoQs>؈$ 9@ q y8+9SV䈂19J3ΖD0!K8%:/R9QNN u67[5 0zsiF, udf\ |͸5HdUg-۲; X޲%2sz4GH[nd53q>W-緶 ,gw ojDFYYw=Gzا[E,dxBdΙu8q>Sy,8?rqyNs G.Ъ꽻=q׿u]H%ź~y~3cgKC,mTM i޵k[6޻åx,lFx!ԑ^!1؏?ߦEa7GC<ǔmr[ف܅8  -~c8;AUc;WF:ƽWB̥i X;6[vmT=Rs!uT7!޵`ypq/v Ja{ Z\pױ[ r3ڜ V ?Cϥ[eѣ-8ȫ01aPAsVb2(qQydVeǸU46, /-WDw]4)*D`kpZ2JxBiA8Ps`*>CTE {c95WW>Ȇcܰ!G*siܴ006܏\V{HLC`:+u B׽q/HfB(gØ~9⥺ "2>Y}@&AFlWnL|,0q~u h'<*Q]&dW`#X.x$ et6ýrds\.ф'Zn^'9j!wp2#U4cr̉1@%yCP,.X {ՅX3*=zg9UI+F>Zh3jy @<^H~!=+>v?Q\sv;XyRCHTAOcR'׽IF}Z/Y& 9#Yoz[#x<J{4qCFAW{kxL:PU!բNk꼞;dߍyԑJ8".}TWW69BFA×shIoH,08Sڟۂt>Xw4I4L9u`çJ@٣ѕ{RmcM ]1{oֹnZݲ R']&Oƾ[q8>rI :<3 XD w*u =;Tu D#r79qWm淞&اS[ޢ0,bXٚGh$ nY#P3!<vs~^[&&v\e-j9$%񓟻֪g EWg$y{@rCڶtFf(9ݹn@>X77 Ÿ98 jWn%(@`=?ҹ8lϡ%ʟsc%[m@&88Ob?].#/^;K$RI>tYL6NG^qUF h*T>jbc)GCJQV:df6qddLT7vtFiqWpr:*B%7O I `=j -i&1Mg*OyN=zfubiy1fIB SSVKH#|ۉNW9KxyyЬP;qYz%P̒#Ճ-J&O7v a upZG >mߗNk76).nQKGߦ8T׷RDѤ`V b¹. ӐUî}H{['܋rG[_h3BB(@O of$8qŰ4tc{+Icd̕mkqƗ:er!H6\ҒKO*5`Y N*.i`Ԩ!xԱ#8vo~) FrF,r Aa*]+.7:\dnFӜOo$%!uS7 {q"P,Ap#Y\gc{iK2I=GYm6Z;pOX0WS#92-L.fȹw$S;2V,9䯧p+V{UIb=KgyCQ,&>YB@fHjݯFljFU. YHZRAsnD6S6Fn/@TW^U<kZ FjO,[wp=3Tqu΍q9:bs jN+($J%%Szұa+D1`$xb l91EBDD+ F9;V@O#yY bNGWn"hbU#neJJ9sU}uE[x!q'SzԳu/&Aw>~^^[/Iu\|#OsUX^#~w9}O<ux6tS'iV:r%`ۊ5 fI-+M%Ix⮬,7K0L֫a'n |=}Ћ9Fݧ*Y6H=+n$y@@F1:{u`$`Wh;c|Gw#`n}i$rrܾQuS[9*[aPw "g2\˼-ؐz}*AjчUsIyc'j"Rf*_FGB;~5NdI$1r9ZB θ TWuhXco~Ff7[)`1q\υFdlmƵX=DJ{zV.wv1y9ÀG~M58Q,K+o-9*Glʔؒ-?PHK*U*FzjլI$%M_\g53pup*me6x?c*Bp9ʼ5Z\+HL>k^6xl`v5Y [=C0G_|mk> `xזiuAp1kӌFDK}+ŒzͣK,QN?J 2?v=cx:($3ӚҵXDTpOќ0O6lu4BKv(ЁHKʃ?1'kDB$ҵiD(pAܸ&Lg] 7Ww8VIzcޤ0Z<61J3{jJ$v*,gt$ڳڐXNJYmЙ6]gR9O錂#GwTNO?Au?d{:Nѣq0hƾ\rH$98V=rn%BÜ{Aj$27Il&. Aԉ:3~dn#fOJ2՗{ִ_5K 5֩#)|2&z|c%қERs/r*z?UF0R l `7!랟c^UҵZRտ>]t#dr7 '=ȬJ0鄴cxoohmfǼUJI/xWS2Ac}0-:{tE[tEM >A-)kUBzѿ^qOK#.g>yzc\lV{XY3 4hLw8'N2} nkP QyҿR.okzi^v;dt|3 ,rnzR}]nb'⧰[}WROhMR[ds }" $$x&[wwdw?*Ʒ[B*FjŲOfU9Gl{1dk@d+aNsVtOUmCWMFDְ)LrcGj #Hm犝?ַYhy/_%aFq'=ϧҟ*ŶcgF z:UZ?ͪx/J]׌Vv2qTQ^ǖ_OVff;v4Isq2QRQK {[BB 8#g!O^j'y *QY?Qߵgh?'i?vkFs]q'jY(. xQEo }*Hsd)nhmo$\F* 0UO$E3?U8+I-$p!$8aFPG]uwŢ\1 V>2Vosyi-ic9iak0YgbB|8=zմW-~_܆Q$t}00zqS UOkk?#qpW$uk$a)2R=foRQ0 `n+qCڧtѥ8t x׍QVngi;w'q})PxHMGOu!*(9We"86߇_ƥ???RQ%H,yy޸%qyb)w߸k,?QՍ[ye\ G^…{y5^d=%ޛDVoΝ 7NO VŌ$&6Q̇pJKWVУN#t%b 9'u&G*cYd1cE$v̢gYh@ ܫrOWJ⹻q+zHK D1#=m+rjo'JWGfRA֟FuqJVGX$2JȒE$ʴRre>NrqVu/ux\)幫b'WOYH. Y24~'8j~ tT7? ?73{$(ٕ@S9-VP^Hf>L0{9l}Ae#7@ N@AUKo!I̊8 󎵸M3>%&%݊ԎVq$K3 n3PZVB:&rF T͹d=A;w2  })hGcc:ompѳRn 4Fy=>o4R}QF8pk$`X Ҹ/tOo6e]Esn$W}i I9ѿǴ_4ж~&ao  (?9Ww'H qPI8WoHxJ% jBk`8}=j߂-?~ue%J3*XUXqսyk>?]g;C,/E FMo/-q֛m.V?4ȉFLՠ$Pu- l; OCJHHPMտ )CKoi4ysphinx-design-0.6.1/docs/images/particle_background.jpg000066400000000000000000001145101465316142500232100ustar00rootroot00000000000000JFIF//C       C L32Q!1Aaq"2B#Rb(!1QA"2aq ?ح2@LmeuEL-Z-Z* Ah TPZ~= `U}US*-օQ@Z AS 'je-gi֙V6_pZgTS(" ZE2@*q ZxB:PբZ(d P)9v-2QiƂ EBZ T=Z*էe=EРAjq(-N1hyӥϸEeZ"()dе2Ph zJoqV*q-i-(LTΨg-6 Z‚LzQhPZ` OZgBQjjT Ah S(AiZh]pLUjʾCTPT ƋPZ(Eg ZxkLj`SUաTȢqZX-S Ǡ6b LTZ-Z-PQ2 N= S(LO0)˱iAբTzQj(-T=ZxVzZ!kB-AiƋPPh3N/jTʴEZ A@-N"(d*j2Ah(-8je]pZ-Zբ+Z8UZ-Z*8-LPj8*em/ZgBZQjT A@N0ZE(@8Sl /UuVe_jЪ( Ah*dE-SZz.hopKꝭ2Ūm/) *jj8-LPh-L~=O-3PBЪ(Ze '<.ŦKTZZZ 8S(PZ S=ZxVe:ҡZh-'-LPh-@3-6_dZz*UAh(~= APh-2-SW8 Z A@Ai~= S(&jZgTZ-V4LPZZZ ǡjePjd27it* EEh'jeסg/>|}o~O}wY&QM*զuJ}EB-Z AjqD}R2Ūr LEEY('je Ajd߱iQPBBQD-N4Z AiqSl l/S(jjAh-LSBԲh/~_~ |wrܘern\\N]LjV{*hUZq-uV}Njq誙VZd-A@2-3-\T&Qh-2 S2hUеҸ]2mŧШhh)2A@Zz,ž/ZehUUS %-LO?' t=7Z`&X)_j:UkB- ()Ah-N0*eZ Ajqha֔}-2}R2Ūob LJ-Z*8-Ah(@LЦ߸*hh(BЪ(ƋPPh-2 zl-6_aLBPբzw&Y|Mwo*S҅Z Z-Ajq˰KjPPBZ -SlNǢe  Ah ZhZ ?VJ*q-&Ai Zh-L߸-<_*-w~/~+}xZfJ-Z dE-S@ySEEZ-ZE ǡjeZ S26W-)-T:աZh2PPh-2 VjeJb7iQiEES '-Ah( z~™E@ (ƋPPh-2 zl-6_bӏ@@VTB*Y(T-L Aiz˱iZ&U(ETPS 'jePh-LzT=-9}W{ʜx+_??O~o/Oۓ#*e AS">Ζ'i.EZ @S ZB@Z Z1pEiPh-N1hVE((*yM>*EEZq S Ɓ M2hh-&ASPPiZz<] LZ2-օPZ AS '((Bhg-<_:*b}iAբN0ZEAjd8-6_pZfPբ ZX2@rZxӈ&QhUբPQjA\_\g jn̫~~ɖ~ps}eN=-T{CA@Z AL-@TȴOh @AZ܍#T-LUE gBi Aj qhVEZ-N= `}iP2Ah(VV@KZEAjqX-<_iQS0(hhZ-N4T LUjʾCTPT ǡj @ȵS,PkLT/дΨPEZ-ZL'Z AS@mŧШZZPZhdzQj-S rZd8Ahh@Z T=ZxVzZD"hPUPT-8j -t/>_.3LoLt-LEX-@8L/.ŧjqZS؄ZhPU`2A@Ζ:ZlɫSETʴh-k4U“:ZjZZdRO0Uŧ-K(?2}QiPh-LT2Z*Ajd qT=O-3@AhjЫES 'Z -LX*-<_΅Ahh@е2PPh-LE6V*Ue @N4ZAh-N1haֆ}R2Ūm/Zg@-Z-Z-S %-LPh-L~E@ Z Bd8)6}LЯo/{<̳<|?.\L EEVJ8-Lh-3E.™*թƭT="Ъ-h-8je AjdZ5?p`& y*opZ(hi"Z VKS(Et AjdZiS(UZ pZxiTZ @Z ƋPZ -L`ETUVAT ALzQj - `.iΖքZhPUPZ `T-AhN+Di)SZ-<_(բZ S &YS{ eZ?[?k~~_ɶ|gǗ 3۪.Y3"(ULE(N={/LhhB-PV?G~|???Ǜw괟+sÇ{dg??/)͍_~9ɐK.ŦKhjB"Ъ-h-2qQh(8Zyh| L@O=7jLKPB2 S<'P6O: @2-TAS,߸-<_*-J-Z dE-Ajq0S{%BEEZ-Z-Ph2ǡje 8`.i3քZB 2PPh-2QSKDiZf1j/ش(hdZ S= opZd'?'~e(83\s?'O|W潸qe8EAAh- '-LZ L_6be-8 E_?_?'3f~><,ML@Z AiT'-]b%LUPhUA8-L S 8SũZe )Wة-)"Ъ-ZYƊ`U}iP4ZxРZdZƭ**Ph-N0T=iLZ(hh 4ZPjdhZ*5Z' Z֔"ЫE-L*zص0SL EEh 3V7QhjY֧UEh dTO-2 -(hdE- zBE@Ъ(ƋPPh-2QS@mŦ)TZZwªeV@DBS!UEh-O!M(,j-֋@ZTtZP2 { opZN1hN2 S< LP4Zx @2-T⴩-hT= O-2 AhҋV8j A@Zz~™EEZ-ZEh ǡjeZEL JgKUkB- AVAPS E(N=-:զiRM OZeZZQT ƋPZ -e7-2_TZejjPZ dQj -AS/giz G d8B- -N0je*`iT&Qh-\'hvZ-N4TwiZ)BSZ&SETZ -N4Tϸ-2_TT4ZxРZdZƭ* EPh-LY OZeEELq S 8 opZdhh@Z L*eشVj"Ъh-2 BE( ǥyZ}õuJbi( բբ (PZӌKLEEAB- '-LZ LY Zo lN4* E-Q!CZEZaUEh-΅ϗ7ߋ?7~LW+>S'E@EEPQhPZN4 ZlΨEEPh-2 h LZEO0{%VL@CTPT ǡje2S/kLmSeuE2 EEfEZ(AS@yeuEL EE(- 5P- *qUPh-Lyش)e j֭-E{)SETUE(-Ψ)PQjZPBP) S(igbtjȴN=S)TZ /ǡjeBЩ ZxEjU LЩ M(hhd-L@8S(`}iQS( VVZdQj @ 8S /jYbZ @N"-Z S!U2KCo"2Sl lΨPEZhL%-L@2 zl/дΨZZPZִNAAhE2jq*YbZob2PZ-VQhiN=S)U_-?Zx8j BЪ*QShUдΨ?T΂EZ2j2*-LUŧ q-Vb7iPAELhֻ+I\- 3,>Ⱦgy?oϖoOϿ?$/Կy_>7~l;{9_t"ЫB2PPh-2 VjeΩCZ-2hh-&AS PPidЩbZ2-օPZ AS 'X-ԲRǥmɋOvΊ^_k]⴮SPZ2jqjʵ@jl('*AjSU-=M Ob@LPZ-QzբE-B-N%ZJ:z@N!S(T:҄ZEN0ZEO0{شS"iDU2*AV-LSl (Ψ ZxETjR Aj_B-6}O-2Ah-*jT(((ASl/-3*ejjTZ @L-@ 8`.KZVkBB-Z S!TM:;Zi)2TZn{E(PZ Ahd*qZ2 Ah)yϱi*UTZjeTZ AS-7-<7q_q2u@*Z-Z*8-L@8S,l(ΨZZUZq-AhPZd*mWg*'Z2"hU2q_4S((ՠEMZ(ǠLZ(-BN5iQT Ah*gAO"`&Qj AhUad8-L-"EJ)( Z ֭- "ԲSTRSشE2YE- :҇kBS -LBQjgbuBiZīLZ)L8-LUŧPS~;o=&ֺr_U2>ΨPPh-LU8RUEZ-Z~=O-3Ph-jjS 'je S 8X)<_**ЫE@N"-A@8LSl /զuVfjЋB 5gplũS( dTjiET΀?-2QSP(-jeZ d2P0Z(2j A@բaZhPT΂EiTT-χOÞrVY2.T[@S!J--4ZxLZEEh S /ǡS(.O-LO?T)jEqKPCҋAj 8`U}Qjeh-3hPZ S%ZiS(UZ pZxiTZ|>>>%ώrZ ƋPZ -LZzž(**jЪ(@N= R(*emZS:Zkqpx:?e8)Z A@2 SB*hiDΨgеvQih Ah(-8ūS*@O=7-2QN=e EE)LREh-&tS_7s2ԲmxLZ-Z--ZE@S;ZJ-)B-2 z- @CAjq=W*dTū⊜b2-B- Z -N4T LTZ@-< LZ-EzZTZL~שw__+o3s|>O?><֠ -Z-()Z~= opZdS(EE-@8-LZdS,hVpʙ g縫OZgTS(8 eAh( dӈ2-Z-ZdQ3){WeK( L A@LӊթjZ `'J)(PZ-Z-P*Yi AkK_g~|^B~?>K+g5PZ E- TS*T>W>Wx;-OY'>_>x{q߶;*dΪ=ūMZd?MpZdLZ ZETiEET΀?{J*q-PZ @dZ2ZP S e EE"N(2 ZlN=ejР5hhUCƕ@E(-2ZobةeЪ--EZǡS(-_LTOSo*dZ't;զAjqw-<_jelS:Ph-K%*jV Ajdz=O-3Ph-jjRA8S(+[p*B-2'LSlELZ ZеZPS!TΪ=ūMZgBg) LBPAh--N= S(բҊEZd-PZ -N1jʵPh2P߸-̿Wxy2毷G+|ouffLvZxiTZ @Zi\*P 8j -Qz(EDZmh)Ah( ZhQh"ȗT=UM*%TP*q(-zJoqV(uE6pZx&Q@-8S0Tjj"QM (8LZ &Ajqj*@iLT E-P*q)UE߸E2 hTU?3S|M"8UL*hUN0Z`)t*yob@r/~KgÔg-ٰ{_wg|~糇w9z+l LkG  Aij=- dZl-8ULAVS E(@hjdZgMqV/S( d EQ@Zh*gE3i%=PJ-N4Z AhT-LZPES"z{El?~ |͛c/<|Y}_wV?~߭o_|m%<_/,p|*eP *qZEtP?VieS{%*qZ -N0*YEAE2(%+|/}ǏFO/Ϗ>_|_+קxq7Ǐ/7o&urEo,Ŕ-K軁ƭTRP 8S(((UZdOJZ-)KT-ƋP B2LUiMqjeЧ/ǡLZ ZzQPES:-2QSP(-jeZdTE8 ejjZS 8Z Ah3-4Zd8LjhhqhUjd;ZR( Ah@$||~W&Qj A@ZZAjqZZ @L<-6 LB- -N0je*`iT&Qh-\'hvZֿ>%?|g%'/;⻟gǖVel8x|~9ny{ )jLKPBik\8P-Z S bVN=- Z'-LZ @r_/>nfoߗkz[\x6V>-2_E*-N4Z Ah(jdbgiZd@ Z 2 S(22UiM*Ψ MZz(jeZZȢgTSl-N0S( Ah( ZզU Ah)Uũq E-QJ`ʕQ@Z AP~Se*qPZ-Qnj Ъ/ZZaUEh-΅<4Zd2AhC- Z-N4T O)y|UT &SEu[ 3Tе2-ZL~ūZzZ&SڊQh'jeZ(ȵjqmf6_i>h)Ah( ZhQh-2LZ2_BSQ@Z AS!CZE3){2&AjqTjjTLN0TPZ2jqj ZoaLT@E-P*q2@2b{ ƅAhE$ZEhjq*UE(-д-62 T-Z-jd*z{ũT ZhTN0\ 2N"( AjqY]WZ8)E(ES 'Z Ah2Mʴ}Zq誙V`2PPh-"P>֭7LЩZ @-LZ gj{UYmLZAjq)EEL&YMpZ(8LAh-!VLTZ AL-6}LhZ-on~ )+Yżg3k}6?>ynѕ@h-LyZopZ{2AhEVxZ/ǢLTRZ O= M '-QjSQS2_BPAh- EQ@Z AS(yիMV(Y7-2QjqZ @AjqZPEL&YM W8e AAAh-2R8ZU@2|I ڹ?2<9gێ]vkϸȦOS( djeZQjU3<-\T -PZ -N1jʵPhΨT)ǠL EEhdP@37>Lx/ƾTQJ A@LE(@ҦYZm2QjqAh-ƋPZ Ajd(eқU)QO3Zl&X((-L VV*QM (*eP(-2 N+V-TZ ALE8e EEN1VR( Ah*Qi砦)TBZ;šT^8õֿi-26jB:EVTQ2 SZ 8O0ZlEP@աV@ǡje Ah(AS,䟓<ӗYqv|fO8gLs:xS)E(EPzQj -^?~'|Y~?%%|_|o7y8xzx\zl+6k3V/LETʴ-N4Z Ah($Z YZoqV/S AA@ LBi)gTSl-N=e A@LEբզE,E6pZ(TK(Z &BN=-ZeZjoaLT@E-PN0ZU@2ON4* E-Q!CZ-PZaֹpZ S26W LT(hE ,Z A@*q L-Z@ZEPh-N0T=˱jV8S(AiiSESl5iIU2Z8jeZ - }ZoqV/R-SQEh-L3i,E6pZx PZAjq)EEL&_-6pZ(8LAh-PPJ8jeZZ dȵ6}LPZ E@ S*T<-7-=TZ$ZBZW բ 8`/*-<_΅@ ZQj'-LZ A@*q/-3) EE)*qZ A@8S,.ūZVVJ d z PP(-ZdZ2- /N=S*UQj -:Z$Z*gUKT-RzQEh-L3i%=P OZh Zh*j"z{E(PZ AhN+VUPh-0ȵv}S '*UTZU-y( e jqZ -Z-Q@iSBX O-L-Zh*`T-A@ LT&-<_iQLjh d hP(-Ai `SbVN5h*C Tе2PP(-ZYe߲-6Tz*UAh)LZ BH2-3i LBPAh-8S("TΊgjb2QL opZdA*q* -(h)D=Qij2@ TEPh-L"e`&QPZY-4T*C"8-LPh-LyشE8N4+^8e8je*jLЩb R(բՠ"*eZ AS@git(-@ƋPPh--8`Sb}-TVAhEET A@ȵS,49viӏETh-2 q `Ъ--ΖZ}N= A 8,Q@Zj gE3iV(Y7-2_B-QPQiEAK" MZ(ǠLZ(-BN5iQT Ah)O"`4?|kTo?x|OfƷo>ELZ A@,ZE2 gUhmզ-2 yЦϸ-2} A 8S,ZQjU3<A2Ah(jqVUPjx&Qj A@բaZE D8ŢeTSN֙*Uh-2N= S(ZZd ]/-LEEE 8-LYT/Ze*jTZ(?~>S/k\8V\y]lN={ /Zd*Uh- Zh A@h8S^.-2SZqU-N"(~ϏoܿN[ÖrvO?|-~$ɟ <xǛc?'r[*B-2T3MZSz2 Ah(AjqZ-P(EeCl6Qi yЦZ>2 Ah(AjqZE@UL3-]%8Ah-PjqVU @AS/ q-VT=Nk\8XS,ZHS'kL誊Z d zQj -Z-Z- h&v_pZdP(hE 8S((((-d= op)LZ-Z*8R((-TgUǥe(E8je((-N=-S^i˴2_ESZ&AjqZCZdOJgMZSELZ ZhU!S!TV=Zx:?e8)eZ dе2-Z-Zf-2QSP(-jeZ`簦J)ǠLAhZh-AijX6ZxòU,Zq EAEEE*YA6jS72@բLE( AjqgM L eZ-Z*Z-Z S صv_jT2U-@N0ZE( 2jqjbMi/UPZ d-A@ZEȞ2UMU-N4-S 8jAh-L ZS{EuE<ϡiS@eP -L VVLmUEASP(-2 N+VU Ah)y (/Ϗ;w7<,["Vi\.BZ -L2E;ZeZ Z ǡh(hh)l-3 P(hE 8j -PZ Sϸ-2_TZe -Zhd zQhh-K zoصvUSKD{QJ A@N0ZE( 2-Zz*bMEOeZ PZ d-A@ZE2%S,V7LZh PZ N0Ze22Uj{SΨ OZz(j -Z-ZdQ3){We)Z A@EǥLUS E_Low;|Yo=?'}^>JX4Ah*q- A@SKToi/ihAh*d-բբZ`/ZgBEE(ƋPPh- 8yg/)eEE Y(T-L Ah(AS,.ūZzZ&Xuh)2j -"ҧfje-8ULAJ A@N0ZE(@hBDeզi8Ah `2( Ah*d(yVڭ?O˛/'f~~L'/O|7,zf,oASQj -N= `.-<_*hUQ8jeZ AS@`}iQLjh d hP(-Ai `SbVN5hV(Tе2PP(-ZdZ2KCo*wN=R 2PPh-"ȴ2} A T-LQ@Zh*gE3i*%=PJ-N4Z AhTTZPES"z{EN EPPPZ @L*qZ2[¨-N0TiUeU8-Lh-Ajd*V/-S\o?'>?o~of߇yk+:`2PP(hE@AjqTwiPE@ESAS(P(-2 z=OZgBjjd hP(-LiTJjqDJ@~= S(( AijYm i)-8ULAV Z AhUjgKCZlŦOS( d zQE-3ZثLS,B/SPjqS((ՠEص|QS@X-Z kH(-N0T-<_զt@EZ ALSB-ZBqTMH}Re@Z A@N0ZE( ZS 8*y/ص2hh T,Z Ah(AN=mŧШVVTP(*d8)9v-\N5hZ*P A@Z SZYnhr";ŧ@UEN= LPP(-TZPDt<զZqTAh-Eǡjeh AjfgUhyZlE<KT-QiEAL'صrQS@E Z֑)ZEL -ZgKU8S(Z -ER,)U2h-2qQj )EB(-2N" i(ZZQ2 SB(T Ah(-AL@~Ӎ*jj`2@PZ S '}Qje -Z-Z(ǡjeYT/Ze*jTZ(Z8)]ڭ2}S*hEd-A@Ph-Kjb9viӍZ-N= S(Ah(UZdOJZ-)N= A 8PP(EgUhmզ-3O3OS( dе2-(hgZAZ抸U8jeZ -2 S@`VV( Ah)*qZ A@-8ŪbS'kL誊Z dSB-AEEEƂmWg/*Y`Qjj&AjqQ@PPPZ S &YS{OZe*jT ZEAh(-TgUeZ"T S(A@AjqZjӗi dQJ A@L-L @T^i=*gUjg-8A 8jAhBB)-Zl:?e8)Z A@2 SB*hhqh\.РҋV)ǠZ Ah(-N=y xkVV( Ah)*qZ A@-8T:*-LբբZd8MZ/ΨP(hE /ǡj -Z`&YS{%BE@ ZU2N= S(Z @AS/gjԩǥe=E8jeZUǥy֭6}ZdV)Ah( Zh""zTV6ūO*_BPZ A@AjqjZ S!C,V-2}S*RP-N4Z Ah(jdKeզiS* Ah(,(22UiM*Ψ OZz(赮i(2MbZULдZ Zh`}iVV8je-Uǥy7OvʴA@2 SVV AjqX-_ZgBEE(ƋPPh-ZAh)Ah( ZE(@heզi8Ah `2( Ah*d(yVR(uE6pZx&Q@i*Ph-N0Tŧi-(hJ-N= S((-PZN4 ZlV/LhPZ `2@Pjd**eP SB(3Zk\8P-X6HQTsA@2 f <fAsW4U2 \F@ AAE\Y8@e Abd*i >bY@Y(\Bq(ﱖid-\TQ2 `(,PsAS '\2qhYA@fXK0 *"ȹ "+'gǟϟǔٲ؜gZˏ-??7~.3&xgp\-ۧ#4EA@ ,&]MYT2 ePX {(Y` fyJ5r f.h2 6` Ac,ъsphinx-design-0.6.1/docs/index.md000066400000000000000000000054631465316142500166760ustar00rootroot00000000000000--- sd_hide_title: true --- # sphinx-design ::::::{div} landing-title :style: "padding: 0.1rem 0.5rem 0.6rem 0; background-image: linear-gradient(315deg, #438ff9 0%, #1572f4 74%); clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% calc(100% - 1.5rem)); -webkit-clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% calc(100% - 1.5rem));" ::::{grid} :reverse: :gutter: 2 3 3 3 :margin: 4 4 1 2 :::{grid-item} :columns: 12 4 4 4 ```{image} ./_static/logo_square.svg :width: 200px :class: sd-m-auto sd-animate-grow50-rot20 ``` ::: :::{grid-item} :columns: 12 8 8 8 :child-align: justify :class: sd-text-white sd-fs-3 A sphinx extension for designing beautiful, screen-size responsive web-components. ```{button-ref} get_started :ref-type: doc :outline: :color: white :class: sd-px-4 sd-fs-5 Get Started ``` ::: :::: :::::: Conflict free CSS : All CSS classes are prefixed, to avoid conflicts with other frameworks. Works without JavaScript : JavaScript is not required for any "essential" functionality. Configurable : All colors can be configured using CSS variables. Supports non-HTML output formats : Components degrade gracefully for non-HTML formats. ```{toctree} :hidden: get_started ``` ```{toctree} :caption: Components :hidden: grids cards dropdowns tabs badges_buttons additional ``` ```{toctree} :caption: Styling :hidden: css_variables css_classes ``` ```{toctree} :caption: Themes :hidden: alabaster sphinx-book-theme pydata-sphinx-theme sphinx-rtd-theme furo ``` ```{toctree} :caption: Development :hidden: changelog ``` ::::{grid} 1 2 2 3 :margin: 4 4 0 0 :gutter: 1 :::{grid-item-card} {octicon}`table` Grids :link: grids :link-type: doc Screen size adaptable grid layouts. ::: :::{grid-item-card} {octicon}`note` Cards :link: cards :link-type: doc Flexible and extensible content containers. ::: :::{grid-item-card} {octicon}`chevron-down` Dropdowns :link: dropdowns :link-type: doc Hide content in expandable containers. ::: :::{grid-item-card} {octicon}`duplicate` Tabs :link: tabs :link-type: doc Synchronisable, tabbed content sets. ::: :::{grid-item-card} {octicon}`plus-circle` Badges, Buttons & Icons :link: badges_buttons :link-type: doc Roles and directives for {bdg-primary}`badges` and other components. ::: :::{grid-item-card} {octicon}`image` CSS Styling :link: css_variables :link-type: doc Change the default colors and other CSS. ::: :::: ----------- Created with inspiration from [Bootstrap](https://getbootstrap.com/) (v5), [Material Design](https://material.io) and [Material-UI](https://material-ui.com/) design frameworks. sphinx-design-0.6.1/docs/snippets/000077500000000000000000000000001465316142500171025ustar00rootroot00000000000000sphinx-design-0.6.1/docs/snippets/myst/000077500000000000000000000000001465316142500200765ustar00rootroot00000000000000sphinx-design-0.6.1/docs/snippets/myst/article-info.txt000066400000000000000000000003611465316142500232130ustar00rootroot00000000000000```{article-info} :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: Jul 24, 2021 :read-time: 5 min read :class-container: sd-p-2 sd-outline-muted sd-rounded-1 ``` sphinx-design-0.6.1/docs/snippets/myst/badge-basic.txt000066400000000000000000000007071465316142500227640ustar00rootroot00000000000000{bdg}`plain badge` {bdg-primary}`primary`, {bdg-primary-line}`primary-line` {bdg-secondary}`secondary`, {bdg-secondary-line}`secondary-line` {bdg-success}`success`, {bdg-success-line}`success-line` {bdg-info}`info`, {bdg-info-line}`info-line` {bdg-warning}`warning`, {bdg-warning-line}`warning-line` {bdg-danger}`danger`, {bdg-danger-line}`danger-line` {bdg-light}`light`, {bdg-light-line}`light-line` {bdg-dark}`dark`, {bdg-dark-line}`dark-line` sphinx-design-0.6.1/docs/snippets/myst/badge-link.txt000066400000000000000000000001471465316142500226360ustar00rootroot00000000000000{bdg-link-primary}`https://example.com` {bdg-link-primary-line}`explicit title ` sphinx-design-0.6.1/docs/snippets/myst/button-link.txt000066400000000000000000000004531465316142500231070ustar00rootroot00000000000000```{button-link} https://example.com ``` ```{button-link} https://example.com Button text ``` ```{button-link} https://example.com :color: primary :shadow: ``` ```{button-link} https://example.com :color: primary :outline: ``` ```{button-link} https://example.com :color: secondary :expand: ``` sphinx-design-0.6.1/docs/snippets/myst/card-basic.txt000066400000000000000000000000471465316142500226300ustar00rootroot00000000000000:::{card} Card Title Card content ::: sphinx-design-0.6.1/docs/snippets/myst/card-carousel.txt000066400000000000000000000002621465316142500233630ustar00rootroot00000000000000::::{card-carousel} 2 :::{card} card 1 content ::: :::{card} card 2 Longer content ::: :::{card} card 3 ::: :::{card} card 4 ::: :::{card} card 5 ::: :::{card} card 6 ::: :::: sphinx-design-0.6.1/docs/snippets/myst/card-head-foot.txt000066400000000000000000000000741465316142500234150ustar00rootroot00000000000000:::{card} Card Title Header ^^^ Card content +++ Footer ::: sphinx-design-0.6.1/docs/snippets/myst/card-images.txt000066400000000000000000000006111465316142500230110ustar00rootroot00000000000000:::::{grid} 2 3 3 4 ::::{grid-item} :::{card} Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: my text Text ::: :::: ::::{grid-item-card} Title :img-top: images/particle_background.jpg :img-alt: Header ^^^ Content +++ Footer :::: ::::{grid-item-card} Title :img-bottom: images/particle_background.jpg Header ^^^ Content +++ Footer :::: ::::: sphinx-design-0.6.1/docs/snippets/myst/card-link.txt000066400000000000000000000015151465316142500225050ustar00rootroot00000000000000(cards-clickable)= ## Clickable cards Using the `link` and `link-type` options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: :::{card} Clickable Card (external) :link: https://example.com The entire card can be clicked to navigate to . ::: :::{card} Clickable Card (external) :link: https://example.com :link-alt: example.com The entire card can be clicked to navigate to . ::: :::{card} Clickable Card (internal) :link: cards-clickable :link-type: ref The entire card can be clicked to navigate to the `cards-clickable` reference target. ::: :::{card} Clickable Card (internal) :link: cards-clickable :link-type: ref :link-alt: clickable cards The entire card can be clicked to navigate to the `cards-clickable` reference target. ::: sphinx-design-0.6.1/docs/snippets/myst/card-title-link.txt000066400000000000000000000001341465316142500236200ustar00rootroot00000000000000(target)= :::{card} Card Title {ref}`link ` Card content ::: sphinx-design-0.6.1/docs/snippets/myst/div-basic.txt000066400000000000000000000001201465316142500224710ustar00rootroot00000000000000:::{div} sd-text-center sd-font-italic sd-text-primary Some CSS styled text ::: sphinx-design-0.6.1/docs/snippets/myst/dropdown-basic.txt000066400000000000000000000002201465316142500235440ustar00rootroot00000000000000:::{dropdown} Dropdown content ::: :::{dropdown} Dropdown title Dropdown content ::: :::{dropdown} Open dropdown :open: Dropdown content ::: sphinx-design-0.6.1/docs/snippets/myst/dropdown-options.txt000066400000000000000000000003261465316142500241650ustar00rootroot00000000000000:::{dropdown} Title :name: target :color: info :icon: alert :margin: 1 :class-container: class-container :class-title: class-title :class-body: class-body Dropdown content ::: {ref}`target`, {ref}`text ` sphinx-design-0.6.1/docs/snippets/myst/grid-basic.txt000066400000000000000000000001671465316142500226470ustar00rootroot00000000000000::::{grid} 1 2 3 4 :outline: :::{grid-item} A ::: :::{grid-item} B ::: :::{grid-item} C ::: :::{grid-item} D ::: :::: sphinx-design-0.6.1/docs/snippets/myst/grid-card-columns.txt000066400000000000000000000002221465316142500241450ustar00rootroot00000000000000::::{grid} 2 :::{grid-item-card} :columns: auto A ::: :::{grid-item-card} :columns: 12 6 6 6 B ::: :::{grid-item-card} :columns: 12 C ::: :::: sphinx-design-0.6.1/docs/snippets/myst/grid-card.txt000066400000000000000000000001301465316142500224650ustar00rootroot00000000000000::::{grid} 2 :::{grid-item-card} Title 1 A ::: :::{grid-item-card} Title 2 B ::: :::: sphinx-design-0.6.1/docs/snippets/myst/grid-gutter.txt000066400000000000000000000002531465316142500230740ustar00rootroot00000000000000::::{grid} 2 :gutter: 1 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: ::::{grid} 2 :gutter: 3 3 4 5 :::{grid-item-card} A ::: :::{grid-item-card} B ::: :::: sphinx-design-0.6.1/docs/snippets/myst/grid-nested.txt000066400000000000000000000006141465316142500230450ustar00rootroot00000000000000::::::{grid} 1 1 2 2 :gutter: 1 :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 1.1 Multi-line content ::: :::{grid-item-card} Item 1.2 Content ::: :::: ::::: :::::{grid-item} ::::{grid} 1 1 1 1 :gutter: 1 :::{grid-item-card} Item 2.1 Content ::: :::{grid-item-card} Item 2.2 Content ::: :::{grid-item-card} Item 2.3 Content ::: :::: ::::: :::::: sphinx-design-0.6.1/docs/snippets/myst/icon-fontawesome.txt000066400000000000000000000001111465316142500241050ustar00rootroot00000000000000An icon {fas}`spinner;sd-bg-primary sd-bg-text-primary`, some more text. sphinx-design-0.6.1/docs/snippets/myst/icon-material-design.txt000066400000000000000000000011461465316142500246340ustar00rootroot00000000000000- A regular icon: {material-regular}`data_exploration;2em`, some more text - A coloured regular icon: {material-regular}`settings;3em;sd-text-success`, some more text. - A coloured outline icon: {material-outlined}`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: {material-sharp}`settings;3em;sd-text-success`, some more text. - A coloured round icon: {material-round}`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: {material-twotone}`settings;3em;sd-text-success`, some more text. - A fixed size icon: {material-regular}`data_exploration;24px`, some more text. sphinx-design-0.6.1/docs/snippets/myst/icon-octicon.txt000066400000000000000000000001051465316142500232170ustar00rootroot00000000000000A coloured icon: {octicon}`report;1em;sd-text-info`, some more text. sphinx-design-0.6.1/docs/snippets/myst/tab-basic.txt000066400000000000000000000001341465316142500224620ustar00rootroot00000000000000::::{tab-set} :::{tab-item} Label1 Content 1 ::: :::{tab-item} Label2 Content 2 ::: :::: sphinx-design-0.6.1/docs/snippets/myst/tab-code-set.txt000066400000000000000000000001701465316142500231040ustar00rootroot00000000000000````{tab-set-code} ```{literalinclude} ./snippet.py :language: python ``` ```{code-block} javascript a = 1; ``` ```` sphinx-design-0.6.1/docs/snippets/myst/tab-options.txt000066400000000000000000000003441465316142500230770ustar00rootroot00000000000000::::{tab-set} :class: class-set :::{tab-item} **Label** :name: target :selected: :class-container: class-container :class-label: class-label :class-content: class-content Content ::: :::: {ref}`target`, {ref}`text ` sphinx-design-0.6.1/docs/snippets/myst/tab-sync.txt000066400000000000000000000004311465316142500223550ustar00rootroot00000000000000::::{tab-set} :sync-group: category :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: ::::{tab-set} :sync-group: category :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: sphinx-design-0.6.1/docs/snippets/rst/000077500000000000000000000000001465316142500177125ustar00rootroot00000000000000sphinx-design-0.6.1/docs/snippets/rst/article-info.txt000066400000000000000000000004111465316142500230230ustar00rootroot00000000000000.. article-info:: :avatar: images/ebp-logo.png :avatar-link: https://executablebooks.org/ :avatar-outline: muted :author: Executable Books :date: Jul 24, 2021 :read-time: 5 min read :class-container: sd-p-2 sd-outline-muted sd-rounded-1 sphinx-design-0.6.1/docs/snippets/rst/badge-basic.txt000066400000000000000000000007071465316142500226000ustar00rootroot00000000000000:bdg:`plain badge` :bdg-primary:`primary`, :bdg-primary-line:`primary-line` :bdg-secondary:`secondary`, :bdg-secondary-line:`secondary-line` :bdg-success:`success`, :bdg-success-line:`success-line` :bdg-info:`info`, :bdg-info-line:`info-line` :bdg-warning:`warning`, :bdg-warning-line:`warning-line` :bdg-danger:`danger`, :bdg-danger-line:`danger-line` :bdg-light:`light`, :bdg-light-line:`light-line` :bdg-dark:`dark`, :bdg-dark-line:`dark-line` sphinx-design-0.6.1/docs/snippets/rst/badge-link.txt000066400000000000000000000001471465316142500224520ustar00rootroot00000000000000:bdg-link-primary:`https://example.com` :bdg-link-primary-line:`explicit title ` sphinx-design-0.6.1/docs/snippets/rst/button-link.txt000066400000000000000000000004641465316142500227250ustar00rootroot00000000000000.. button-link:: https://example.com .. button-link:: https://example.com Button text .. button-link:: https://example.com :color: primary :shadow: .. button-link:: https://example.com :color: primary :outline: .. button-link:: https://example.com :color: secondary :expand: sphinx-design-0.6.1/docs/snippets/rst/card-basic.txt000066400000000000000000000000471465316142500224440ustar00rootroot00000000000000.. card:: Card Title Card content sphinx-design-0.6.1/docs/snippets/rst/card-carousel.txt000066400000000000000000000003131465316142500231740ustar00rootroot00000000000000.. card-carousel:: 2 .. card:: card 1 content .. card:: card 2 Longer content .. card:: card 3 .. card:: card 4 .. card:: card 5 .. card:: card 6 sphinx-design-0.6.1/docs/snippets/rst/card-head-foot.txt000066400000000000000000000001151465316142500232250ustar00rootroot00000000000000.. card:: Card Title Header ^^^ Card content +++ Footer sphinx-design-0.6.1/docs/snippets/rst/card-images.txt000066400000000000000000000010251465316142500226250ustar00rootroot00000000000000.. grid:: 2 3 3 4 .. grid-item:: .. card:: Title :img-background: images/particle_background.jpg :class-card: sd-text-black :img-alt: my text Text .. grid-item-card:: Title :img-top: images/particle_background.jpg :img-alt: Header ^^^ Content +++ Footer .. grid-item-card:: Title :img-bottom: images/particle_background.jpg Header ^^^ Content +++ Footer sphinx-design-0.6.1/docs/snippets/rst/card-link.txt000066400000000000000000000016001465316142500223140ustar00rootroot00000000000000.. _cards-clickable: Clickable cards ............... Using the ``link`` and ``link-type`` options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: .. card:: Clickable Card (external) :link: https://example.com The entire card can be clicked to navigate to https://example.com. .. card:: Clickable Card (external) :link: https://example.com :link-alt: example.com The entire card can be clicked to navigate to https://example.com. .. card:: Clickable Card (internal) :link: cards-clickable :link-type: ref The entire card can be clicked to navigate to the ``cards-clickable`` reference target. .. card:: Clickable Card (internal) :link: cards-clickable :link-type: ref :link-alt: clickable cards The entire card can be clicked to navigate to the ``cards-clickable`` reference target. sphinx-design-0.6.1/docs/snippets/rst/card-title-link.txt000066400000000000000000000001341465316142500234340ustar00rootroot00000000000000.. _target: .. card:: Card Title https://example.com :ref:`link ` Card content sphinx-design-0.6.1/docs/snippets/rst/div-basic.txt000066400000000000000000000001211465316142500223060ustar00rootroot00000000000000.. div:: sd-text-center sd-font-italic sd-text-primary Some CSS styled text sphinx-design-0.6.1/docs/snippets/rst/dropdown-basic.txt000066400000000000000000000002261465316142500233660ustar00rootroot00000000000000.. dropdown:: Dropdown content .. dropdown:: Dropdown title Dropdown content .. dropdown:: Open dropdown :open: Dropdown content sphinx-design-0.6.1/docs/snippets/rst/dropdown-options.txt000066400000000000000000000003621465316142500240010ustar00rootroot00000000000000.. dropdown:: Title :name: target :color: info :icon: alert :margin: 1 :class-container: class-container :class-title: class-title :class-body: class-body Dropdown content :ref:`target`, :ref:`text ` sphinx-design-0.6.1/docs/snippets/rst/grid-basic.txt000066400000000000000000000002341465316142500224560ustar00rootroot00000000000000.. grid:: 1 2 3 4 :outline: .. grid-item:: A .. grid-item:: B .. grid-item:: C .. grid-item:: D sphinx-design-0.6.1/docs/snippets/rst/grid-card-columns.txt000066400000000000000000000002771465316142500237730ustar00rootroot00000000000000.. grid:: 2 .. grid-item-card:: :columns: auto A .. grid-item-card:: :columns: 12 6 6 6 B .. grid-item-card:: :columns: 12 C sphinx-design-0.6.1/docs/snippets/rst/grid-card.txt000066400000000000000000000001461465316142500223100ustar00rootroot00000000000000.. grid:: 2 .. grid-item-card:: Title 1 A .. grid-item-card:: Title 2 B sphinx-design-0.6.1/docs/snippets/rst/grid-gutter.txt000066400000000000000000000003151465316142500227070ustar00rootroot00000000000000.. grid:: 2 :gutter: 1 .. grid-item-card:: A .. grid-item-card:: B .. grid:: 2 :gutter: 3 3 4 5 .. grid-item-card:: A .. grid-item-card:: B sphinx-design-0.6.1/docs/snippets/rst/grid-nested.txt000066400000000000000000000010301465316142500226520ustar00rootroot00000000000000.. grid:: 1 1 2 2 :gutter: 1 .. grid-item:: .. grid:: 1 1 1 1 :gutter: 1 .. grid-item-card:: Item 1.1 Multi-line content .. grid-item-card:: Item 1.2 Content .. grid-item:: .. grid:: 1 1 1 1 :gutter: 1 .. grid-item-card:: Item 2.1 Content .. grid-item-card:: Item 2.2 Content .. grid-item-card:: Item 2.3 Content sphinx-design-0.6.1/docs/snippets/rst/icon-fontawesome.txt000066400000000000000000000001111465316142500237210ustar00rootroot00000000000000An icon :fas:`spinner;sd-bg-primary sd-bg-text-primary`, some more text. sphinx-design-0.6.1/docs/snippets/rst/icon-material-design.txt000066400000000000000000000011461465316142500244500ustar00rootroot00000000000000- A regular icon: :material-regular:`data_exploration;2em`, some more text - A coloured regular icon: :material-regular:`settings;3em;sd-text-success`, some more text. - A coloured outline icon: :material-outlined:`settings;3em;sd-text-success`, some more text. - A coloured sharp icon: :material-sharp:`settings;3em;sd-text-success`, some more text. - A coloured round icon: :material-round:`settings;3em;sd-text-success`, some more text. - A coloured two-tone icon: :material-twotone:`settings;3em;sd-text-success`, some more text. - A fixed size icon: :material-regular:`data_exploration;24px`, some more text. sphinx-design-0.6.1/docs/snippets/rst/icon-octicon.txt000066400000000000000000000001051465316142500230330ustar00rootroot00000000000000A coloured icon: :octicon:`report;1em;sd-text-info`, some more text. sphinx-design-0.6.1/docs/snippets/rst/tab-basic.txt000066400000000000000000000001471465316142500223020ustar00rootroot00000000000000.. tab-set:: .. tab-item:: Label1 Content 1 .. tab-item:: Label2 Content 2 sphinx-design-0.6.1/docs/snippets/rst/tab-code-set.txt000066400000000000000000000002021465316142500227140ustar00rootroot00000000000000.. tab-set-code:: .. literalinclude:: ./snippet.py :language: python .. code-block:: javascript a = 1; sphinx-design-0.6.1/docs/snippets/rst/tab-options.txt000066400000000000000000000004211465316142500227070ustar00rootroot00000000000000.. tab-set:: :class: class-set .. tab-item:: **Label** :name: target :selected: :class-container: class-container :class-label: class-label :class-content: class-content Content :ref:`target`, :ref:`text ` sphinx-design-0.6.1/docs/snippets/rst/tab-sync.txt000066400000000000000000000005231465316142500221730ustar00rootroot00000000000000.. tab-set:: :sync-group: category .. tab-item:: Label1 :sync: key1 Content 1 .. tab-item:: Label2 :sync: key2 Content 2 .. tab-set:: :sync-group: category .. tab-item:: Label1 :sync: key1 Content 1 .. tab-item:: Label2 :sync: key2 Content 2 sphinx-design-0.6.1/docs/tabs.md000066400000000000000000000114251465316142500165130ustar00rootroot00000000000000(sd-tabs)= # Tabs Tabs organize and allow navigation between groups of content that are related and at the same level of hierarchy. Each tab should contain content that is distinct from other tabs in a set. ::::{tab-set} :::{tab-item} Label1 Content 1 ::: :::{tab-item} Label2 Content 2 ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/tab-basic.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/tab-basic.txt :language: rst ``` ```` ````` See the [Material Design](https://material.io/components/tabs) description for further details. ## Synchronised Tabs The Selection of tab items can be synchronised across multiple tab-sets. For a `tab-item` to be synchronisable, add the `sync` option to the `tab-item` directive with a key unique to that set. Now when you select a tab in one set, tabs in other sets with the same key will be selected. :::{note} Synchronisation requires that JavaScript is enabled. ::: :::{versionadded} 0.6.0 To synchronise tabs only across certain tab-sets, add the `:sync-group:` option to each `tab-set` directive with the same group name, such as `:sync-group: category`. You can also add an [HTML query string](https://en.wikipedia.org/wiki/Query_string) to the end of the page's URL, to automatically select a tab with a specific key across all tab-sets of the group, for example: - [`?category=key1#synchronised-tabs`](?category=key1#synchronised-tabs){.external} - [`?category=key2#synchronised-tabs`](?category=key2#synchronised-tabs){.external} ::: ::::{tab-set} :sync-group: category :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: ::::{tab-set} :sync-group: category :::{tab-item} Label1 :sync: key1 Content 1 ::: :::{tab-item} Label2 :sync: key2 Content 2 ::: :::: `````{dropdown-syntax} ````{tab-set-code} ```{literalinclude} ./snippets/myst/tab-sync.txt :language: markdown ``` ```{literalinclude} ./snippets/rst/tab-sync.txt :language: rst ``` ```` ````` ## Tabbed code examples The `tab-set-code` directive provides a shorthand for synced code examples. You can place any directives in a `tab-set-code` that produce a `literal_block` node with a `language` attribute, for example `code`, `code-block` and `literalinclude`. Tabs will be labelled and synchronised by the `language` attribute (in upper-case). :::{versionadded} 0.6.0 You can also add an [HTML query string](https://en.wikipedia.org/wiki/Query_string) to the end of the page's URL, to automatically select a tab with a specific code across all tab-sets of the group, for example: - [`?code=markdown#tabbed-code-examples`](?code=markdown#tabbed-code-examples){.external} - [`?code=rst#tabbed-code-examples`](?code=rst#tabbed-code-examples){.external} ::: ```````{tab-set} :sync-group: code ``````{tab-item} Markdown :sync: markdown ````{literalinclude} ./snippets/myst/tab-code-set.txt :language: markdown ```` `````` ``````{tab-item} RST :sync: rst ````{literalinclude} ./snippets/rst/tab-code-set.txt :language: rst ```` `````` ``````` ## Tabs in other components Tabs can be nested inside other components, such as inside [dropdowns](./dropdowns.md) or within [grid items](./grids.md). :::::{dropdown} Tabs in dropdown :open: Paragraph ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: ::::: ::::::{grid} 1 1 2 2 :::::{grid-item} :outline: Initial paragraph ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: ::::: :::::{grid-item} :outline: ::::{tab-set} :::{tab-item} Label1 :sync: label-1 Content 1 ::: :::{tab-item} Label2 :sync: label-2 Content 2 ::: :::: Ending paragraph ::::: :::::: Tab set, within tab set: ::::::{tab-set} :::::{tab-item} Label 1 ::::{tab-set} :::{tab-item} Label 1a Content 1a ::: :::{tab-item} Label 1b Content 1b ::: :::: ::::: :::::{tab-item} Label 2 Content 2 ::::: :::::: ## `tab-set` options sync-group : A group name for synchronised tab sets (default `tab`). class : Additional CSS classes for the container element. ## `tab-set-code` options no-sync : Disable synchronisation of tabs. sync-group : A group name for synchronised tab sets (default `code`). class-set : Additional CSS classes for the set container element. class-item : Additional CSS classes for the item container element. ## `tab-item` options selected : a flag indicating whether the tab should be selected by default. sync : A key that is used to sync the selected tab across multiple tab-sets. name : Set a reference-able name for the dropdown container. class-container : Additional CSS classes for the container element. class-label : Additional CSS classes for the label element. class-content : Additional CSS classes for the content element. sphinx-design-0.6.1/git_rebase_theme_branches.sh000077500000000000000000000003261465316142500220000ustar00rootroot00000000000000#!/bin/sh set -e fmt=' git checkout %(refname) git rebase main git push origin HEAD:%(refname:strip=3) --force ' eval "$(git for-each-ref --shell --format="$fmt" refs/remotes/origin/*-theme)" git checkout main sphinx-design-0.6.1/package-lock.json000066400000000000000000000261431465316142500175270ustar00rootroot00000000000000{ "name": "sphinx-design-compiler", "version": "0.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sphinx-design-compiler", "version": "0.0.1", "dependencies": { "sass": "^1.35.2" } }, "node_modules/anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "engines": { "node": ">=8" } }, "node_modules/braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dependencies": { "fill-range": "^7.0.1" }, "engines": { "node": ">=8" } }, "node_modules/chokidar": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "hasInstallScript": true, "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "engines": { "node": ">=0.10.0" } }, "node_modules/is-glob": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { "node": ">=0.12.0" } }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "engines": { "node": ">=0.10.0" } }, "node_modules/picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/sass": { "version": "1.35.2", "resolved": "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz", "integrity": "sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw==", "dependencies": { "chokidar": ">=3.0.0 <4.0.0" }, "bin": { "sass": "sass.js" }, "engines": { "node": ">=8.9.0" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } } }, "dependencies": { "anymatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", "requires": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" } }, "binary-extensions": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" }, "braces": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "requires": { "fill-range": "^7.0.1" } }, "chokidar": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", "requires": { "anymatch": "~3.1.2", "braces": "~3.0.2", "fsevents": "~2.3.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" } }, "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "requires": { "to-regex-range": "^5.0.1" } }, "fsevents": { "version": "2.3.2", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "optional": true }, "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "requires": { "is-glob": "^4.0.1" } }, "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "requires": { "binary-extensions": "^2.0.0" } }, "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, "is-glob": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "requires": { "is-extglob": "^2.1.1" } }, "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, "picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" }, "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "requires": { "picomatch": "^2.2.1" } }, "sass": { "version": "1.35.2", "resolved": "https://registry.npmjs.org/sass/-/sass-1.35.2.tgz", "integrity": "sha512-jhO5KAR+AMxCEwIH3v+4zbB2WB0z67V1X0jbapfVwQQdjHZUGUyukpnoM6+iCMfsIUC016w9OPKQ5jrNOS9uXw==", "requires": { "chokidar": ">=3.0.0 <4.0.0" } }, "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "requires": { "is-number": "^7.0.0" } } } } sphinx-design-0.6.1/package.json000066400000000000000000000004561465316142500166000ustar00rootroot00000000000000{ "name": "sphinx-design-compiler", "version": "0.0.1", "description": "Scripts for compiling the sphinx-design assets", "scripts": { "css": "sass --style=compressed --no-source-map style/index.scss sphinx_design/compiled/style.min.css" }, "dependencies": { "sass": "^1.35.2" } } sphinx-design-0.6.1/pyproject.toml000066400000000000000000000055421465316142500172270ustar00rootroot00000000000000[build-system] requires = ["flit_core >=3.4,<4"] build-backend = "flit_core.buildapi" [project] name = "sphinx_design" dynamic = ["version"] description = "A sphinx extension for designing beautiful, view size responsive web components." authors = [{name = "Chris Sewell", email = "chrisj_sewell@hotmail.com"}] readme = "README.md" license = {file = "LICENSE"} classifiers = [ "Development Status :: 4 - Beta", "Framework :: Sphinx :: Extension", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup", "Topic :: Text Processing :: Markup :: Markdown", "Topic :: Text Processing :: Markup :: reStructuredText", ] keywords = ["sphinx", "extension", "material design", "web components"] requires-python = ">=3.9" dependencies = ["sphinx>=6,<9"] [project.urls] Homepage = "https://github.com/executablebooks/sphinx-design" Documentation = "https://sphinx-design.readthedocs.io" [project.optional-dependencies] code-style = ["pre-commit>=3,<4"] rtd = ["myst-parser>=2,<4"] testing = [ "myst-parser>=2,<4", "pytest~=8.3", "pytest-cov", "pytest-regressions", "defusedxml", ] testing-no-myst = [ "pytest~=8.3", "pytest-cov", "pytest-regressions", "defusedxml", ] theme-furo = ["furo~=2024.7.18"] theme-pydata = ["pydata-sphinx-theme~=0.15.2"] theme-rtd = ["sphinx-rtd-theme~=2.0"] theme-sbt = ["sphinx-book-theme~=1.1"] theme-im = ["sphinx-immaterial~=0.12.2"] [tool.flit.sdist] exclude = [ "docs/", "style/", "tests/", ] [tool.ruff.lint] extend-select = [ "B", # flake8-bugbear "C4", # flake8-comprehensions # "FURB",# refurb (modernising code) "I", # isort "ICN", # flake8-import-conventions "ISC", # flake8-implicit-str-concat "N", # pep8-naming "PERF",# perflint (performance anti-patterns) "PGH", # pygrep-hooks "PIE", # flake8-pie "PL", # pylint "PTH", # flake8-use-pathlib "RUF", # Ruff-specific rules "SIM", # flake8-simplify "UP", # pyupgrade "T20", # flake8-print ] extend-ignore = [ "ISC001", # implicit-str-concat "PLR2004", "RUF012", ] # [tool.ruff.lint.per-file-ignores] # "..." = ["N801"] [tool.ruff.lint.isort] force-sort-within-sections = true [tool.mypy] show_error_codes = true warn_unused_ignores = true warn_redundant_casts = true no_implicit_optional = true strict_equality = true [[tool.mypy.overrides]] module = ["docutils.*"] ignore_missing_imports = true sphinx-design-0.6.1/sphinx_design/000077500000000000000000000000001465316142500171475ustar00rootroot00000000000000sphinx-design-0.6.1/sphinx_design/__init__.py000066400000000000000000000006621465316142500212640ustar00rootroot00000000000000"""A sphinx extension for designing beautiful, view size responsive web components.""" from typing import TYPE_CHECKING __version__ = "0.6.1" if TYPE_CHECKING: from sphinx.application import Sphinx def setup(app: "Sphinx") -> dict: from .extension import setup_extension setup_extension(app) return { "version": __version__, "parallel_read_safe": True, "parallel_write_safe": True, } sphinx-design-0.6.1/sphinx_design/_compat.py000066400000000000000000000013561465316142500211500ustar00rootroot00000000000000"""Helpers for cross compatibility across dependency versions.""" from collections.abc import Iterable from importlib import resources from typing import Callable from docutils.nodes import Element def findall(node: Element) -> Callable[..., Iterable[Element]]: """Iterate through""" # findall replaces traverse in docutils v0.18 # note a difference is that findall is an iterator return getattr(node, "findall", node.traverse) # TODO: >= Python 3.9, only use `resources.files` and drop `resources.read_text` def read_text(module: resources.Package, filename: str) -> str: if hasattr(resources, "files"): return resources.files(module).joinpath(filename).read_text() return resources.read_text(module, filename) sphinx-design-0.6.1/sphinx_design/article_info.py000066400000000000000000000143361465316142500221660ustar00rootroot00000000000000from typing import Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from .icons import get_octicon from .shared import SEMANTIC_COLORS, SdDirective, create_component, make_choice def setup_article_info(app: Sphinx): """Setup the article information components.""" app.add_directive("article-info", ArticleInfoDirective) class ArticleInfoDirective(SdDirective): """ """ has_content = False required_arguments = 0 optional_arguments = 0 option_spec = { "avatar": directives.uri, "avatar-alt": directives.unchanged, "avatar-link": directives.uri, "avatar-outline": make_choice(SEMANTIC_COLORS), "author": directives.unchanged_required, "date": directives.unchanged_required, "read-time": directives.unchanged_required, "class-container": directives.class_option, "class-avatar": directives.class_option, } def _parse_text( self, text: str, icon: Optional[nodes.Node] = None, parse: bool = False ) -> nodes.Node: """Parse the text.""" if not parse: output = ([icon] if icon else []) + [nodes.Text(text)] else: text_nodes, _ = self.state.inline_text(text, self.lineno) text_nodes = ([icon] if icon else []) + text_nodes # note certain nodes (like references) need to be nested in a TextElement node # (e.g. a pargraph) para = nodes.paragraph("", "", *text_nodes, classes=["sd-p-0", "sd-m-0"]) self.set_source_info(para) output = [para] return output def run_with_defaults(self) -> list[nodes.Node]: # noqa: PLR0915 parse_fields = True # parse field text top_grid = create_component( "grid-container", [ "sd-container-fluid", "sd-sphinx-override", "sd-p-0", "sd-mt-2", "sd-mb-4", *self.options.get("class-container", []), ], ) self.set_source_info(top_grid) top_row = create_component( "grid-row", ["sd-row", "sd-row-cols-2", "sd-gx-2", "sd-gy-1"], ) self.set_source_info(top_row) top_grid += top_row avatar_uri = self.options.get("avatar") if avatar_uri: # TODO only in html (hide in latex) avatar_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(avatar_column) avatar_classes = ["sd-avatar-sm"] if "avatar-outline" in self.options: avatar_classes.append(f"sd-outline-{self.options['avatar-outline']}") if "class-avatar" in self.options: avatar_classes += self.options["class-avatar"] avatar_image = nodes.image( "", uri=avatar_uri, alt=self.options.get("avatar-alt", ""), classes=avatar_classes, ) self.set_source_info(avatar_image) if self.options.get("avatar-link"): avatar_link = nodes.reference( "", "", refuri=self.options.get("avatar-link") ) avatar_link += avatar_image avatar_image = avatar_link avatar_column += avatar_image top_row += avatar_column info_column = create_component( "grid-item", ["sd-col", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(info_column) top_row += info_column info_grid = create_component( "grid-container", [ "sd-container-fluid", "sd-sphinx-override", ], ) self.set_source_info(info_grid) info_column += info_grid info_row = create_component( "grid-row", [ "sd-row", "sd-row-cols-2", "sd-row-cols-xs-2", "sd-row-cols-sm-3", "sd-row-cols-md-3", "sd-row-cols-lg-3", "sd-gx-3", "sd-gy-1", ], ) self.set_source_info(info_row) info_grid += info_row author_text = self.options.get("author") if author_text: author_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(author_column) author_nodes = self._parse_text(author_text, parse=parse_fields) author_column.extend(author_nodes) info_row += author_column date_text = self.options.get("date") if date_text: date_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(date_column) date_icon = nodes.raw( "", nodes.Text(get_octicon("calendar", height="16px")), classes=["sd-pr-2"], format="html", ) date_nodes = self._parse_text(date_text, icon=date_icon, parse=parse_fields) date_column.extend(date_nodes) info_row += date_column read_time_text = self.options.get("read-time") if read_time_text: read_time_column = create_component( "grid-item", ["sd-col", "sd-col-auto", "sd-d-flex-row", "sd-align-minor-center"], ) self.set_source_info(read_time_column) read_time_icon = nodes.raw( "", nodes.Text(get_octicon("clock", height="16px")), classes=["sd-pr-2"], format="html", ) read_time_nodes = self._parse_text( read_time_text, icon=read_time_icon, parse=parse_fields ) read_time_column.extend(read_time_nodes) info_row += read_time_column return [top_grid] sphinx-design-0.6.1/sphinx_design/badges_buttons.py000066400000000000000000000200241465316142500225220ustar00rootroot00000000000000from typing import Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import ReferenceRole, SphinxRole from sphinx_design.shared import SEMANTIC_COLORS, SdDirective, make_choice, text_align ROLE_NAME_BADGE_PREFIX = "bdg" ROLE_NAME_LINK_PREFIX = "bdg-link" ROLE_NAME_REF_PREFIX = "bdg-ref" DIRECTIVE_NAME_BUTTON_LINK = "button-link" DIRECTIVE_NAME_BUTTON_REF = "button-ref" # TODO defining arbitrary classes for badges # (maybe split text right of last `;`, then split that by comma) # in particular for rounded-pill class etc def setup_badges_and_buttons(app: Sphinx) -> None: """Setup the badge components.""" app.add_role(ROLE_NAME_BADGE_PREFIX, BadgeRole()) app.add_role(ROLE_NAME_LINK_PREFIX, LinkBadgeRole()) app.add_role(ROLE_NAME_REF_PREFIX, XRefBadgeRole()) for color in SEMANTIC_COLORS: app.add_role("-".join((ROLE_NAME_BADGE_PREFIX, color)), BadgeRole(color)) app.add_role( "-".join((ROLE_NAME_BADGE_PREFIX, color, "line")), BadgeRole(color, outline=True), ) app.add_role("-".join((ROLE_NAME_LINK_PREFIX, color)), LinkBadgeRole(color)) app.add_role( "-".join((ROLE_NAME_LINK_PREFIX, color, "line")), LinkBadgeRole(color, outline=True), ) app.add_role("-".join((ROLE_NAME_REF_PREFIX, color)), XRefBadgeRole(color)) app.add_role( "-".join((ROLE_NAME_REF_PREFIX, color, "line")), XRefBadgeRole(color, outline=True), ) app.add_directive(DIRECTIVE_NAME_BUTTON_LINK, ButtonLinkDirective) app.add_directive(DIRECTIVE_NAME_BUTTON_REF, ButtonRefDirective) def create_bdg_classes(color: Optional[str], outline: bool) -> list[str]: """Create the badge classes.""" classes = [ "sd-sphinx-override", "sd-badge", ] if color is None: return classes if outline: classes.extend([f"sd-outline-{color}", f"sd-text-{color}"]) else: classes.extend([f"sd-bg-{color}", f"sd-bg-text-{color}"]) return classes class BadgeRole(SphinxRole): """Role to display a badge.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" node = nodes.inline( self.rawtext, self.text, classes=create_bdg_classes(self.color, self.outline), ) self.set_source_info(node) return [node], [] class LinkBadgeRole(ReferenceRole): """Role to display a badge with an external link.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" node = nodes.reference( self.rawtext, refuri=self.target, classes=create_bdg_classes(self.color, self.outline), ) # TODO open in new tab self.set_source_info(node) # if self.target != self.title: # node["reftitle"] = self.target node += nodes.inline(self.title, self.title) return [node], [] class XRefBadgeRole(ReferenceRole): """Role to display a badge with an internal link.""" def __init__(self, color: Optional[str] = None, *, outline: bool = False) -> None: super().__init__() self.color = color self.outline = outline def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" options = { "classes": create_bdg_classes(self.color, self.outline), "reftarget": self.target, "refdoc": self.env.docname, "refdomain": "", "reftype": "any", "refexplicit": self.has_explicit_title, "refwarn": True, } node = addnodes.pending_xref(self.rawtext, **options) self.set_source_info(node) node += nodes.inline(self.title, self.title, classes=["xref", "any"]) return [node], [] class _ButtonDirective(SdDirective): """A base button directive.""" required_arguments = 1 optional_arguments = 0 final_argument_whitespace = True has_content = True option_spec = { "color": make_choice(SEMANTIC_COLORS), "outline": directives.flag, "align": text_align, # expand to fit parent width "expand": directives.flag, # make parent also clickable "click-parent": directives.flag, "tooltip": directives.unchanged_required, "shadow": directives.flag, # ref button only "ref-type": make_choice(["any", "ref", "doc", "myst"]), "class": directives.class_option, } def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: list[str] ) -> nodes.Node: """Create the reference node.""" raise NotImplementedError def run_with_defaults(self) -> list[nodes.Node]: rawtext = self.arguments[0] target = directives.uri(rawtext) classes = ["sd-sphinx-override", "sd-btn", "sd-text-wrap"] if "color" in self.options: if "outline" in self.options: classes.append(f"sd-btn-outline-{self.options['color']}") else: classes.append(f"sd-btn-{self.options['color']}") if "click-parent" in self.options: classes.append("sd-stretched-link") if "shadow" in self.options: classes.append("sd-shadow-sm") if "class" in self.options: classes.extend(self.options["class"]) node = self.create_ref_node(rawtext, target, bool(self.content), classes) # TODO open in new tab self.set_source_info(node) if "tooltip" in self.options: node["reftitle"] = self.options["tooltip"] # TODO escape HTML if self.content: textnodes, _ = self.state.inline_text( "\n".join(self.content), self.lineno + self.content_offset ) content = nodes.inline("", "") content.extend(textnodes) else: content = nodes.inline(target, target) node.append(content) if "expand" in self.options: grid_container = nodes.inline(classes=["sd-d-grid"]) self.set_source_info(grid_container) grid_container += node node = grid_container # `visit_reference` requires that a reference be inside a `TextElement` parent container = nodes.paragraph(classes=self.options.get("align", [])) self.set_source_info(container) container += node return [container] class ButtonLinkDirective(_ButtonDirective): """A button directive with an external link.""" def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: list[str] ) -> nodes.Node: """Create the reference node.""" return nodes.reference( rawtext, refuri=target, classes=classes, ) class ButtonRefDirective(_ButtonDirective): """A button directive with an internal link.""" def create_ref_node( self, rawtext: str, target: str, explicit_title: bool, classes: list[str] ) -> nodes.Node: """Create the reference node.""" ref_type = self.options.get("ref-type", "any") options = { # TODO the presence of classes raises an error if the link cannot be found "classes": classes, "reftarget": target, "refdoc": self.env.docname, "refdomain": "std" if ref_type in {"ref", "doc"} else "", "reftype": ref_type, "refexplicit": explicit_title, "refwarn": True, } return addnodes.pending_xref(rawtext, **options) sphinx-design-0.6.1/sphinx_design/cards.py000066400000000000000000000242011465316142500206140ustar00rootroot00000000000000import re from typing import NamedTuple, Optional from docutils import nodes from docutils.parsers.rst import directives from docutils.statemachine import StringList from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from sphinx.util.logging import getLogger from ._compat import findall from .shared import ( WARNING_TYPE, PassthroughTextElement, SdDirective, create_component, is_component, make_choice, margin_option, text_align, ) LOGGER = getLogger(__name__) DIRECTIVE_NAME_CARD = "card" DIRECTIVE_NAME_CAROUSEL = "card-carousel" REGEX_HEADER = re.compile(r"^\^{3,}\s*$") REGEX_FOOTER = re.compile(r"^\+{3,}\s*$") def setup_cards(app: Sphinx) -> None: """Setup the card components.""" app.add_directive(DIRECTIVE_NAME_CARD, CardDirective) app.add_directive(DIRECTIVE_NAME_CAROUSEL, CardCarouselDirective) class CardContent(NamedTuple): """Split card into header (optional), body, footer (optional). (offset, content) """ body: tuple[int, StringList] header: Optional[tuple[int, StringList]] = None footer: Optional[tuple[int, StringList]] = None class CardDirective(SdDirective): """A card component.""" has_content = True required_arguments = 0 optional_arguments = 1 # card title final_argument_whitespace = True option_spec = { "width": make_choice(["auto", "25%", "50%", "75%", "100%"]), "margin": margin_option, "text-align": text_align, "img-top": directives.uri, "img-bottom": directives.uri, "img-background": directives.uri, "img-alt": directives.unchanged, "link": directives.uri, "link-type": make_choice(["url", "any", "ref", "doc"]), "link-alt": directives.unchanged, "shadow": make_choice(["none", "sm", "md", "lg"]), "class-card": directives.class_option, "class-header": directives.class_option, "class-body": directives.class_option, "class-title": directives.class_option, "class-footer": directives.class_option, "class-img-top": directives.class_option, "class-img-bottom": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: return [self.create_card(self, self.arguments, self.options)] @classmethod def create_card( # noqa: PLR0915 cls, inst: SphinxDirective, arguments: Optional[list], options: dict ) -> nodes.Node: """Run the directive.""" # TODO better degradation for latex card_classes = ["sd-card", "sd-sphinx-override"] if "width" in options: card_classes += [f'sd-w-{options["width"].rstrip("%")}'] card_classes += options.get("margin", ["sd-mb-3"]) card_classes += [f"sd-shadow-{options.get('shadow', 'sm')}"] if "link" in options: card_classes += ["sd-card-hover"] card = create_component( "card", card_classes + options.get("text-align", []) + options.get("class-card", []), ) inst.set_source_info(card) img_alt = options.get("img-alt") or "" container = card if "img-background" in options: card.append( nodes.image( uri=options["img-background"], classes=["sd-card-img"], alt=img_alt, ) ) overlay = create_component("card-overlay", ["sd-card-img-overlay"]) inst.set_source_info(overlay) card += overlay container = overlay if "img-top" in options: image_top = nodes.image( "", uri=options["img-top"], alt=img_alt, classes=["sd-card-img-top", *options.get("class-img-top", [])], ) container.append(image_top) components = cls.split_content(inst.content, inst.content_offset) if components.header: container.append( cls._create_component( inst, "header", options, components.header[0], components.header[1] ) ) body = cls._create_component( inst, "body", options, components.body[0], components.body[1] ) if arguments: title = create_component( "card-title", [ "sd-card-title", "sd-font-weight-bold", *options.get("class-title", []), ], ) textnodes, _ = inst.state.inline_text(arguments[0], inst.lineno) title_container = PassthroughTextElement() title_container.extend(textnodes) inst.set_source_info(title_container) title.append(title_container) body.insert(0, title) container.append(body) if components.footer: container.append( cls._create_component( inst, "footer", options, components.footer[0], components.footer[1] ) ) if "img-bottom" in options: image_bottom = nodes.image( "", uri=options["img-bottom"], alt=img_alt, classes=["sd-card-img-bottom", *options.get("class-img-bottom", [])], ) container.append(image_bottom) if "link" in options: link_container = PassthroughTextElement() _classes = ["sd-stretched-link", "sd-hide-link-text"] _rawtext = options.get("link-alt") or options["link"] if options.get("link-type", "url") == "url": link = nodes.reference( _rawtext, "", nodes.inline(_rawtext, _rawtext), refuri=options["link"], classes=_classes, ) else: options = { # TODO the presence of classes raises an error if the link cannot be found "classes": _classes, "reftarget": options["link"], "refdoc": inst.env.docname, "refdomain": "" if options["link-type"] == "any" else "std", "reftype": options["link-type"], "refexplicit": "link-alt" in options, "refwarn": True, } link = addnodes.pending_xref( _rawtext, nodes.inline(_rawtext, _rawtext), **options ) inst.set_source_info(link) link_container += link container.append(link_container) return card @staticmethod def split_content(content: StringList, offset: int) -> CardContent: """Split the content into header, body and footer.""" header_index, footer_index, header, footer = None, None, None, None body_offset = offset for index, line in enumerate(content): # match the first occurrence of a header regex if (header_index is None) and REGEX_HEADER.match(line): header_index = index # match the final occurrence of a footer regex if REGEX_FOOTER.match(line): footer_index = index if header_index is not None: header = (offset, content[:header_index]) body_offset += header_index + 1 if footer_index is not None: footer = (offset + footer_index + 1, content[footer_index + 1 :]) body = ( body_offset, content[ (header_index + 1 if header_index is not None else None) : footer_index ], ) return CardContent(body, header, footer) @classmethod def _create_component( cls, inst: SphinxDirective, name: str, options: dict, offset: int, content: StringList, ) -> nodes.container: """Create the header, body, or footer.""" component = create_component( f"card-{name}", [f"sd-card-{name}", *options.get(f"class-{name}", [])] ) inst.set_source_info(component) # TODO set proper lines inst.state.nested_parse(content, offset, component) cls.add_card_child_classes(component) return component @staticmethod def add_card_child_classes(node): """Add classes to specific child nodes.""" for para in findall(node)(nodes.paragraph): para["classes"] = [*para.get("classes", []), "sd-card-text"] # for title in findall(node)(nodes.title): # title["classes"] = ([] if "classes" not in title else title["classes"]) + [ # "sd-card-title" # ] class CardCarouselDirective(SdDirective): """A component, which is a container for cards in a single scrollable row.""" has_content = True required_arguments = 1 # columns optional_arguments = 0 option_spec = { "class": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: self.assert_has_content() try: cols = make_choice([str(i) for i in range(1, 13)])( self.arguments[0].strip() ) except ValueError as exc: raise self.error(f"Invalid directive argument: {exc}") from exc container = create_component( "card-carousel", [ "sd-sphinx-override", "sd-cards-carousel", f"sd-card-cols-{cols}", *self.options.get("class", []), ], ) self.set_source_info(container) self.state.nested_parse(self.content, self.content_offset, container) for item in container.children: if not is_component(item, "card"): LOGGER.warning( "All children of a 'card-carousel' " f"should be 'card' [{WARNING_TYPE}.card]", location=item, type=WARNING_TYPE, subtype="card", ) break return [container] sphinx-design-0.6.1/sphinx_design/compiled/000077500000000000000000000000001465316142500207435ustar00rootroot00000000000000sphinx-design-0.6.1/sphinx_design/compiled/__init__.py000066400000000000000000000000001465316142500230420ustar00rootroot00000000000000sphinx-design-0.6.1/sphinx_design/compiled/material-icons_LICENSE000066400000000000000000000011011465316142500247300ustar00rootroot00000000000000 Copyright 2022 Google Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. sphinx-design-0.6.1/sphinx_design/compiled/material-icons_VERSION.txt000066400000000000000000000001521465316142500256160ustar00rootroot00000000000000using github.com/google/material-design-icons v4.0.0-46-gc9e5528 c9e552847da3445dec2e384e9e2e7230efaca468 sphinx-design-0.6.1/sphinx_design/compiled/material_outlined.json000066400000000000000000061175161465316142500253600ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.6.1/sphinx_design/compiled/material_regular.json000066400000000000000000055721031465316142500251720ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_call": { "name": "add_call", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "36": { "width": 36, "path": "" }, "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down_alt": { "name": "volume_down_alt", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twighlight": { "name": "wb_twighlight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_navigation": { "name": "assistant_navigation", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "Asset 1" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meals_ouline": { "name": "no_meals_ouline", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_pin": { "name": "location_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_list_alt": { "name": "filter_list_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_filled": { "name": "home_filled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "ic_edit_off_24px" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_square": { "name": "edit_square", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_document": { "name": "edit_document", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outgoing_mail": { "name": "outgoing_mail", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "ic_dialer_rtt_revised_24px" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_outline": { "name": "drive_file_move_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces_filled": { "name": "workspaces_filled", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces_outline": { "name": "workspaces_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_upload_off": { "name": "file_upload_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloudy_snowing": { "name": "cloudy_snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowing": { "name": "snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sunny_snowing": { "name": "sunny_snowing", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sunny": { "name": "sunny", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "foggy": { "name": "foggy", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dew_point": { "name": "dew_point", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "ic_recommend_24px" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outlined": { "name": "pie_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "block_flipped": { "name": "block_flipped", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.6.1/sphinx_design/compiled/material_round.json000066400000000000000000075102551465316142500246620ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.6.1/sphinx_design/compiled/material_sharp.json000066400000000000000000051646211465316142500246500ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.6.1/sphinx_design/compiled/material_twotone.json000066400000000000000000074711661465316142500252410ustar00rootroot00000000000000{ "no_encryption_gmailerrorred": { "name": "no_encryption_gmailerrorred", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_available": { "name": "event_available", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vpn_lock": { "name": "vpn_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_extra": { "name": "airline_seat_recline_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv_off": { "name": "tv_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_off": { "name": "power_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_encryption": { "name": "no_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "more": { "name": "more", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_paused": { "name": "phone_paused", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_audio": { "name": "bluetooth_audio", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync": { "name": "sync", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "power": { "name": "power", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_alt": { "name": "do_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card": { "name": "sd_card", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "imagesearch_roller": { "name": "imagesearch_roller", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms": { "name": "sms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_eta": { "name": "drive_eta", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb": { "name": "do_not_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "priority_high": { "name": "priority_high", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "enhanced_encryption": { "name": "enhanced_encryption", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "mms": { "name": "mms", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_normal": { "name": "airline_seat_legroom_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sms_failed": { "name": "sms_failed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "adb": { "name": "adb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_lock": { "name": "sync_lock", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "live_tv": { "name": "live_tv", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "confirmation_number": { "name": "confirmation_number", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi": { "name": "wifi", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_card_alert": { "name": "sd_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "running_with_errors": { "name": "running_with_errors", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_flat_angled": { "name": "airline_seat_flat_angled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_off": { "name": "do_not_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_note": { "name": "event_note", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update": { "name": "system_update", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_chat": { "name": "video_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_locked": { "name": "network_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_legroom_reduced": { "name": "airline_seat_legroom_reduced", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_problem": { "name": "sync_problem", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_on": { "name": "do_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_in_talk": { "name": "phone_in_talk", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wc": { "name": "wc", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_forwarded": { "name": "phone_forwarded", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_disabled": { "name": "sync_disabled", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_chat": { "name": "voice_chat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_bluetooth_speaker": { "name": "phone_bluetooth_speaker", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "tap_and_play": { "name": "tap_and_play", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_special": { "name": "folder_special", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_on": { "name": "do_not_disturb_on", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_check": { "name": "network_check", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_busy": { "name": "event_busy", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "ondemand_video": { "name": "ondemand_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_locked": { "name": "phone_locked", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_legroom_extra": { "name": "airline_seat_legroom_extra", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "time_to_leave": { "name": "time_to_leave", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb": { "name": "do_disturb", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_off": { "name": "directions_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_recline_normal": { "name": "airline_seat_recline_normal", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_missed": { "name": "phone_missed", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "personal_video": { "name": "personal_video", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_tree": { "name": "account_tree", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "support_agent": { "name": "support_agent", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_seat_individual_suite": { "name": "airline_seat_individual_suite", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "vibration": { "name": "vibration", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_disturb_alt": { "name": "do_not_disturb_alt", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "disc_full": { "name": "disc_full", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_alert": { "name": "sim_card_alert", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_off": { "name": "wifi_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "airline_seat_flat": { "name": "airline_seat_flat", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_callback": { "name": "phone_callback", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_disturb_off": { "name": "do_disturb_off", "keywords": [ "notification" ], "heights": { "24": { "width": 24, "path": "" } } }, "doorbell": { "name": "doorbell", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "blender": { "name": "blender", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_baby": { "name": "bedroom_baby", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee": { "name": "coffee", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathroom": { "name": "bathroom", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "light": { "name": "light", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_sliding": { "name": "door_sliding", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_indoor": { "name": "camera_indoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedroom_child": { "name": "bedroom_child", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "feed": { "name": "feed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "podcasts": { "name": "podcasts", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "garage": { "name": "garage", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "dining": { "name": "dining", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_back": { "name": "door_back", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair_alt": { "name": "chair_alt", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "living": { "name": "living", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "yard": { "name": "yard", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "coffee_maker": { "name": "coffee_maker", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "shower": { "name": "shower", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "window": { "name": "window", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "door_front": { "name": "door_front", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "chair": { "name": "chair", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "bed": { "name": "bed", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_bar": { "name": "table_bar", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flatware": { "name": "flatware", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_search": { "name": "manage_search", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_outdoor": { "name": "camera_outdoor", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_restaurant": { "name": "table_restaurant", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bedroom_parent": { "name": "bedroom_parent", "keywords": [ "search" ], "heights": { "24": { "width": 24, "path": "" } } }, "note": { "name": "note", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k": { "name": "7k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay": { "name": "replay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_queue": { "name": "add_to_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add": { "name": "library_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue_play_next": { "name": "queue_play_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k": { "name": "2k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check_circle": { "name": "playlist_add_check_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "repeat_on": { "name": "repeat_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "1k_plus": { "name": "1k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_10": { "name": "forward_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_remove": { "name": "playlist_remove", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mic": { "name": "mic", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_label": { "name": "video_label", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort_by_alpha": { "name": "sort_by_alpha", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_none": { "name": "mic_none", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_to_action": { "name": "call_to_action", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "3k_plus": { "name": "3k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle": { "name": "play_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "8k_plus": { "name": "8k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "interpreter_mode": { "name": "interpreter_mode", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "play_disabled": { "name": "play_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_add_check": { "name": "playlist_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause": { "name": "pause", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "album": { "name": "album", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "7k_plus": { "name": "7k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_10": { "name": "replay_10", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_books": { "name": "library_books", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_previous": { "name": "skip_previous", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_circle_filled": { "name": "replay_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_arrow": { "name": "play_arrow", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "speed": { "name": "speed", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k_plus": { "name": "4k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie": { "name": "movie", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat": { "name": "repeat", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_30": { "name": "forward_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "9k": { "name": "9k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_forward": { "name": "fast_forward", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "lyrics": { "name": "lyrics", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "1k": { "name": "1k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subtitles": { "name": "subtitles", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "recent_actors": { "name": "recent_actors", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_settings": { "name": "video_settings", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "3k": { "name": "3k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_5": { "name": "forward_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_off": { "name": "volume_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "loop": { "name": "loop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_filled": { "name": "play_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle_on": { "name": "shuffle_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "2k_plus": { "name": "2k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k_plus": { "name": "6k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "explicit": { "name": "explicit", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5g": { "name": "5g", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "audio_file": { "name": "audio_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_from_queue": { "name": "remove_from_queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "queue": { "name": "queue", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_video": { "name": "music_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "playlist_play": { "name": "playlist_play", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stop_circle": { "name": "stop_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "av_timer": { "name": "av_timer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web": { "name": "web", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam_off": { "name": "videocam_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_filled": { "name": "pause_circle_filled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption": { "name": "closed_caption", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hd": { "name": "hd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio": { "name": "radio", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_5": { "name": "replay_5", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_manual_record": { "name": "fiber_manual_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fast_rewind": { "name": "fast_rewind", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_music": { "name": "library_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "equalizer": { "name": "equalizer", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset": { "name": "web_asset", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "videocam": { "name": "videocam", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "surround_sound": { "name": "surround_sound", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_library": { "name": "video_library", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "missed_video_call": { "name": "missed_video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "8k": { "name": "8k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "5k_plus": { "name": "5k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing": { "name": "hearing", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "6k": { "name": "6k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "games": { "name": "games", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "slow_motion_video": { "name": "slow_motion_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "branding_watermark": { "name": "branding_watermark", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "shuffle": { "name": "shuffle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_off": { "name": "mic_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "library_add_check": { "name": "library_add_check", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "featured_play_list": { "name": "featured_play_list", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "snooze": { "name": "snooze", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle_outline": { "name": "pause_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "featured_video": { "name": "featured_video", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "10k": { "name": "10k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_call": { "name": "video_call", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "art_track": { "name": "art_track", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_new": { "name": "fiber_new", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd": { "name": "sd", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_smart_record": { "name": "fiber_smart_record", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "skip_next": { "name": "skip_next", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_up": { "name": "volume_up", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_asset_off": { "name": "web_asset_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplay": { "name": "airplay", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "hearing_disabled": { "name": "hearing_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add_circle": { "name": "playlist_add_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "queue_music": { "name": "queue_music", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "playlist_add": { "name": "playlist_add", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "5k": { "name": "5k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_interested": { "name": "not_interested", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one_on": { "name": "repeat_one_on", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_file": { "name": "video_file", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "9k_plus": { "name": "9k_plus", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "subscriptions": { "name": "subscriptions", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "pause_circle": { "name": "pause_circle", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "control_camera": { "name": "control_camera", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_mute": { "name": "volume_mute", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_pin": { "name": "fiber_pin", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "high_quality": { "name": "high_quality", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "volume_down": { "name": "volume_down", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "4k": { "name": "4k", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "replay_30": { "name": "replay_30", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_off": { "name": "closed_caption_off", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_circle_outline": { "name": "play_circle_outline", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "repeat_one": { "name": "repeat_one", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop": { "name": "stop", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "closed_caption_disabled": { "name": "closed_caption_disabled", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "new_releases": { "name": "new_releases", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "fiber_dvr": { "name": "fiber_dvr", "keywords": [ "av" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_unchecked": { "name": "radio_button_unchecked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_outline": { "name": "star_outline", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "indeterminate_check_box": { "name": "indeterminate_check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_on": { "name": "toggle_on", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_purple500": { "name": "star_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box_outline_blank": { "name": "check_box_outline_blank", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border_purple500": { "name": "star_border_purple500", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "check_box": { "name": "check_box", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star": { "name": "star", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_border": { "name": "star_border", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "toggle_off": { "name": "toggle_off", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_half": { "name": "star_half", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "radio_button_checked": { "name": "radio_button_checked", "keywords": [ "toggle" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point_duplicate": { "name": "control_point_duplicate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_off": { "name": "hdr_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_auto": { "name": "motion_photos_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timelapse": { "name": "timelapse", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_front": { "name": "photo_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_small": { "name": "photo_size_select_small", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "8mp": { "name": "8mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_on": { "name": "raw_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_off": { "name": "motion_photos_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "euro": { "name": "euro", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iso": { "name": "iso", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_camera_back": { "name": "photo_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "19mp": { "name": "19mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "linked_camera": { "name": "linked_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_4": { "name": "filter_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "6mp": { "name": "6mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_auto": { "name": "flash_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_rear": { "name": "camera_rear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_android": { "name": "flip_camera_android", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vignette": { "name": "vignette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_zero": { "name": "exposure_zero", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_2": { "name": "filter_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip": { "name": "flip", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_plus": { "name": "hdr_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_roll": { "name": "camera_roll", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_off": { "name": "face_retouching_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_search": { "name": "image_search", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_ccw": { "name": "rotate_90_degrees_ccw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_album": { "name": "photo_album", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_9": { "name": "filter_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_auto": { "name": "wb_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "monochrome_photos": { "name": "monochrome_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_original": { "name": "crop_original", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime": { "name": "bedtime", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "20mp": { "name": "20mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure": { "name": "exposure", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_creation": { "name": "movie_creation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image": { "name": "image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_franc": { "name": "currency_franc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vrpano": { "name": "vrpano", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections_bookmark": { "name": "collections_bookmark", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_none": { "name": "filter_none", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_off": { "name": "blur_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_pound": { "name": "currency_pound", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "timer": { "name": "timer", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "style": { "name": "style", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_2": { "name": "brightness_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy": { "name": "view_comfy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_fix_off": { "name": "auto_fix_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal": { "name": "panorama_horizontal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama": { "name": "panorama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_cloudy": { "name": "wb_cloudy", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_red_eye": { "name": "remove_red_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_retouching_natural": { "name": "face_retouching_natural", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_90_degrees_cw": { "name": "rotate_90_degrees_cw", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "photo_camera": { "name": "photo_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3": { "name": "timer_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "16mp": { "name": "16mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_motion": { "name": "auto_awesome_motion", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_2": { "name": "exposure_plus_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere": { "name": "panorama_photosphere", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_pause": { "name": "motion_photos_pause", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "adjust": { "name": "adjust", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "straighten": { "name": "straighten", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hevc": { "name": "hevc", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_portrait": { "name": "crop_portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_off": { "name": "mic_external_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "2mp": { "name": "2mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_photosphere_select": { "name": "panorama_photosphere_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_9_plus": { "name": "filter_9_plus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_strong": { "name": "hdr_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_aspect_ratio": { "name": "image_aspect_ratio", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo": { "name": "photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_front": { "name": "camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_rotate": { "name": "crop_rotate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_incandescent": { "name": "wb_incandescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "image_not_supported": { "name": "image_not_supported", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "17mp": { "name": "17mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "12mp": { "name": "12mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop": { "name": "crop", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "22mp": { "name": "22mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dirty_lens": { "name": "dirty_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt_long": { "name": "receipt_long", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "4mp": { "name": "4mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_before": { "name": "navigate_before", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_landscape": { "name": "crop_landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "9mp": { "name": "9mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mic_external_on": { "name": "mic_external_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat_auto": { "name": "thermostat_auto", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_6": { "name": "brightness_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera": { "name": "camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps_select": { "name": "60fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome": { "name": "auto_awesome", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flare": { "name": "flare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_back": { "name": "video_camera_back", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_sunny": { "name": "wb_sunny", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_7": { "name": "brightness_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_library": { "name": "photo_library", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_16_9": { "name": "crop_16_9", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_on": { "name": "blur_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_a_photo": { "name": "add_a_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_fish_eye": { "name": "panorama_fish_eye", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_4": { "name": "looks_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "raw_off": { "name": "raw_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical": { "name": "panorama_vertical", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_3": { "name": "looks_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks": { "name": "looks", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_off": { "name": "music_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "movie_filter": { "name": "movie_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tonality": { "name": "tonality", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "10mp": { "name": "10mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_5": { "name": "filter_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "23mp": { "name": "23mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_off": { "name": "flash_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yen": { "name": "currency_yen", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "14mp": { "name": "14mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_image": { "name": "hide_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_iridescent": { "name": "wb_iridescent", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "burst_mode": { "name": "burst_mode", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "slideshow": { "name": "slideshow", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_twilight": { "name": "wb_twilight", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blur_circular": { "name": "blur_circular", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_7_5": { "name": "crop_7_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "5mp": { "name": "5mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_large": { "name": "photo_size_select_large", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_alt": { "name": "camera_alt", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_vintage": { "name": "filter_vintage", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "audiotrack": { "name": "audiotrack", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flash_on": { "name": "flash_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_3": { "name": "brightness_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_size_select_actual": { "name": "photo_size_select_actual", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "flip_camera_ios": { "name": "flip_camera_ios", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_drama": { "name": "filter_drama", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag_faces": { "name": "tag_faces", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "leak_add": { "name": "leak_add", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "11mp": { "name": "11mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_1": { "name": "exposure_neg_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_rupee": { "name": "currency_rupee", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "healing": { "name": "healing", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_off": { "name": "timer_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transform": { "name": "transform", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens": { "name": "lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_5": { "name": "looks_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "cases": { "name": "cases", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "18mp": { "name": "18mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "photo_filter": { "name": "photo_filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter": { "name": "filter", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_6": { "name": "filter_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_free": { "name": "crop_free", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_plus_1": { "name": "exposure_plus_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact": { "name": "view_compact", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10": { "name": "timer_10", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_awesome_mosaic": { "name": "auto_awesome_mosaic", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "21mp": { "name": "21mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_ruble": { "name": "currency_ruble", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "crop_din": { "name": "crop_din", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on": { "name": "hdr_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_square": { "name": "crop_square", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_on": { "name": "grid_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_bitcoin": { "name": "currency_bitcoin", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autofps_select": { "name": "autofps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit": { "name": "edit", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps_select": { "name": "30fps_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "colorize": { "name": "colorize", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brush": { "name": "brush", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_video": { "name": "switch_video", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_8": { "name": "filter_8", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_1": { "name": "filter_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "contrast": { "name": "contrast", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "brightness_1": { "name": "brightness_1", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_two": { "name": "looks_two", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "15mp": { "name": "15mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "motion_photos_paused": { "name": "motion_photos_paused", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "loupe": { "name": "loupe", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature": { "name": "nature", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "wb_shade": { "name": "wb_shade", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "circle": { "name": "circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "landscape": { "name": "landscape", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_5": { "name": "brightness_5", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "mp": { "name": "mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_one": { "name": "looks_one", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_as_pdf": { "name": "picture_as_pdf", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "3mp": { "name": "3mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_vertical_select": { "name": "panorama_vertical_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_b_and_w": { "name": "filter_b_and_w", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "music_note": { "name": "music_note", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "details": { "name": "details", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_photo_alternate": { "name": "add_photo_alternate", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_7": { "name": "filter_7", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_right": { "name": "rotate_right", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_strong": { "name": "center_focus_strong", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "dehaze": { "name": "dehaze", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_horizontal_select": { "name": "panorama_horizontal_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "bedtime_off": { "name": "bedtime_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "motion_photos_on": { "name": "motion_photos_on", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compare": { "name": "compare", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_3_2": { "name": "crop_3_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "nature_people": { "name": "nature_people", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "tune": { "name": "tune", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_3": { "name": "filter_3", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "deblur": { "name": "deblur", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "texture": { "name": "texture", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "looks_6": { "name": "looks_6", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "broken_image": { "name": "broken_image", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_hdr": { "name": "filter_hdr", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_4": { "name": "brightness_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "incomplete_circle": { "name": "incomplete_circle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assistant_photo": { "name": "assistant_photo", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_weak": { "name": "hdr_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "center_focus_weak": { "name": "center_focus_weak", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_normal": { "name": "auto_fix_normal", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_enhanced_select": { "name": "hdr_enhanced_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_center_focus": { "name": "filter_center_focus", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_off": { "name": "grid_off", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle": { "name": "panorama_wide_angle", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant": { "name": "assistant", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "collections": { "name": "collections", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigate_next": { "name": "navigate_next", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "crop_5_4": { "name": "crop_5_4", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "grain": { "name": "grain", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "blur_linear": { "name": "blur_linear", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_lira": { "name": "currency_lira", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "24mp": { "name": "24mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_stories": { "name": "auto_stories", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "palette": { "name": "palette", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "color_lens": { "name": "color_lens", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "exposure_neg_2": { "name": "exposure_neg_2", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "13mp": { "name": "13mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "7mp": { "name": "7mp", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_camera_front": { "name": "video_camera_front", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_yuan": { "name": "currency_yuan", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "portrait": { "name": "portrait", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_photos": { "name": "add_to_photos", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "control_point": { "name": "control_point", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_frames": { "name": "filter_frames", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "shutter_speed": { "name": "shutter_speed", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_tilt_shift": { "name": "filter_tilt_shift", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "logo_dev": { "name": "logo_dev", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leak_remove": { "name": "leak_remove", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "panorama_wide_angle_select": { "name": "panorama_wide_angle_select", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "rotate_left": { "name": "rotate_left", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "gradient": { "name": "gradient", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_camera": { "name": "switch_camera", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "animation": { "name": "animation", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_fix_high": { "name": "auto_fix_high", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "video_stable": { "name": "video_stable", "keywords": [ "image" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_left": { "name": "arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu": { "name": "menu", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_left": { "name": "switch_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "legend_toggle": { "name": "legend_toggle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_west": { "name": "south_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_upward": { "name": "arrow_upward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "waterfall_chart": { "name": "waterfall_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_circle_down": { "name": "expand_circle_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_drop_up": { "name": "arrow_drop_up", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "first_page": { "name": "first_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen": { "name": "fullscreen", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_left": { "name": "subdirectory_arrow_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_right": { "name": "chevron_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home_work": { "name": "add_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps_outage": { "name": "apps_outage", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apps": { "name": "apps", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "west": { "name": "west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_share": { "name": "offline_share", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right": { "name": "arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "subdirectory_arrow_right": { "name": "subdirectory_arrow_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_downward": { "name": "arrow_downward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down_circle": { "name": "arrow_drop_down_circle", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more": { "name": "unfold_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "cancel": { "name": "cancel", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "payments": { "name": "payments", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south_east": { "name": "south_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_work": { "name": "home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand_more": { "name": "expand_more", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "double_arrow": { "name": "double_arrow", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "north_west": { "name": "north_west", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_settings_alt": { "name": "app_settings_alt", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "expand_less": { "name": "expand_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios": { "name": "arrow_back_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_open": { "name": "menu_open", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "campaign": { "name": "campaign", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "check": { "name": "check", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "refresh": { "name": "refresh", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "south": { "name": "south", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_right": { "name": "switch_right", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_vert": { "name": "more_vert", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_less": { "name": "unfold_less", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "close": { "name": "close", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "assistant_direction": { "name": "assistant_direction", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "chevron_left": { "name": "chevron_left", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back": { "name": "arrow_back", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "east": { "name": "east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north_east": { "name": "north_east", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "maps_home_work": { "name": "maps_home_work", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "pivot_table_chart": { "name": "pivot_table_chart", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "fullscreen_exit": { "name": "fullscreen_exit", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_horiz": { "name": "more_horiz", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_forward_ios": { "name": "arrow_forward_ios", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "last_page": { "name": "last_page", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_drop_down": { "name": "arrow_drop_down", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_back_ios_new": { "name": "arrow_back_ios_new", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_forward": { "name": "arrow_forward", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "north": { "name": "north", "keywords": [ "navigation" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_movies": { "name": "local_movies", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "festival": { "name": "festival", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "traffic": { "name": "traffic", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "kebab_dining": { "name": "kebab_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrong_location": { "name": "wrong_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "my_location": { "name": "my_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_scooter": { "name": "electric_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_railway_filled": { "name": "directions_railway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "crisis_alert": { "name": "crisis_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sailing": { "name": "sailing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "warehouse": { "name": "warehouse", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_share": { "name": "emergency_share", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airline_stops": { "name": "airline_stops", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nightlife": { "name": "nightlife", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diamond": { "name": "diamond", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant": { "name": "restaurant", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "attractions": { "name": "attractions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway": { "name": "directions_subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "breakfast_dining": { "name": "breakfast_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_see": { "name": "local_see", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "store_mall_directory": { "name": "store_mall_directory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_police": { "name": "local_police", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fort": { "name": "fort", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_right": { "name": "u_turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_atm": { "name": "local_atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_road": { "name": "edit_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_check": { "name": "safety_check", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "transfer_within_a_station": { "name": "transfer_within_a_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ev_station": { "name": "ev_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hospital": { "name": "local_hospital", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "soup_kitchen": { "name": "soup_kitchen", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_meals": { "name": "no_meals", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "sos": { "name": "sos", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel": { "name": "hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_class": { "name": "flight_class", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "liquor": { "name": "liquor", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_information": { "name": "medical_information", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "plumbing": { "name": "plumbing", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "place": { "name": "place", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "lunch_dining": { "name": "lunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_grocery_store": { "name": "local_grocery_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_mall": { "name": "local_mall", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_right": { "name": "turn_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_attributes": { "name": "edit_attributes", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "navigation": { "name": "navigation", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_railway": { "name": "directions_railway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "layers_clear": { "name": "layers_clear", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moped": { "name": "moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "beenhere": { "name": "beenhere", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "trip_origin": { "name": "trip_origin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_shipping": { "name": "local_shipping", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "minor_crash": { "name": "minor_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin": { "name": "person_pin", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "departure_board": { "name": "departure_board", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "agriculture": { "name": "agriculture", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "two_wheeler": { "name": "two_wheeler", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat": { "name": "directions_boat", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_walk": { "name": "directions_walk", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_cafe": { "name": "local_cafe", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "tram": { "name": "tram", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "celebration": { "name": "celebration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_left": { "name": "turn_sharp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_rickshaw": { "name": "electric_rickshaw", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "miscellaneous_services": { "name": "miscellaneous_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_listed_location": { "name": "not_listed_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_bike": { "name": "electric_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tire_repair": { "name": "tire_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry_cleaning": { "name": "dry_cleaning", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electrical_services": { "name": "electrical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_transfer": { "name": "no_transfer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "synagogue": { "name": "synagogue", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_subway_filled": { "name": "directions_subway_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "menu_book": { "name": "menu_book", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pest_control": { "name": "pest_control", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fork_left": { "name": "fork_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowmobile": { "name": "snowmobile", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_repair": { "name": "car_repair", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "park": { "name": "park", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "church": { "name": "church", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hardware": { "name": "hardware", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bike_scooter": { "name": "bike_scooter", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compass_calibration": { "name": "compass_calibration", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "dinner_dining": { "name": "dinner_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_taxi": { "name": "local_taxi", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_pizza": { "name": "local_pizza", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_parking": { "name": "local_parking", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me": { "name": "near_me", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in_map": { "name": "zoom_in_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_phone": { "name": "local_phone", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_drink": { "name": "local_drink", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_right": { "name": "turn_slight_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "maps_ugc": { "name": "maps_ugc", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car": { "name": "directions_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_hotel": { "name": "local_hotel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fire_hydrant_alt": { "name": "fire_hydrant_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_printshop": { "name": "local_printshop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_business": { "name": "add_business", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_car": { "name": "electric_car", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_pin_circle": { "name": "person_pin_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation_alt": { "name": "screen_rotation_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_bar": { "name": "local_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "forest": { "name": "forest", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite": { "name": "satellite", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_airport": { "name": "local_airport", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volunteer_activism": { "name": "volunteer_activism", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_fire_department": { "name": "local_fire_department", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "set_meal": { "name": "set_meal", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge": { "name": "merge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_car_wash": { "name": "local_car_wash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "atm": { "name": "atm", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_play": { "name": "local_play", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "moving": { "name": "moving", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "360": { "name": "360", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight": { "name": "flight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "castle": { "name": "castle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "layers": { "name": "layers", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "pedal_bike": { "name": "pedal_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_hindu": { "name": "temple_hindu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location_alt": { "name": "edit_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "medical_services": { "name": "medical_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_post_office": { "name": "local_post_office", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "map": { "name": "map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hail": { "name": "hail", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "signpost": { "name": "signpost", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bakery_dining": { "name": "bakery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "zoom_out_map": { "name": "zoom_out_map", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_repair_service": { "name": "home_repair_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wine_bar": { "name": "wine_bar", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_left": { "name": "turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restaurant_menu": { "name": "restaurant_menu", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "turn_slight_left": { "name": "turn_slight_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "theater_comedy": { "name": "theater_comedy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramen_dining": { "name": "ramen_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_drop": { "name": "pin_drop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "transit_enterexit": { "name": "transit_enterexit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_crash": { "name": "no_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "egg_alt": { "name": "egg_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_location": { "name": "edit_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_laundry_service": { "name": "local_laundry_service", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_dining": { "name": "local_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit_filled": { "name": "directions_transit_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "brunch_dining": { "name": "brunch_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "design_services": { "name": "design_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "run_circle": { "name": "run_circle", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency": { "name": "emergency", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_road": { "name": "remove_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_run": { "name": "directions_run", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bus": { "name": "directions_bus", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_location_alt": { "name": "add_location_alt", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "streetview": { "name": "streetview", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "badge": { "name": "badge", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_pharmacy": { "name": "local_pharmacy", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "fork_right": { "name": "fork_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "temple_buddhist": { "name": "temple_buddhist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "factory": { "name": "factory", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_location": { "name": "add_location", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "near_me_disabled": { "name": "near_me_disabled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "car_rental": { "name": "car_rental", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turn_sharp_right": { "name": "turn_sharp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "category": { "name": "category", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "taxi_alert": { "name": "taxi_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "bus_alert": { "name": "bus_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "straight": { "name": "straight", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rate_review": { "name": "rate_review", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "money": { "name": "money", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "ramp_left": { "name": "ramp_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_left": { "name": "roundabout_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "railway_alert": { "name": "railway_alert", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "cleaning_services": { "name": "cleaning_services", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "icecream": { "name": "icecream", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "multiple_stop": { "name": "multiple_stop", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "handyman": { "name": "handyman", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_of_travel": { "name": "mode_of_travel", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ramp_right": { "name": "ramp_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roundabout_right": { "name": "roundabout_right", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_truck": { "name": "fire_truck", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_bus_filled": { "name": "directions_bus_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_offer": { "name": "local_offer", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "electric_moped": { "name": "electric_moped", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emergency_recording": { "name": "emergency_recording", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "u_turn_left": { "name": "u_turn_left", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_road": { "name": "add_road", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_gas_station": { "name": "local_gas_station", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "terrain": { "name": "terrain", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "hvac": { "name": "hvac", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_library": { "name": "local_library", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_car_filled": { "name": "directions_car_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "museum": { "name": "museum", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_convenience_store": { "name": "local_convenience_store", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "airlines": { "name": "airlines", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fastfood": { "name": "fastfood", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "stadium": { "name": "stadium", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pest_control_rodent": { "name": "pest_control_rodent", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "route": { "name": "route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delivery_dining": { "name": "delivery_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alt_route": { "name": "alt_route", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subway": { "name": "subway", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "train": { "name": "train", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "local_activity": { "name": "local_activity", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_transit": { "name": "directions_transit", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "egg": { "name": "egg", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "car_crash": { "name": "car_crash", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mosque": { "name": "mosque", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "takeout_dining": { "name": "takeout_dining", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "directions_boat_filled": { "name": "directions_boat_filled", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions_bike": { "name": "directions_bike", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "connecting_airports": { "name": "connecting_airports", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "local_florist": { "name": "local_florist", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "directions": { "name": "directions", "keywords": [ "maps" ], "heights": { "24": { "width": 24, "path": "" } } }, "savings": { "name": "savings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_outline": { "name": "label_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_left": { "name": "arrow_circle_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_bluetooth": { "name": "settings_bluetooth", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "alarm_off": { "name": "alarm_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_all": { "name": "done_all", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbox": { "name": "outbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "polymer": { "name": "polymer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "online_prediction": { "name": "online_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outlet": { "name": "outlet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pending": { "name": "pending", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quickreply": { "name": "quickreply", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "density_large": { "name": "density_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_week": { "name": "view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_exploration": { "name": "data_exploration", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report_problem": { "name": "report_problem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_accessibility": { "name": "settings_accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_scan_wifi": { "name": "perm_scan_wifi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "find_in_page": { "name": "find_in_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "3d_rotation": { "name": "3d_rotation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_outline": { "name": "lock_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "production_quantity_limits": { "name": "production_quantity_limits", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_flat": { "name": "trending_flat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_for_work": { "name": "play_for_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_full": { "name": "hourglass_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio": { "name": "spatial_audio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "token": { "name": "token", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flight_takeoff": { "name": "flight_takeoff", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label": { "name": "label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search": { "name": "search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_audio_off": { "name": "spatial_audio_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_add": { "name": "alarm_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_full": { "name": "join_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle": { "name": "check_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "get_app": { "name": "get_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension_off": { "name": "extension_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "find_replace": { "name": "find_replace", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_basket": { "name": "shopping_basket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "terminal": { "name": "terminal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "label_important_outline": { "name": "label_important_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_add": { "name": "bookmark_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "javascript": { "name": "javascript", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_schedule_send": { "name": "cancel_schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm": { "name": "alarm", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "plagiarism": { "name": "plagiarism", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compress": { "name": "compress", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_out": { "name": "zoom_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_comfy_alt": { "name": "view_comfy_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_applications": { "name": "settings_applications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_ethernet": { "name": "settings_ethernet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angleup": { "name": "text_rotation_angleup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore_from_trash": { "name": "restore_from_trash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flaky": { "name": "flaky", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_form": { "name": "dynamic_form", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors_off": { "name": "sensors_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update_disabled": { "name": "update_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new_off": { "name": "open_in_new_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copyright": { "name": "copyright", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "room": { "name": "room", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "opacity": { "name": "opacity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "schedule_send": { "name": "schedule_send", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_travel": { "name": "card_travel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lightbulb_circle": { "name": "lightbulb_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_return": { "name": "assignment_return", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_card": { "name": "add_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_full": { "name": "open_in_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_home": { "name": "add_home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "browse_gallery": { "name": "browse_gallery", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unpublished": { "name": "unpublished", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_backup_restore": { "name": "settings_backup_restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab_unselected": { "name": "tab_unselected", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code_off": { "name": "code_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_vertical": { "name": "swipe_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility": { "name": "accessibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "addchart": { "name": "addchart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "currency_exchange": { "name": "currency_exchange", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "css": { "name": "css", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_sidebar": { "name": "view_sidebar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pending_actions": { "name": "pending_actions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tour": { "name": "tour", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight_round": { "name": "nightlight_round", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_important": { "name": "label_important", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "theaters": { "name": "theaters", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "backup_table": { "name": "backup_table", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "youtube_searched_for": { "name": "youtube_searched_for", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_off": { "name": "edit_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done_outline": { "name": "done_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_plan": { "name": "next_plan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rule": { "name": "rule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "paid": { "name": "paid", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark": { "name": "bookmark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hide_source": { "name": "hide_source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "loyalty": { "name": "loyalty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fingerprint": { "name": "fingerprint", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "store": { "name": "store", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down_off_alt": { "name": "thumb_down_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_left_alt": { "name": "swipe_left_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "leaderboard": { "name": "leaderboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_contact_calendar": { "name": "perm_contact_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "api": { "name": "api", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assured_workload": { "name": "assured_workload", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contactless": { "name": "contactless", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pan_tool": { "name": "pan_tool", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread_mailbox": { "name": "markunread_mailbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "preview": { "name": "preview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_alt_off": { "name": "filter_alt_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "settings_input_component": { "name": "settings_input_component", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbond": { "name": "outbond", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work": { "name": "work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down_alt": { "name": "swipe_down_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "saved_search": { "name": "saved_search", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_month": { "name": "calendar_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "article": { "name": "article", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "display_settings": { "name": "display_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe": { "name": "swipe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pinch": { "name": "pinch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "balance": { "name": "balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help": { "name": "help", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_page": { "name": "request_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop_2": { "name": "shop_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "watch_later": { "name": "watch_later", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock": { "name": "lock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmarks": { "name": "bookmarks", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_kanban": { "name": "view_kanban", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "history": { "name": "history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "generating_tokens": { "name": "generating_tokens", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_day": { "name": "view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible": { "name": "accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_carousel": { "name": "view_carousel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "percent": { "name": "percent", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "private_connectivity": { "name": "private_connectivity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "table_view": { "name": "table_view", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "favorite": { "name": "favorite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fit_screen": { "name": "fit_screen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_down": { "name": "text_rotation_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "dashboard": { "name": "dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_support": { "name": "contact_support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_border": { "name": "bookmark_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_right": { "name": "arrow_circle_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "track_changes": { "name": "track_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "accessible_forward": { "name": "accessible_forward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_left": { "name": "join_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified": { "name": "verified", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "android": { "name": "android", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "note_add": { "name": "note_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "restore": { "name": "restore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_blocking": { "name": "app_blocking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gif_box": { "name": "gif_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "accessibility_new": { "name": "accessibility_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "reorder": { "name": "reorder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_turned_in": { "name": "assignment_turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_seat": { "name": "event_seat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_today": { "name": "calendar_today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart": { "name": "shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_button": { "name": "smart_button", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_composite": { "name": "settings_input_composite", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up": { "name": "thumb_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "ads_click": { "name": "ads_click", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "verified_user": { "name": "verified_user", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_membership": { "name": "card_membership", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_overscan": { "name": "settings_overscan", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "zoom_in": { "name": "zoom_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "code": { "name": "code", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_right": { "name": "join_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_task": { "name": "add_task", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_in_ar": { "name": "view_in_ar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_identity": { "name": "perm_identity", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "install_mobile": { "name": "install_mobile", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "turned_in": { "name": "turned_in", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_medium": { "name": "density_medium", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rocket": { "name": "rocket", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_end": { "name": "pin_end", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "check_circle_outline": { "name": "check_circle_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_data_setting": { "name": "perm_data_setting", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_phone_msg": { "name": "perm_phone_msg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "http": { "name": "http", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_right_alt": { "name": "swipe_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_out": { "name": "all_out", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "exit_to_app": { "name": "exit_to_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "repartition": { "name": "repartition", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "euro_symbol": { "name": "euro_symbol", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "maximize": { "name": "maximize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flight_land": { "name": "flight_land", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "record_voice_over": { "name": "record_voice_over", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "login": { "name": "login", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_reset": { "name": "lock_reset", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "source": { "name": "source", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tips_and_updates": { "name": "tips_and_updates", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_center": { "name": "help_center", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "eject": { "name": "eject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_column": { "name": "view_column", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_box": { "name": "account_box", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fax": { "name": "fax", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schedule": { "name": "schedule", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "tab": { "name": "tab", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_ind": { "name": "assignment_ind", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "important_devices": { "name": "important_devices", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "face": { "name": "face", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sensors": { "name": "sensors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "commit": { "name": "commit", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "list": { "name": "list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_stream": { "name": "view_stream", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_left": { "name": "swipe_left", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_right": { "name": "swipe_right", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_full": { "name": "width_full", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pin_invoke": { "name": "pin_invoke", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "expand": { "name": "expand", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors": { "name": "invert_colors", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "batch_prediction": { "name": "batch_prediction", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_aware": { "name": "noise_aware", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "eco": { "name": "eco", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_open": { "name": "lock_open", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_remove": { "name": "bookmark_remove", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assignment_late": { "name": "assignment_late", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "upgrade": { "name": "upgrade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rowing": { "name": "rowing", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "outbound": { "name": "outbound", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_cell": { "name": "settings_cell", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_device_information": { "name": "perm_device_information", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sync_alt": { "name": "sync_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_browser": { "name": "open_in_browser", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "feedback": { "name": "feedback", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shop": { "name": "shop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_shopping_cart": { "name": "add_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spatial_tracking": { "name": "spatial_tracking", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "help_outline": { "name": "help_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book": { "name": "book", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "launch": { "name": "launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_quilt": { "name": "view_quilt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "support": { "name": "support", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_accounts": { "name": "no_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_day": { "name": "calendar_view_day", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture_alt": { "name": "picture_in_picture_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_off": { "name": "work_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "https": { "name": "https", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility_off": { "name": "visibility_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_timeline": { "name": "view_timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_done": { "name": "remove_done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pageview": { "name": "pageview", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info_outline": { "name": "info_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "switch_access_shortcut_add": { "name": "switch_access_shortcut_add", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hotel_class": { "name": "hotel_class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hourglass_disabled": { "name": "hourglass_disabled", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_split": { "name": "horizontal_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "picture_in_picture": { "name": "picture_in_picture", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grade": { "name": "grade", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_right_alt": { "name": "arrow_right_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "webhook": { "name": "webhook", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb": { "name": "lightbulb", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_history": { "name": "work_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lightbulb_outline": { "name": "lightbulb_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "close_fullscreen": { "name": "close_fullscreen", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_translate": { "name": "g_translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_work": { "name": "group_work", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "book_online": { "name": "book_online", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "published_with_changes": { "name": "published_with_changes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pets": { "name": "pets", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_pin": { "name": "offline_pin", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_toggle_off": { "name": "history_toggle_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_normal": { "name": "width_normal", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "new_label": { "name": "new_label", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_headline": { "name": "view_headline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "send_and_archive": { "name": "send_and_archive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_unlock": { "name": "face_unlock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "flutter_dash": { "name": "flutter_dash", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "speaker_notes_off": { "name": "speaker_notes_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_forever": { "name": "delete_forever", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_cart_checkout": { "name": "shopping_cart_checkout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "integration_instructions": { "name": "integration_instructions", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "transcribe": { "name": "transcribe", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "power_settings_new": { "name": "power_settings_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_empty": { "name": "hourglass_empty", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "translate": { "name": "translate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_down": { "name": "thumb_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "label_off": { "name": "label_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "star_rate": { "name": "star_rate", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "18": { "width": 18, "path": "" } } }, "view_module": { "name": "view_module", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "free_cancellation": { "name": "free_cancellation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "filter_alt": { "name": "filter_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card_off": { "name": "credit_card_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "on_device_training": { "name": "on_device_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "date_range": { "name": "date_range", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_circle_up": { "name": "arrow_circle_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "space_dashboard": { "name": "space_dashboard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subtitles_off": { "name": "subtitles_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gif": { "name": "gif", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horizontal_circle": { "name": "swap_horizontal_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_hdmi": { "name": "settings_input_hdmi", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_by_default": { "name": "disabled_by_default", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_page": { "name": "contact_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_large": { "name": "donut_large", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_list": { "name": "view_list", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "update": { "name": "update", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_down": { "name": "swipe_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_access_shortcut": { "name": "switch_access_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "aspect_ratio": { "name": "aspect_ratio", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_notes": { "name": "speaker_notes", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "card_giftcard": { "name": "card_giftcard", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_alt": { "name": "highlight_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swipe_up": { "name": "swipe_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_back": { "name": "flip_to_back", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "spellcheck": { "name": "spellcheck", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "event_repeat": { "name": "event_repeat", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swap_vertical_circle": { "name": "swap_vertical_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "troubleshoot": { "name": "troubleshoot", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_protected_setup": { "name": "wifi_protected_setup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "view_cozy": { "name": "view_cozy", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "build_circle": { "name": "build_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unfold_less_double": { "name": "unfold_less_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shop_two": { "name": "shop_two", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "extension": { "name": "extension", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_horiz": { "name": "swap_horiz", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervised_user_circle": { "name": "supervised_user_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore_off": { "name": "explore_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_down": { "name": "trending_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "segment": { "name": "segment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toc": { "name": "toc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "join_inner": { "name": "join_inner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "lock_clock": { "name": "lock_clock", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "analytics": { "name": "analytics", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "task_alt": { "name": "task_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_up": { "name": "text_rotate_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "offline_bolt": { "name": "offline_bolt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "output": { "name": "output", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "all_inbox": { "name": "all_inbox", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "home": { "name": "home", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "density_small": { "name": "density_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "abc": { "name": "abc", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "install_desktop": { "name": "install_desktop", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "alarm_on": { "name": "alarm_on", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete": { "name": "delete", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_agenda": { "name": "view_agenda", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "autorenew": { "name": "autorenew", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotation_angledown": { "name": "text_rotation_angledown", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_shortcut": { "name": "app_shortcut", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "circle_notifications": { "name": "circle_notifications", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "gavel": { "name": "gavel", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "minimize": { "name": "minimize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_array": { "name": "view_array", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dangerous": { "name": "dangerous", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "edit_calendar": { "name": "edit_calendar", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "event": { "name": "event", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "not_accessible": { "name": "not_accessible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wysiwyg": { "name": "wysiwyg", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "grading": { "name": "grading", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "model_training": { "name": "model_training", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "satellite_alt": { "name": "satellite_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cached": { "name": "cached", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "explore": { "name": "explore", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "info": { "name": "info", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "fact_check": { "name": "fact_check", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_with": { "name": "open_with", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_split": { "name": "vertical_split", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "anchor": { "name": "anchor", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls_off": { "name": "hls_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "not_started": { "name": "not_started", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "favorite_border": { "name": "favorite_border", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "build": { "name": "build", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "hls": { "name": "hls", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "print": { "name": "print", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "perm_camera_mic": { "name": "perm_camera_mic", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bug_report": { "name": "bug_report", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "bookmark_added": { "name": "bookmark_added", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumbs_up_down": { "name": "thumbs_up_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "unfold_more_double": { "name": "unfold_more_double", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "logout": { "name": "logout", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_accounts": { "name": "manage_accounts", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "payment": { "name": "payment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rocket_launch": { "name": "rocket_launch", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_weight": { "name": "line_weight", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "voice_over_off": { "name": "voice_over_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "highlight_off": { "name": "highlight_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_thresholding": { "name": "data_thresholding", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flip_to_front": { "name": "flip_to_front", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "today": { "name": "today", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "visibility": { "name": "visibility", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_as_unread": { "name": "mark_as_unread", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "restore_page": { "name": "restore_page", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_mark": { "name": "question_mark", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comment_bank": { "name": "comment_bank", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "input": { "name": "input", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_remote": { "name": "settings_remote", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "disabled_visible": { "name": "disabled_visible", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "delete_outline": { "name": "delete_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_rotate_vertical": { "name": "text_rotate_vertical", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "shopping_bag": { "name": "shopping_bag", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "receipt": { "name": "receipt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "question_answer": { "name": "question_answer", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "toll": { "name": "toll", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_antenna": { "name": "settings_input_antenna", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "try": { "name": "try", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "rounded_corner": { "name": "rounded_corner", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "touch_app": { "name": "touch_app", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_drive": { "name": "add_to_drive", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dashboard_customize": { "name": "dashboard_customize", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "done": { "name": "done", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "php": { "name": "php", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_rotation_none": { "name": "text_rotation_none", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "admin_panel_settings": { "name": "admin_panel_settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "backup": { "name": "backup", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "arrow_outward": { "name": "arrow_outward", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "noise_control_off": { "name": "noise_control_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "query_builder": { "name": "query_builder", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_power": { "name": "settings_power", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "work_outline": { "name": "work_outline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_week": { "name": "calendar_view_week", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_brightness": { "name": "settings_brightness", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance_wallet": { "name": "account_balance_wallet", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "commute": { "name": "commute", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings": { "name": "settings", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "subject": { "name": "subject", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "compare_arrows": { "name": "compare_arrows", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assessment": { "name": "assessment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "language": { "name": "language", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pregnant_woman": { "name": "pregnant_woman", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_card": { "name": "credit_card", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_voice": { "name": "settings_voice", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_vert": { "name": "swap_vert", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "html": { "name": "html", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "line_style": { "name": "line_style", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "pan_tool_alt": { "name": "pan_tool_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "description": { "name": "description", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_present": { "name": "file_present", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "stars": { "name": "stars", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment": { "name": "assignment", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "camera_enhance": { "name": "camera_enhance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "thumb_up_off_alt": { "name": "thumb_up_off_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "sticky_note_2": { "name": "sticky_note_2", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "manage_history": { "name": "manage_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "announcement": { "name": "announcement", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "calendar_view_month": { "name": "calendar_view_month", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_shopping_cart": { "name": "remove_shopping_cart", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_history": { "name": "change_history", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "drag_indicator": { "name": "drag_indicator", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "privacy_tip": { "name": "privacy_tip", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "account_circle": { "name": "account_circle", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chrome_reader_mode": { "name": "chrome_reader_mode", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_ping": { "name": "network_ping", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "perm_media": { "name": "perm_media", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "timeline": { "name": "timeline", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "search_off": { "name": "search_off", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "swipe_up_alt": { "name": "swipe_up_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "123": { "name": "123", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "open_in_new": { "name": "open_in_new", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "assignment_returned": { "name": "assignment_returned", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_phone": { "name": "settings_phone", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "account_balance": { "name": "account_balance", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "view_compact_alt": { "name": "view_compact_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dns": { "name": "dns", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "mediation": { "name": "mediation", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "donut_small": { "name": "donut_small", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "redeem": { "name": "redeem", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "turned_in_not": { "name": "turned_in_not", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_update_alt": { "name": "system_update_alt", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "class": { "name": "class", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "trending_up": { "name": "trending_up", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_input_svideo": { "name": "settings_input_svideo", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "supervisor_account": { "name": "supervisor_account", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" } } }, "lock_person": { "name": "lock_person", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "arrow_circle_down": { "name": "arrow_circle_down", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "width_wide": { "name": "width_wide", "keywords": [ "action" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "desktop_mac": { "name": "desktop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_chromebook": { "name": "laptop_chromebook", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_down": { "name": "keyboard_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "mouse": { "name": "mouse", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_command_key": { "name": "keyboard_command_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_left": { "name": "keyboard_double_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_option_key": { "name": "keyboard_option_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_return": { "name": "keyboard_return", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_alt": { "name": "keyboard_alt", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "cast_for_education": { "name": "cast_for_education", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink": { "name": "phonelink", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_updated": { "name": "browser_updated", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "earbuds_battery": { "name": "earbuds_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board_off": { "name": "developer_board_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "start": { "name": "start", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "headset": { "name": "headset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset": { "name": "videogame_asset", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor": { "name": "monitor", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_right": { "name": "keyboard_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "scanner": { "name": "scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch": { "name": "watch", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_board": { "name": "developer_board", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_iphone": { "name": "phone_iphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_android": { "name": "tablet_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet_mac": { "name": "tablet_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "router": { "name": "router", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones_battery": { "name": "headphones_battery", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_backspace": { "name": "keyboard_backspace", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_toy": { "name": "smart_toy", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "gamepad": { "name": "gamepad", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "adf_scanner": { "name": "adf_scanner", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "laptop_mac": { "name": "laptop_mac", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "browser_not_supported": { "name": "browser_not_supported", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast_connected": { "name": "cast_connected", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tv": { "name": "tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop_windows": { "name": "laptop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_control_key": { "name": "keyboard_control_key", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "smart_display": { "name": "smart_display", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headphones": { "name": "headphones", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_android": { "name": "phone_android", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_up": { "name": "keyboard_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_max": { "name": "home_max", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smartphone": { "name": "smartphone", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_tab": { "name": "keyboard_tab", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "watch_off": { "name": "watch_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cast": { "name": "cast", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "point_of_sale": { "name": "point_of_sale", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "computer": { "name": "computer", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "device_unknown": { "name": "device_unknown", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "memory": { "name": "memory", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_voice": { "name": "keyboard_voice", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard": { "name": "keyboard", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "earbuds": { "name": "earbuds", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "security": { "name": "security", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_hide": { "name": "keyboard_hide", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "power_input": { "name": "power_input", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "home_mini": { "name": "home_mini", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_other": { "name": "devices_other", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_mic": { "name": "headset_mic", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "videogame_asset_off": { "name": "videogame_asset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dock": { "name": "dock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_capslock": { "name": "keyboard_capslock", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "headset_off": { "name": "headset_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_right": { "name": "keyboard_double_arrow_right", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_off": { "name": "phonelink_off", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card": { "name": "sim_card", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_arrow_left": { "name": "keyboard_arrow_left", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "keyboard_double_arrow_up": { "name": "keyboard_double_arrow_up", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "toys": { "name": "toys", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "keyboard_double_arrow_down": { "name": "keyboard_double_arrow_down", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_hub": { "name": "device_hub", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_group": { "name": "speaker_group", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_windows": { "name": "desktop_windows", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "connected_tv": { "name": "connected_tv", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "tablet": { "name": "tablet", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "laptop": { "name": "laptop", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker": { "name": "speaker", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "smart_screen": { "name": "smart_screen", "keywords": [ "hardware" ], "heights": { "24": { "width": 24, "path": "" } } }, "portable_wifi_off": { "name": "portable_wifi_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "textsms": { "name": "textsms", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_split": { "name": "call_split", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_export": { "name": "import_export", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone": { "name": "phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "3p": { "name": "3p", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "clear_all": { "name": "clear_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "dialpad": { "name": "dialpad", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat": { "name": "chat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_search": { "name": "person_search", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "comments_disabled": { "name": "comments_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key": { "name": "vpn_key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "unsubscribe": { "name": "unsubscribe", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_setup": { "name": "phonelink_setup", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "live_help": { "name": "live_help", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "present_to_all": { "name": "present_to_all", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call": { "name": "call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "domain_disabled": { "name": "domain_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_portrait": { "name": "stay_current_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "desktop_access_disabled": { "name": "desktop_access_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_share": { "name": "screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "speaker_phone": { "name": "speaker_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_unread": { "name": "mark_email_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nat": { "name": "nat", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "phonelink_ring": { "name": "phonelink_ring", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_email_read": { "name": "mark_email_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "email": { "name": "email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "print_disabled": { "name": "print_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mark_chat_read": { "name": "mark_chat_read", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_made": { "name": "call_made", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_landscape": { "name": "stay_primary_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code": { "name": "qr_code", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_unread_chat_alt": { "name": "mark_unread_chat_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "spoke": { "name": "spoke", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chat_bubble": { "name": "chat_bubble", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "cell_tower": { "name": "cell_tower", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "document_scanner": { "name": "document_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vpn_key_off": { "name": "vpn_key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "contacts": { "name": "contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "list_alt": { "name": "list_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_lock": { "name": "phonelink_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_enabled": { "name": "phone_enabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "co_present": { "name": "co_present", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_verification": { "name": "domain_verification", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied_alt": { "name": "sentiment_satisfied_alt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phone_disabled": { "name": "phone_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_ic_call": { "name": "add_ic_call", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_on": { "name": "location_on", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_disabled": { "name": "person_add_disabled", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "business": { "name": "business", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_end": { "name": "call_end", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "qr_code_scanner": { "name": "qr_code_scanner", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "phonelink_erase": { "name": "phonelink_erase", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed": { "name": "call_missed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "app_registration": { "name": "app_registration", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hub": { "name": "hub", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pause_presentation": { "name": "pause_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stop_screen_share": { "name": "stop_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "sip": { "name": "sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_lock": { "name": "mail_lock", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "call_merge": { "name": "call_merge", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_bottom": { "name": "hourglass_bottom", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dialer_sip": { "name": "dialer_sip", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "comment": { "name": "comment", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_received": { "name": "call_received", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling": { "name": "wifi_calling", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forum": { "name": "forum", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "rtt": { "name": "rtt", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "forward_to_inbox": { "name": "forward_to_inbox", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_time_extension": { "name": "send_time_extension", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cancel_presentation": { "name": "cancel_presentation", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_mail": { "name": "contact_mail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "chat_bubble_outline": { "name": "chat_bubble_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_phone": { "name": "contact_phone", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_off": { "name": "location_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "call_missed_outgoing": { "name": "call_missed_outgoing", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "contact_emergency": { "name": "contact_emergency", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "duo": { "name": "duo", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_primary_portrait": { "name": "stay_primary_portrait", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_sim": { "name": "no_sim", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "message": { "name": "message", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "read_more": { "name": "read_more", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "rss_feed": { "name": "rss_feed", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "swap_calls": { "name": "swap_calls", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "hourglass_top": { "name": "hourglass_top", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "voicemail": { "name": "voicemail", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "stay_current_landscape": { "name": "stay_current_landscape", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mail_outline": { "name": "mail_outline", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "ring_volume": { "name": "ring_volume", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "invert_colors_off": { "name": "invert_colors_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cell_wifi": { "name": "cell_wifi", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_screen_share": { "name": "mobile_screen_share", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "import_contacts": { "name": "import_contacts", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "alternate_email": { "name": "alternate_email", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "key_off": { "name": "key_off", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mark_chat_unread": { "name": "mark_chat_unread", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "key": { "name": "key", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "qr_code_2": { "name": "qr_code_2", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" } } }, "more_time": { "name": "more_time", "keywords": [ "communication" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grass": { "name": "grass", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bento": { "name": "bento", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "backpack": { "name": "backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "other_houses": { "name": "other_houses", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "iron": { "name": "iron", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "escalator_warning": { "name": "escalator_warning", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cottage": { "name": "cottage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "golf_course": { "name": "golf_course", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_touch": { "name": "do_not_touch", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cabin": { "name": "cabin", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_photography": { "name": "no_photography", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vaping_rooms": { "name": "vaping_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "room_preferences": { "name": "room_preferences", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "fitness_center": { "name": "fitness_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_drinks": { "name": "no_drinks", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bathtub": { "name": "bathtub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hot_tub": { "name": "hot_tub", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "night_shelter": { "name": "night_shelter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "desk": { "name": "desk", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wash": { "name": "wash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_friendly": { "name": "child_friendly", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "soap": { "name": "soap", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoke_free": { "name": "smoke_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "kitchen": { "name": "kitchen", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stroller": { "name": "stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "crib": { "name": "crib", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "umbrella": { "name": "umbrella", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "beach_access": { "name": "beach_access", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "pool": { "name": "pool", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "gite": { "name": "gite", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fire_extinguisher": { "name": "fire_extinguisher", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "smoking_rooms": { "name": "smoking_rooms", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rv_hookup": { "name": "rv_hookup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "all_inclusive": { "name": "all_inclusive", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "family_restroom": { "name": "family_restroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "stairs": { "name": "stairs", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tty": { "name": "tty", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "escalator": { "name": "escalator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_meeting_room": { "name": "no_meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "do_not_step": { "name": "do_not_step", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "water_damage": { "name": "water_damage", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "carpenter": { "name": "carpenter", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "checkroom": { "name": "checkroom", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_flash": { "name": "no_flash", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "meeting_room": { "name": "meeting_room", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "food_bank": { "name": "food_bank", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "tapas": { "name": "tapas", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "roofing": { "name": "roofing", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "storefront": { "name": "storefront", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "room_service": { "name": "room_service", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "balcony": { "name": "balcony", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "countertops": { "name": "countertops", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "foundation": { "name": "foundation", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "holiday_village": { "name": "holiday_village", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "charging_station": { "name": "charging_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "airport_shuttle": { "name": "airport_shuttle", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_food": { "name": "no_food", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "houseboat": { "name": "houseboat", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "elevator": { "name": "elevator", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "ac_unit": { "name": "ac_unit", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "house_siding": { "name": "house_siding", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "child_care": { "name": "child_care", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "business_center": { "name": "business_center", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "rice_bowl": { "name": "rice_bowl", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_backpack": { "name": "no_backpack", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "vape_free": { "name": "vape_free", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "house": { "name": "house", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "baby_changing_station": { "name": "baby_changing_station", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_stroller": { "name": "no_stroller", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "microwave": { "name": "microwave", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "no_cell": { "name": "no_cell", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "wheelchair_pickup": { "name": "wheelchair_pickup", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "casino": { "name": "casino", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "bungalow": { "name": "bungalow", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "chalet": { "name": "chalet", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dry": { "name": "dry", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_bar": { "name": "sports_bar", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "villa": { "name": "villa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "apartment": { "name": "apartment", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fence": { "name": "fence", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "corporate_fare": { "name": "corporate_fare", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "free_breakfast": { "name": "free_breakfast", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "spa": { "name": "spa", "keywords": [ "places" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_done": { "name": "cloud_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "downloading": { "name": "downloading", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "request_quote": { "name": "request_quote", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_rename_outline": { "name": "drive_file_rename_outline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_zip": { "name": "folder_zip", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_circle": { "name": "cloud_circle", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "rule_folder": { "name": "rule_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder": { "name": "folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload_file": { "name": "upload_file", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_overline": { "name": "format_overline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_delete": { "name": "folder_delete", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drive_file_move": { "name": "drive_file_move", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_file_move_rtl": { "name": "drive_file_move_rtl", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_download": { "name": "cloud_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_upload": { "name": "cloud_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attachment": { "name": "attachment", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "newspaper": { "name": "newspaper", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "create_new_folder": { "name": "create_new_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud": { "name": "cloud", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_snippet": { "name": "text_snippet", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download": { "name": "file_download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_copy": { "name": "folder_copy", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "difference": { "name": "difference", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cloud_off": { "name": "cloud_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_sync": { "name": "cloud_sync", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_off": { "name": "folder_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_download_done": { "name": "file_download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "cloud_queue": { "name": "cloud_queue", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "upload": { "name": "upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_view": { "name": "grid_view", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "folder_shared": { "name": "folder_shared", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download_done": { "name": "download_done", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "topic": { "name": "topic", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "drive_folder_upload": { "name": "drive_folder_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspaces": { "name": "workspaces", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "download_for_offline": { "name": "download_for_offline", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_email": { "name": "attach_email", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "folder_open": { "name": "folder_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_download_off": { "name": "file_download_off", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "approval": { "name": "approval", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "download": { "name": "download", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_open": { "name": "file_open", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "file_upload": { "name": "file_upload", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "snippet_folder": { "name": "snippet_folder", "keywords": [ "file" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_full": { "name": "battery_charging_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "note_alt": { "name": "note_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_wifi": { "name": "network_wifi", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_medium": { "name": "brightness_medium", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_low": { "name": "brightness_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_usage": { "name": "data_usage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_off": { "name": "data_saver_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_20": { "name": "battery_20", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "share_location": { "name": "share_location", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_not_fixed": { "name": "gps_not_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_high": { "name": "edgesensor_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth": { "name": "bluetooth", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_3": { "name": "signal_wifi_statusbar_connected_no_internet_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "shortcut": { "name": "shortcut", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_std": { "name": "battery_std", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_1_bar": { "name": "signal_cellular_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_score": { "name": "sports_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarm": { "name": "access_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_4": { "name": "signal_wifi_statusbar_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_0_bar": { "name": "signal_cellular_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_1_bar": { "name": "signal_cellular_connected_no_internet_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "restart_alt": { "name": "restart_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_2_bar": { "name": "wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "grid_goldenratio": { "name": "grid_goldenratio", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error_rounded": { "name": "wifi_tethering_error_rounded", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "price_change": { "name": "price_change", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_30": { "name": "battery_charging_30", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_portrait": { "name": "screen_lock_portrait", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_4_bar": { "name": "signal_cellular_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_2": { "name": "wifi_calling_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_active": { "name": "airplanemode_active", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "price_check": { "name": "price_check", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt": { "name": "signal_cellular_alt", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "monitor_weight": { "name": "monitor_weight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "tungsten": { "name": "tungsten", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto": { "name": "hdr_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dvr": { "name": "dvr", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_90": { "name": "battery_90", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices_fold": { "name": "devices_fold", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_night": { "name": "mode_night", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cameraswitch": { "name": "cameraswitch", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_2": { "name": "signal_wifi_connected_no_internet_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_2_bar": { "name": "battery_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_cellular_alt_1_bar": { "name": "signal_cellular_alt_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "punch_clock": { "name": "punch_clock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "e_mobiledata": { "name": "e_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storage": { "name": "storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pin": { "name": "pin", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar_lock": { "name": "signal_wifi_4_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_standby": { "name": "mode_standby", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_80": { "name": "battery_charging_80", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "network_cell": { "name": "network_cell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "60fps": { "name": "60fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_3x3": { "name": "grid_3x3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication_liquid": { "name": "medication_liquid", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "device_thermostat": { "name": "device_thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_rotation": { "name": "screen_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_rotation": { "name": "screen_lock_rotation", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "location_searching": { "name": "location_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_off": { "name": "flashlight_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "g_mobiledata": { "name": "g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_4_bar": { "name": "signal_cellular_connected_no_internet_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_connected_no_internet_0": { "name": "signal_wifi_connected_no_internet_0", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "pattern": { "name": "pattern", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_searching": { "name": "bluetooth_searching", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot_monitor": { "name": "screenshot_monitor", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "quiz": { "name": "quiz", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "air": { "name": "air", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "phishing": { "name": "phishing", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "summarize": { "name": "summarize", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "password": { "name": "password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_4": { "name": "signal_wifi_connected_no_internet_4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nfc": { "name": "nfc", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_1_bar": { "name": "battery_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reviews": { "name": "reviews", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_1": { "name": "signal_wifi_statusbar_connected_no_internet_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_good": { "name": "gpp_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "edgesensor_low": { "name": "edgesensor_low", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "macro_off": { "name": "macro_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hdr_off_select": { "name": "hdr_off_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screenshot": { "name": "screenshot", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_suggest": { "name": "settings_suggest", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_error": { "name": "nearby_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "light_mode": { "name": "light_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_2_bar": { "name": "network_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_alarm": { "name": "add_alarm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sell": { "name": "sell", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "credit_score": { "name": "credit_score", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_plus_mobiledata": { "name": "lte_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_80": { "name": "battery_80", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_50": { "name": "battery_50", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_off": { "name": "gps_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gps_fixed": { "name": "gps_fixed", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_lock_landscape": { "name": "screen_lock_landscape", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_mobiledata": { "name": "h_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering": { "name": "wifi_tethering", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_friendly": { "name": "mobile_friendly", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobile_off": { "name": "mobile_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_alarms": { "name": "access_alarms", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "3g_mobiledata": { "name": "3g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_auto_select": { "name": "hdr_auto_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_3_bar_lock": { "name": "signal_wifi_3_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_4_bar": { "name": "signal_wifi_statusbar_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "settings_system_daydream": { "name": "settings_system_daydream", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_bad": { "name": "gpp_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_off": { "name": "media_bluetooth_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_disabled": { "name": "bluetooth_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_4_bar": { "name": "battery_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_3_bar": { "name": "network_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "network_wifi_1_bar": { "name": "network_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "ad_units": { "name": "ad_units", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "30fps": { "name": "30fps", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "task": { "name": "task", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_warning": { "name": "security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "medication": { "name": "medication", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "thermostat": { "name": "thermostat", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dark_mode": { "name": "dark_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_1_bar": { "name": "wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fluorescent": { "name": "fluorescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_60": { "name": "battery_charging_60", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_10_select": { "name": "timer_10_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_null": { "name": "signal_cellular_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_3_bar": { "name": "signal_cellular_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_saver": { "name": "battery_saver", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "hdr_on_select": { "name": "hdr_on_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_bad": { "name": "signal_wifi_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bloodtype": { "name": "bloodtype", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_saver_on": { "name": "data_saver_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update_good": { "name": "security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_off": { "name": "signal_cellular_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_1": { "name": "wifi_calling_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "developer_mode": { "name": "developer_mode", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "devices": { "name": "devices", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "security_update": { "name": "security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flourescent": { "name": "flourescent", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "airplanemode_inactive": { "name": "airplanemode_inactive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "4g_plus_mobiledata": { "name": "4g_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "rsvp": { "name": "rsvp", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lte_mobiledata": { "name": "lte_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "cable": { "name": "cable", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wallpaper": { "name": "wallpaper", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_high": { "name": "brightness_high", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "remember_me": { "name": "remember_me", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_2_bar": { "name": "signal_cellular_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "splitscreen": { "name": "splitscreen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "play_lesson": { "name": "play_lesson", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_2_bar": { "name": "signal_wifi_statusbar_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_calling_3": { "name": "wifi_calling_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb_off": { "name": "usb_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_0_bar": { "name": "signal_wifi_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_50": { "name": "battery_charging_50", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lan": { "name": "lan", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "monitor_heart": { "name": "monitor_heart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "do_not_disturb_on_total_silence": { "name": "do_not_disturb_on_total_silence", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_alert": { "name": "battery_alert", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_1": { "name": "signal_wifi_connected_no_internet_1", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_2_bar_lock": { "name": "signal_wifi_2_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "1x_mobiledata": { "name": "1x_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "aod": { "name": "aod", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_0_bar": { "name": "signal_cellular_connected_no_internet_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_disabled": { "name": "location_disabled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "flashlight_on": { "name": "flashlight_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "media_bluetooth_on": { "name": "media_bluetooth_on", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sd_storage": { "name": "sd_storage", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_30": { "name": "battery_30", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_6_bar": { "name": "battery_6_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_full": { "name": "battery_full", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_90": { "name": "battery_charging_90", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_nodata": { "name": "signal_cellular_nodata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_password": { "name": "wifi_password", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "access_time_filled": { "name": "access_time_filled", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "gpp_maybe": { "name": "gpp_maybe", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_2_bar": { "name": "signal_wifi_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "ssid_chart": { "name": "ssid_chart", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "widgets": { "name": "widgets", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nearby_off": { "name": "nearby_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_3_bar": { "name": "signal_wifi_statusbar_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_connected_no_internet_3": { "name": "signal_wifi_connected_no_internet_3", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_error": { "name": "wifi_tethering_error", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wifi_channel": { "name": "wifi_channel", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reset_tv": { "name": "reset_tv", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_charging_20": { "name": "battery_charging_20", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "access_time": { "name": "access_time", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "nightlight": { "name": "nightlight", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_alt_2_bar": { "name": "signal_cellular_alt_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_1_bar": { "name": "signal_wifi_statusbar_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_0_bar": { "name": "battery_0_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_not_connected": { "name": "signal_wifi_statusbar_not_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_lock": { "name": "wifi_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "signal_wifi_statusbar_null": { "name": "signal_wifi_statusbar_null", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_tethering_off": { "name": "wifi_tethering_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "usb": { "name": "usb", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "timer_3_select": { "name": "timer_3_select", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_3_bar": { "name": "signal_cellular_connected_no_internet_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "water": { "name": "water", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "sim_card_download": { "name": "sim_card_download", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_no_sim": { "name": "signal_cellular_no_sim", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_bad": { "name": "fmd_bad", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update_warning": { "name": "system_security_update_warning", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "dataset": { "name": "dataset", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_5_bar": { "name": "battery_5_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dataset_linked": { "name": "dataset_linked", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "send_to_mobile": { "name": "send_to_mobile", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "mobiledata_off": { "name": "mobiledata_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_unknown": { "name": "battery_unknown", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "storm": { "name": "storm", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_cellular_connected_no_internet_2_bar": { "name": "signal_cellular_connected_no_internet_2_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "h_plus_mobiledata": { "name": "h_plus_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "system_security_update": { "name": "system_security_update", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "lens_blur": { "name": "lens_blur", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_connected": { "name": "bluetooth_connected", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "bluetooth_drive": { "name": "bluetooth_drive", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "brightness_auto": { "name": "brightness_auto", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "fmd_good": { "name": "fmd_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "battery_60": { "name": "battery_60", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "4g_mobiledata": { "name": "4g_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "wifi_find": { "name": "wifi_find", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "battery_3_bar": { "name": "battery_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "airplane_ticket": { "name": "airplane_ticket", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_1_bar": { "name": "signal_wifi_1_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_3_bar": { "name": "signal_wifi_3_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_4_bar": { "name": "signal_wifi_4_bar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_to_home_screen": { "name": "add_to_home_screen", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "screen_search_desktop": { "name": "screen_search_desktop", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "discount": { "name": "discount", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "system_security_update_good": { "name": "system_security_update_good", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "grid_4x4": { "name": "grid_4x4", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "r_mobiledata": { "name": "r_mobiledata", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet_2": { "name": "signal_wifi_statusbar_connected_no_internet_2", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_statusbar_connected_no_internet": { "name": "signal_wifi_statusbar_connected_no_internet", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "graphic_eq": { "name": "graphic_eq", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "radar": { "name": "radar", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_1_bar_lock": { "name": "signal_wifi_1_bar_lock", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "signal_wifi_off": { "name": "signal_wifi_off", "keywords": [ "device" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_delete": { "name": "auto_delete", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "error_outline": { "name": "error_outline", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "notification_important": { "name": "notification_important", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_alert": { "name": "add_alert", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning": { "name": "warning", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "error": { "name": "error", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "warning_amber": { "name": "warning_amber", "keywords": [ "alert" ], "heights": { "24": { "width": 24, "path": "" } } }, "broadcast_on_home": { "name": "broadcast_on_home", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wind_power": { "name": "wind_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heat_pump": { "name": "heat_pump", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains_closed": { "name": "curtains_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane_tank": { "name": "propane_tank", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades_closed": { "name": "vertical_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_shades": { "name": "vertical_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield_moon": { "name": "shield_moon", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "broadcast_on_personal": { "name": "broadcast_on_personal", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "nest_cam_wired_stand": { "name": "nest_cam_wired_stand", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_window": { "name": "sensor_window", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds": { "name": "blinds", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "gas_meter": { "name": "gas_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "solar_power": { "name": "solar_power", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "curtains": { "name": "curtains", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_occupied": { "name": "sensor_occupied", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades_closed": { "name": "roller_shades_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "oil_barrel": { "name": "oil_barrel", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "energy_savings_leaf": { "name": "energy_savings_leaf", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_bolt": { "name": "electric_bolt", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "propane": { "name": "propane", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "electric_meter": { "name": "electric_meter", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "blinds_closed": { "name": "blinds_closed", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "roller_shades": { "name": "roller_shades", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_fan_off": { "name": "mode_fan_off", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "auto_mode": { "name": "auto_mode", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sensor_door": { "name": "sensor_door", "keywords": [ "home" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hiking": { "name": "hiking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "single_bed": { "name": "single_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_outline": { "name": "person_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "man": { "name": "man", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "male": { "name": "male", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "psychology_alt": { "name": "psychology_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tsunami": { "name": "tsunami", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pages": { "name": "pages", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "roller_skating": { "name": "roller_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano": { "name": "piano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scale": { "name": "scale", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "masks": { "name": "masks", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_symbols": { "name": "emoji_symbols", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_outline": { "name": "people_outline", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "back_hand": { "name": "back_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatshot": { "name": "whatshot", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "diversity_3": { "name": "diversity_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "hive": { "name": "hive", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_esports": { "name": "sports_esports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "precision_manufacturing": { "name": "precision_manufacturing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "real_estate_agent": { "name": "real_estate_agent", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cruelty_free": { "name": "cruelty_free", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_flags": { "name": "emoji_flags", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "follow_the_signs": { "name": "follow_the_signs", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly_woman": { "name": "elderly_woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "safety_divider": { "name": "safety_divider", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt": { "name": "person_add_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people_alt": { "name": "people_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "kitesurfing": { "name": "kitesurfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "waving_hand": { "name": "waving_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "woman": { "name": "woman", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scuba_diving": { "name": "scuba_diving", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person": { "name": "person", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "fireplace": { "name": "fireplace", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "deck": { "name": "deck", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "boy": { "name": "boy", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "switch_account": { "name": "switch_account", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "woman_2": { "name": "woman_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_3": { "name": "man_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notification_add": { "name": "notification_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "luggage": { "name": "luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_golf": { "name": "sports_golf", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sentiment_satisfied": { "name": "sentiment_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "transgender": { "name": "transgender", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "heart_broken": { "name": "heart_broken", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "landslide": { "name": "landslide", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_active": { "name": "notifications_active", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "skateboarding": { "name": "skateboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "handshake": { "name": "handshake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain": { "name": "domain", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_martial_arts": { "name": "sports_martial_arts", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_2": { "name": "person_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "co2": { "name": "co2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_hockey": { "name": "sports_hockey", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "tornado": { "name": "tornado", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "fitbit": { "name": "fitbit", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_rugby": { "name": "sports_rugby", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "female": { "name": "female", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_basketball": { "name": "sports_basketball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove": { "name": "person_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "military_tech": { "name": "military_tech", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recycling": { "name": "recycling", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "king_bed": { "name": "king_bed", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group": { "name": "group", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "elderly": { "name": "elderly", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_2": { "name": "face_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "assist_walker": { "name": "assist_walker", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_reaction": { "name": "add_reaction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "travel_explore": { "name": "travel_explore", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_off": { "name": "notifications_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_gymnastics": { "name": "sports_gymnastics", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "6_ft_apart": { "name": "6_ft_apart", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "plus_one": { "name": "plus_one", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "group_remove": { "name": "group_remove", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "construction": { "name": "construction", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood_bad": { "name": "mood_bad", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ice_skating": { "name": "ice_skating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_5": { "name": "face_5", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wallet": { "name": "wallet", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "paragliding": { "name": "paragliding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_adult_content": { "name": "no_adult_content", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "flood": { "name": "flood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "people": { "name": "people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "face_6": { "name": "face_6", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "party_mode": { "name": "party_mode", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "workspace_premium": { "name": "workspace_premium", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_moderator": { "name": "add_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_events": { "name": "emoji_events", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "pix": { "name": "pix", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowshoeing": { "name": "snowshoeing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "outdoor_grill": { "name": "outdoor_grill", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_4": { "name": "man_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_moderator": { "name": "remove_moderator", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "reduce_capacity": { "name": "reduce_capacity", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nordic_walking": { "name": "nordic_walking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "interests": { "name": "interests", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_add": { "name": "group_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sanitizer": { "name": "sanitizer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_dissatisfied": { "name": "sentiment_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "cyclone": { "name": "cyclone", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "health_and_safety": { "name": "health_and_safety", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "nights_stay": { "name": "nights_stay", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "snowboarding": { "name": "snowboarding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "whatsapp": { "name": "whatsapp", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_food_beverage": { "name": "emoji_food_beverage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_3": { "name": "person_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "piano_off": { "name": "piano_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "no_luggage": { "name": "no_luggage", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "history_edu": { "name": "history_edu", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_mma": { "name": "sports_mma", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "social_distance": { "name": "social_distance", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_tennis": { "name": "sports_tennis", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_kabaddi": { "name": "sports_kabaddi", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "group_off": { "name": "group_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "volcano": { "name": "volcano", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sick": { "name": "sick", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "engineering": { "name": "engineering", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_emotions": { "name": "emoji_emotions", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_3": { "name": "face_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports": { "name": "sports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "downhill_skiing": { "name": "downhill_skiing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mood": { "name": "mood", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "thunderstorm": { "name": "thunderstorm", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cake": { "name": "cake", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_satisfied": { "name": "sentiment_very_satisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_nature": { "name": "emoji_nature", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_paused": { "name": "notifications_paused", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_motorsports": { "name": "sports_motorsports", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_soccer": { "name": "sports_soccer", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "water_drop": { "name": "water_drop", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "architecture": { "name": "architecture", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_off": { "name": "person_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups_3": { "name": "groups_3", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_down_alt": { "name": "thumb_down_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sign_language": { "name": "sign_language", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "self_improvement": { "name": "self_improvement", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_2": { "name": "diversity_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "face_4": { "name": "face_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "diversity_1": { "name": "diversity_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "public": { "name": "public", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "blind": { "name": "blind", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "facebook": { "name": "facebook", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_very_dissatisfied": { "name": "sentiment_very_dissatisfied", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sentiment_neutral": { "name": "sentiment_neutral", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "psychology": { "name": "psychology", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "catching_pokemon": { "name": "catching_pokemon", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "notifications_none": { "name": "notifications_none", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_volleyball": { "name": "sports_volleyball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sledding": { "name": "sledding", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vaccines": { "name": "vaccines", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "poll": { "name": "poll", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "kayaking": { "name": "kayaking", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "front_hand": { "name": "front_hand", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_add": { "name": "person_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "notifications": { "name": "notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_notifications": { "name": "edit_notifications", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clean_hands": { "name": "clean_hands", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "groups_2": { "name": "groups_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "location_city": { "name": "location_city", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "ios_share": { "name": "ios_share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_cricket": { "name": "sports_cricket", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "girl": { "name": "girl", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "emoji_objects": { "name": "emoji_objects", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_4": { "name": "person_4", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "scoreboard": { "name": "scoreboard", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "domain_add": { "name": "domain_add", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "thumb_up_alt": { "name": "thumb_up_alt", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "coronavirus": { "name": "coronavirus", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "person_add_alt_1": { "name": "person_add_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "person_remove_alt_1": { "name": "person_remove_alt_1", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "share": { "name": "share", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "surfing": { "name": "surfing", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "connect_without_contact": { "name": "connect_without_contact", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "public_off": { "name": "public_off", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_people": { "name": "emoji_people", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "groups": { "name": "groups", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "severe_cold": { "name": "severe_cold", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "man_2": { "name": "man_2", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "recommend": { "name": "recommend", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "emoji_transportation": { "name": "emoji_transportation", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_baseball": { "name": "sports_baseball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "school": { "name": "school", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" } } }, "sports_handball": { "name": "sports_handball", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "18_up_rating": { "name": "18_up_rating", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "personal_injury": { "name": "personal_injury", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "compost": { "name": "compost", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "south_america": { "name": "south_america", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "science": { "name": "science", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "cookie": { "name": "cookie", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "sports_football": { "name": "sports_football", "keywords": [ "social" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_strikethrough": { "name": "format_strikethrough", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "horizontal_distribute": { "name": "horizontal_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "space_bar": { "name": "space_bar", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_left": { "name": "format_align_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_bottom": { "name": "vertical_align_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "height": { "name": "height", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_right": { "name": "align_horizontal_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_quote": { "name": "format_quote", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "show_chart": { "name": "show_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "numbers": { "name": "numbers", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_bold": { "name": "format_bold", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_distribute": { "name": "vertical_distribute", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_size": { "name": "format_size", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_chart": { "name": "insert_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_list_numbered_rtl": { "name": "format_list_numbered_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_bottom": { "name": "border_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_emoticon": { "name": "insert_emoticon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "hexagon": { "name": "hexagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "type_specimen": { "name": "type_specimen", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_justify": { "name": "format_align_justify", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "padding": { "name": "padding", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_bottom": { "name": "align_vertical_bottom", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "vertical_align_top": { "name": "vertical_align_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_outer": { "name": "border_outer", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off": { "name": "money_off", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "merge_type": { "name": "merge_type", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_chart": { "name": "table_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pentagon": { "name": "pentagon", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "schema": { "name": "schema", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mode_edit_outline": { "name": "mode_edit_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_horizontal_center": { "name": "align_horizontal_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_top": { "name": "border_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_comment": { "name": "mode_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_style": { "name": "border_style", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "polyline": { "name": "polyline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "highlight": { "name": "highlight", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "short_text": { "name": "short_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_clear": { "name": "format_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_decrease": { "name": "text_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "post_add": { "name": "post_add", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_numbered": { "name": "format_list_numbered", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_line_spacing": { "name": "format_line_spacing", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_fields": { "name": "text_fields", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "title": { "name": "title", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "square": { "name": "square", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "bubble_chart": { "name": "bubble_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_left": { "name": "border_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist": { "name": "checklist", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_color": { "name": "border_color", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "checklist_rtl": { "name": "checklist_rtl", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "data_array": { "name": "data_array", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_page_break": { "name": "insert_page_break", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_comment": { "name": "add_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "scatter_plot": { "name": "scatter_plot", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_down": { "name": "move_down", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "wrap_text": { "name": "wrap_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "attach_money": { "name": "attach_money", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_up": { "name": "move_up", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_shapes": { "name": "format_shapes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart": { "name": "pie_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "publish": { "name": "publish", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_italic": { "name": "format_italic", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_reset": { "name": "format_color_reset", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_horizontal_left": { "name": "align_horizontal_left", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_drive_file": { "name": "insert_drive_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_all": { "name": "border_all", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "strikethrough_s": { "name": "strikethrough_s", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_align_center": { "name": "format_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_underlined": { "name": "format_underlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode_edit": { "name": "mode_edit", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "multiline_chart": { "name": "multiline_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "line_axis": { "name": "line_axis", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "drag_handle": { "name": "drag_handle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "superscript": { "name": "superscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_comment": { "name": "insert_comment", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "bar_chart": { "name": "bar_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_photo": { "name": "insert_photo", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_clear": { "name": "border_clear", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_r_to_l": { "name": "format_textdirection_r_to_l", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_horizontal": { "name": "border_horizontal", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_line_chart": { "name": "stacked_line_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_invitation": { "name": "insert_invitation", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "rectangle": { "name": "rectangle", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "subscript": { "name": "subscript", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "horizontal_rule": { "name": "horizontal_rule", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "text_increase": { "name": "text_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "vertical_align_center": { "name": "vertical_align_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "margin": { "name": "margin", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "insert_link": { "name": "insert_link", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "auto_graph": { "name": "auto_graph", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "insert_chart_outlined": { "name": "insert_chart_outlined", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "pie_chart_outline": { "name": "pie_chart_outline", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "money_off_csred": { "name": "money_off_csred", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "edit_note": { "name": "edit_note", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "align_vertical_top": { "name": "align_vertical_top", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "mode": { "name": "mode", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_fill": { "name": "format_color_fill", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_list_bulleted": { "name": "format_list_bulleted", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "linear_scale": { "name": "linear_scale", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_vertical": { "name": "border_vertical", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "functions": { "name": "functions", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "notes": { "name": "notes", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "table_rows": { "name": "table_rows", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "area_chart": { "name": "area_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "border_inner": { "name": "border_inner", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_textdirection_l_to_r": { "name": "format_textdirection_l_to_r", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_chart": { "name": "add_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "border_right": { "name": "border_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "align_vertical_center": { "name": "align_vertical_center", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "candlestick_chart": { "name": "candlestick_chart", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_paint": { "name": "format_paint", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "monetization_on": { "name": "monetization_on", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_increase": { "name": "format_indent_increase", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_color_text": { "name": "format_color_text", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "attach_file": { "name": "attach_file", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "score": { "name": "score", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "format_indent_decrease": { "name": "format_indent_decrease", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "data_object": { "name": "data_object", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "format_align_right": { "name": "format_align_right", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" } } }, "query_stats": { "name": "query_stats", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shape_line": { "name": "shape_line", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "draw": { "name": "draw", "keywords": [ "editor" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "report": { "name": "report", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "calculate": { "name": "calculate", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "mail": { "name": "mail", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add": { "name": "add", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "move_to_inbox": { "name": "move_to_inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste": { "name": "content_paste", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_search": { "name": "content_paste_search", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_circle_outline": { "name": "add_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "stacked_bar_chart": { "name": "stacked_bar_chart", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "add_link": { "name": "add_link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "create": { "name": "create", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag": { "name": "flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "ballot": { "name": "ballot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "tag": { "name": "tag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "reply": { "name": "reply", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "next_week": { "name": "next_week", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "change_circle": { "name": "change_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_vote": { "name": "how_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "delete_sweep": { "name": "delete_sweep", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "archive": { "name": "archive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link_off": { "name": "link_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_gmailerrorred": { "name": "report_gmailerrorred", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "redo": { "name": "redo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "report_off": { "name": "report_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "insights": { "name": "insights", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save_alt": { "name": "save_alt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_off": { "name": "content_paste_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "square_foot": { "name": "square_foot", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "content_cut": { "name": "content_cut", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "amp_stories": { "name": "amp_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "clear": { "name": "clear", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "deselect": { "name": "deselect", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "remove_circle_outline": { "name": "remove_circle_outline", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "gesture": { "name": "gesture", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "outlined_flag": { "name": "outlined_flag", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "web_stories": { "name": "web_stories", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "how_to_reg": { "name": "how_to_reg", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list": { "name": "filter_list", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "upcoming": { "name": "upcoming", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "text_format": { "name": "text_format", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "push_pin": { "name": "push_pin", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "dynamic_feed": { "name": "dynamic_feed", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "inbox": { "name": "inbox", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "font_download": { "name": "font_download", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "filter_list_off": { "name": "filter_list_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "block": { "name": "block", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "biotech": { "name": "biotech", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "reply_all": { "name": "reply_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory": { "name": "inventory", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "flag_circle": { "name": "flag_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "save": { "name": "save", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove_circle": { "name": "remove_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "send": { "name": "send", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "weekend": { "name": "weekend", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "attribution": { "name": "attribution", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "file_copy": { "name": "file_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "link": { "name": "link", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "drafts": { "name": "drafts", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "select_all": { "name": "select_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "sort": { "name": "sort", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_copy": { "name": "content_copy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "bolt": { "name": "bolt", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_box": { "name": "add_box", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "inventory_2": { "name": "inventory_2", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "font_download_off": { "name": "font_download_off", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "copy_all": { "name": "copy_all", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "shield": { "name": "shield", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "low_priority": { "name": "low_priority", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "undo": { "name": "undo", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "backspace": { "name": "backspace", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "markunread": { "name": "markunread", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "waves": { "name": "waves", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "where_to_vote": { "name": "where_to_vote", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "save_as": { "name": "save_as", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "stream": { "name": "stream", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "content_paste_go": { "name": "content_paste_go", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "unarchive": { "name": "unarchive", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "add_circle": { "name": "add_circle", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "policy": { "name": "policy", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" }, "20": { "width": 20, "path": "" } } }, "forward": { "name": "forward", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } }, "remove": { "name": "remove", "keywords": [ "content" ], "heights": { "24": { "width": 24, "path": "" } } } } sphinx-design-0.6.1/sphinx_design/compiled/octicon_LICENSE000066400000000000000000000020541465316142500234670ustar00rootroot00000000000000MIT License Copyright (c) 2023 GitHub Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. sphinx-design-0.6.1/sphinx_design/compiled/octicons.json000066400000000000000000037016431465316142500234750ustar00rootroot00000000000000{ "accessibility": { "name": "accessibility", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.923 5.302c.063.063.122.129.178.198H14A.75.75 0 0 1 14 7h-3.3l.578 5.163.362 2.997a.75.75 0 0 1-1.49.18L9.868 13H6.132l-.282 2.34a.75.75 0 0 1-1.49-.18l.362-2.997L5.3 7H2a.75.75 0 0 1 0-1.5h3.9a2.54 2.54 0 0 1 .176-.198 3 3 0 1 1 3.847 0ZM9.2 7.073h-.001a1.206 1.206 0 0 0-2.398 0L6.305 11.5h3.39ZM9.5 3a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 3Z" }, "children": [] } ] } } } }, "accessibility-inset": { "name": "accessibility-inset", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm2 4a2 2 0 1 0-2.95 1.76 1.87 1.87 0 0 0-.32.24H3.75a.75.75 0 0 0 0 1.5h2.363l-.607 5.67a.75.75 0 1 0 1.49.16l.25-2.33h1.508l.25 2.33a.75.75 0 0 0 1.492-.16L9.888 7.5h2.362a.75.75 0 0 0 0-1.5H9.27a1.98 1.98 0 0 0-.32-.24A2 2 0 0 0 10 4Z" }, "children": [] } ] } } } }, "alert": { "name": "alert", "keywords": [ "warning", "triangle", "exclamation", "point" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13 17.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-.25-8.25a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0v-4.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.836 3.244c.963-1.665 3.365-1.665 4.328 0l8.967 15.504c.963 1.667-.24 3.752-2.165 3.752H3.034c-1.926 0-3.128-2.085-2.165-3.752Zm3.03.751a1.002 1.002 0 0 0-1.732 0L2.168 19.499A1.002 1.002 0 0 0 3.034 21h17.932a1.002 1.002 0 0 0 .866-1.5L12.866 3.994Z" }, "children": [] } ] } } } }, "alert-fill": { "name": "alert-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 0 1-1.146 1.954H1.33A1.313 1.313 0 0 1 .183 9.058ZM7 7V3H5v4Zm-1 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575ZM8 5a.75.75 0 0 0-.75.75v2.5a.75.75 0 0 0 1.5 0v-2.5A.75.75 0 0 0 8 5Zm1 6a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.836 3.244c.963-1.665 3.365-1.665 4.328 0l8.967 15.504c.963 1.667-.24 3.752-2.165 3.752H3.034c-1.926 0-3.128-2.085-2.165-3.752ZM12 8.5a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 8.5Zm1 9a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z" }, "children": [] } ] } } } }, "apps": { "name": "apps", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 3.25c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 5.75 7.5h-2.5A1.75 1.75 0 0 1 1.5 5.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5A1.75 1.75 0 0 1 8.5 5.75Zm-7 7c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75Zm7 0c0-.966.784-1.75 1.75-1.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a1.75 1.75 0 0 1-1.75 1.75h-2.5a1.75 1.75 0 0 1-1.75-1.75ZM3.25 3a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5A.25.25 0 0 0 6 5.75v-2.5A.25.25 0 0 0 5.75 3Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm-7 7a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm7 0a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "archive": { "name": "archive", "keywords": [ "box", "catalog" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 14.25 6H1.75A1.75 1.75 0 0 1 0 4.25ZM1.75 7a.75.75 0 0 1 .75.75v5.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.75.75 0 0 1 1.5 0v5.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-5.5A.75.75 0 0 1 1.75 7Zm0-4.5a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25ZM6.25 8h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 2h18.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 21.25 9H2.75A1.75 1.75 0 0 1 1 7.25v-3.5C1 2.784 1.784 2 2.75 2Zm18.5 1.5H2.75a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25ZM2.75 10a.75.75 0 0 1 .75.75v9.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-9.5a.75.75 0 0 1 1.5 0v9.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-9.5a.75.75 0 0 1 .75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.75 11.5a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z" }, "children": [] } ] } } } }, "arrow-both": { "name": "arrow-both", "keywords": [ "point", "direction", "left", "right" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.72 3.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.56 7h10.88l-2.22-2.22a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l3.5 3.5a.75.75 0 0 1 0 1.06l-3.5 3.5a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l2.22-2.22H2.56l2.22 2.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-3.5-3.5a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.78 5.97a.75.75 0 0 0-1.06 0l-5.25 5.25a.75.75 0 0 0 0 1.06l5.25 5.25a.75.75 0 0 0 1.06-1.06L3.81 12.5h16.38l-3.97 3.97a.75.75 0 1 0 1.06 1.06l5.25-5.25a.75.75 0 0 0 0-1.06l-5.25-5.25a.75.75 0 1 0-1.06 1.06L20.19 11H3.81l3.97-3.97a.75.75 0 0 0 0-1.06Z" }, "children": [] } ] } } } }, "arrow-down": { "name": "arrow-down", "keywords": [ "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.03 8.22a.75.75 0 0 1 0 1.06l-4.25 4.25a.75.75 0 0 1-1.06 0L3.47 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l2.97 2.97V3.75a.75.75 0 0 1 1.5 0v7.44l2.97-2.97a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.97 13.22a.75.75 0 0 1 1.06 0L11 18.19V3.75a.75.75 0 0 1 1.5 0v14.44l4.97-4.97a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-6.25 6.25a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } } } }, "arrow-down-left": { "name": "arrow-down-left", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.78 4.22a.75.75 0 0 1 0 1.06l-5.26 5.26h4.2a.75.75 0 0 1 0 1.5H4.71a.75.75 0 0 1-.75-.75V5.28a.75.75 0 0 1 1.5 0v4.2l5.26-5.26a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 8.5a.75.75 0 0 1 .75.75v7.19L16.72 6.22a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L7.56 17.5h7.19a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75v-9a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "arrow-down-right": { "name": "arrow-down-right", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.22 4.179a.75.75 0 0 1 1.06 0l5.26 5.26v-4.2a.75.75 0 0 1 1.5 0v6.01a.75.75 0 0 1-.75.75H5.28a.75.75 0 0 1 0-1.5h4.2L4.22 5.24a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.25 8.5a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-.75.75h-9a.75.75 0 0 1 0-1.5h7.19L6.22 7.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L17.5 16.44V9.25a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "arrow-left": { "name": "arrow-left", "keywords": [ "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.78 12.53a.75.75 0 0 1-1.06 0L2.47 8.28a.75.75 0 0 1 0-1.06l4.25-4.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L4.81 7h7.44a.75.75 0 0 1 0 1.5H4.81l2.97 2.97a.75.75 0 0 1 0 1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.78 19.03a.75.75 0 0 1-1.06 0l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L5.81 11.5h14.44a.75.75 0 0 1 0 1.5H5.81l4.97 4.97a.75.75 0 0 1 0 1.06Z" }, "children": [] } ] } } } }, "arrow-right": { "name": "arrow-right", "keywords": [ "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.22 2.97a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l2.97-2.97H3.75a.75.75 0 0 1 0-1.5h7.44L8.22 4.03a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.22 19.03a.75.75 0 0 1 0-1.06L18.19 13H3.75a.75.75 0 0 1 0-1.5h14.44l-4.97-4.97a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z" }, "children": [] } ] } } } }, "arrow-switch": { "name": "arrow-switch", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.22 14.78a.75.75 0 0 0 1.06-1.06L4.56 12h8.69a.75.75 0 0 0 0-1.5H4.56l1.72-1.72a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3Zm5.56-6.5a.75.75 0 1 1-1.06-1.06l1.72-1.72H2.75a.75.75 0 0 1 0-1.5h8.69L9.72 2.28a.75.75 0 0 1 1.06-1.06l3 3a.75.75 0 0 1 0 1.06l-3 3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.72 21.78a.75.75 0 0 0 1.06-1.06L5.56 17.5h14.69a.75.75 0 0 0 0-1.5H5.56l3.22-3.22a.75.75 0 1 0-1.06-1.06l-4.5 4.5a.75.75 0 0 0 0 1.06l4.5 4.5Zm8.56-9.5a.75.75 0 1 1-1.06-1.06L18.44 8H3.75a.75.75 0 0 1 0-1.5h14.69l-3.22-3.22a.75.75 0 0 1 1.06-1.06l4.5 4.5a.75.75 0 0 1 0 1.06l-4.5 4.5Z" }, "children": [] } ] } } } }, "arrow-up": { "name": "arrow-up", "keywords": [ "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.47 7.78a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0l4.25 4.25a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018L9 4.81v7.44a.75.75 0 0 1-1.5 0V4.81L4.53 7.78a.75.75 0 0 1-1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.655 10.405a.75.75 0 0 1-1.06 0l-4.97-4.97v14.44a.75.75 0 0 1-1.5 0V5.435l-4.97 4.97a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l6.25-6.25a.75.75 0 0 1 1.06 0l6.25 6.25a.75.75 0 0 1 0 1.06Z" }, "children": [] } ] } } } }, "arrow-up-left": { "name": "arrow-up-left", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.96 4.75A.75.75 0 0 1 4.71 4h6.01a.75.75 0 0 1 0 1.5h-4.2l5.26 5.26a.75.75 0 0 1-1.06 1.061l-5.26-5.26v4.2a.75.75 0 0 1-1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 15.5a.75.75 0 0 1-.75-.75v-9A.75.75 0 0 1 5.75 5h9a.75.75 0 0 1 0 1.5H7.56l10.22 10.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L6.5 7.56v7.19a.75.75 0 0 1-.75.75Z" }, "children": [] } ] } } } }, "arrow-up-right": { "name": "arrow-up-right", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.53 4.75A.75.75 0 0 1 5.28 4h6.01a.75.75 0 0 1 .75.75v6.01a.75.75 0 0 1-1.5 0v-4.2l-5.26 5.261a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L9.48 5.5h-4.2a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.25 15.5a.75.75 0 0 1-.75-.75V7.56L7.28 17.78a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L16.44 6.5H9.25a.75.75 0 0 1 0-1.5h9a.75.75 0 0 1 .75.75v9a.75.75 0 0 1-.75.75Z" }, "children": [] } ] } } } }, "beaker": { "name": "beaker", "keywords": [ "experiment", "labs", "experimental", "feature", "test", "science", "education", "study", "development", "testing" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 5.782V2.5h-.25a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5H11v3.282l3.666 5.76C15.619 13.04 14.543 15 12.767 15H3.233c-1.776 0-2.852-1.96-1.899-3.458Zm-2.4 6.565a.75.75 0 0 0 .633 1.153h9.534a.75.75 0 0 0 .633-1.153L12.225 10.5h-8.45ZM9.5 2.5h-3V6c0 .143-.04.283-.117.403L4.73 9h6.54L9.617 6.403A.746.746 0 0 1 9.5 6Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 8.807V3.5h-.563a.75.75 0 0 1 0-1.5h9.125a.75.75 0 0 1 0 1.5H16v5.307l5.125 9.301c.964 1.75-.302 3.892-2.299 3.892H5.174c-1.998 0-3.263-2.142-2.3-3.892ZM4.189 18.832a1.123 1.123 0 0 0 .985 1.668h13.652a1.123 1.123 0 0 0 .985-1.668L17.7 15H6.3ZM14.5 3.5h-5V9a.75.75 0 0 1-.093.362L7.127 13.5h9.746l-2.28-4.138A.75.75 0 0 1 14.5 9Z" }, "children": [] } ] } } } }, "bell": { "name": "bell", "keywords": [ "notification" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16a2 2 0 0 0 1.985-1.75c.017-.137-.097-.25-.235-.25h-3.5c-.138 0-.252.113-.235.25A2 2 0 0 0 8 16ZM3 5a5 5 0 0 1 10 0v2.947c0 .05.015.098.042.139l1.703 2.555A1.519 1.519 0 0 1 13.482 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.255.255 0 0 0 3 7.947Zm5-3.5A3.5 3.5 0 0 0 4.5 5v2.947c0 .346-.102.683-.294.97l-1.703 2.556a.017.017 0 0 0-.003.01l.001.006c0 .002.002.004.004.006l.006.004.007.001h10.964l.007-.001.006-.004.004-.006.001-.007a.017.017 0 0 0-.003-.01l-1.703-2.554a1.745 1.745 0 0 1-.294-.97V5A3.5 3.5 0 0 0 8 1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c3.681 0 7 2.565 7 6v4.539c0 .642.189 1.269.545 1.803l2.2 3.298A1.517 1.517 0 0 1 20.482 19H15.5a3.5 3.5 0 1 1-7 0H3.519a1.518 1.518 0 0 1-1.265-2.359l2.2-3.299A3.25 3.25 0 0 0 5 11.539V7c0-3.435 3.318-6 7-6ZM6.5 7v4.539a4.75 4.75 0 0 1-.797 2.635l-2.2 3.298-.003.01.001.007.004.006.006.004.007.001h16.964l.007-.001.006-.004.004-.006.001-.006a.017.017 0 0 0-.003-.01l-2.199-3.299a4.753 4.753 0 0 1-.798-2.635V7c0-2.364-2.383-4.5-5.5-4.5S6.5 4.636 6.5 7ZM14 19h-4a2 2 0 1 0 4 0Z" }, "children": [] } ] } } } }, "bell-fill": { "name": "bell-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16c.9 0 1.7-.6 1.9-1.5.1-.3-.1-.5-.4-.5h-3c-.3 0-.5.2-.4.5.2.9 1 1.5 1.9 1.5ZM3 5c0-2.8 2.2-5 5-5s5 2.2 5 5v3l1.7 2.6c.2.2.3.5.3.8 0 .8-.7 1.5-1.5 1.5h-11c-.8.1-1.5-.6-1.5-1.4 0-.3.1-.6.3-.8L3 8.1V5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 8a6 6 0 1 1 12 0v2.917c0 .703.228 1.387.65 1.95L20.7 15.6a1.5 1.5 0 0 1-1.2 2.4h-15a1.5 1.5 0 0 1-1.2-2.4l2.05-2.733a3.25 3.25 0 0 0 .65-1.95Zm6 13.5A3.502 3.502 0 0 1 8.645 19h6.71A3.502 3.502 0 0 1 12 21.5Z" }, "children": [] } ] } } } }, "bell-slash": { "name": "bell-slash", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m4.182 4.31.016.011 10.104 7.316.013.01 1.375.996a.75.75 0 1 1-.88 1.214L13.626 13H2.518a1.516 1.516 0 0 1-1.263-2.36l1.703-2.554A.255.255 0 0 0 3 7.947V5.305L.31 3.357a.75.75 0 1 1 .88-1.214Zm7.373 7.19L4.5 6.391v1.556c0 .346-.102.683-.294.97l-1.703 2.556a.017.017 0 0 0-.003.01c0 .005.002.009.005.012l.006.004.007.001ZM8 1.5c-.997 0-1.895.416-2.534 1.086A.75.75 0 1 1 4.38 1.55 5 5 0 0 1 13 5v2.373a.75.75 0 0 1-1.5 0V5A3.5 3.5 0 0 0 8 1.5ZM8 16a2 2 0 0 1-1.985-1.75c-.017-.137.097-.25.235-.25h3.5c.138 0 .252.113.235.25A2 2 0 0 1 8 16Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.22 1.22a.75.75 0 0 1 1.06 0l20.5 20.5a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L17.94 19H15.5a3.5 3.5 0 1 1-7 0H3.518a1.516 1.516 0 0 1-1.263-2.36l2.2-3.298A3.249 3.249 0 0 0 5 11.539V7c0-.294.025-.583.073-.866L1.22 2.28a.75.75 0 0 1 0-1.06ZM6.5 7.56h-.001v3.979a4.75 4.75 0 0 1-.797 2.635l-2.2 3.298-.003.01.001.007.004.006.006.004.007.001H16.44ZM10 19a2 2 0 1 0 4 0Zm2-16.5c-1.463 0-2.8.485-3.788 1.257l-.04.032a.75.75 0 1 1-.935-1.173l.05-.04C8.548 1.59 10.212 1 12 1c3.681 0 7 2.565 7 6v4.539c0 .642.19 1.269.546 1.803l1.328 1.992a.75.75 0 1 1-1.248.832l-1.328-1.992a4.75 4.75 0 0 1-.798-2.635V7c0-2.364-2.383-4.5-5.5-4.5Z" }, "children": [] } ] } } } }, "blocked": { "name": "blocked", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.467.22a.749.749 0 0 1 .53-.22h6.006c.199 0 .389.079.53.22l4.247 4.247c.141.14.22.331.22.53v6.006a.749.749 0 0 1-.22.53l-4.247 4.247a.749.749 0 0 1-.53.22H4.997a.749.749 0 0 1-.53-.22L.22 11.533a.749.749 0 0 1-.22-.53V4.997c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.308v5.384L5.308 14.5h5.384l3.808-3.808V5.308L10.692 1.5ZM4 7.75A.75.75 0 0 1 4.75 7h6.5a.75.75 0 0 1 0 1.5h-6.5A.75.75 0 0 1 4 7.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.638 2.22a.749.749 0 0 1 .53-.22h7.664c.199 0 .389.079.53.22l5.418 5.418c.141.14.22.332.22.53v7.664a.749.749 0 0 1-.22.53l-5.418 5.418a.749.749 0 0 1-.53.22H8.168a.749.749 0 0 1-.53-.22l-5.42-5.418a.752.752 0 0 1-.219-.53V8.168c0-.199.079-.389.22-.53l5.418-5.42ZM8.48 3.5 3.5 8.48v7.04l4.98 4.98h7.04l4.98-4.98V8.48L15.52 3.5ZM7 11.75a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "bold": { "name": "bold", "keywords": [ "markdown", "bold", "text" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 2h4.5a3.501 3.501 0 0 1 2.852 5.53A3.499 3.499 0 0 1 9.5 14H4a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm1 7v3h4.5a1.5 1.5 0 0 0 0-3Zm3.5-2a1.5 1.5 0 0 0 0-3H5v3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 4.75c0-.69.56-1.25 1.25-1.25h5a4.752 4.752 0 0 1 3.888 7.479A5 5 0 0 1 14 20.5H7.25c-.69 0-1.25-.56-1.25-1.25ZM8.5 13v5H14a2.5 2.5 0 1 0 0-5Zm0-2.5h3.751A2.25 2.25 0 0 0 12.25 6H8.5Z" }, "children": [] } ] } } } }, "book": { "name": "book", "keywords": [ "book", "journal", "wiki", "readme" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75A.75.75 0 0 1 .75 1h4.253c1.227 0 2.317.59 3 1.501A3.743 3.743 0 0 1 11.006 1h4.245a.75.75 0 0 1 .75.75v10.5a.75.75 0 0 1-.75.75h-4.507a2.25 2.25 0 0 0-1.591.659l-.622.621a.75.75 0 0 1-1.06 0l-.622-.621A2.25 2.25 0 0 0 5.258 13H.75a.75.75 0 0 1-.75-.75Zm7.251 10.324.004-5.073-.002-2.253A2.25 2.25 0 0 0 5.003 2.5H1.5v9h3.757a3.75 3.75 0 0 1 1.994.574ZM8.755 4.75l-.004 7.322a3.752 3.752 0 0 1 1.992-.572H14.5v-9h-3.495a2.25 2.25 0 0 0-2.25 2.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 3.75A.75.75 0 0 1 .75 3h7.497c1.566 0 2.945.8 3.751 2.014A4.495 4.495 0 0 1 15.75 3h7.5a.75.75 0 0 1 .75.75v15.063a.752.752 0 0 1-.755.75l-7.682-.052a3 3 0 0 0-2.142.878l-.89.891a.75.75 0 0 1-1.061 0l-.902-.901a2.996 2.996 0 0 0-2.121-.879H.75a.75.75 0 0 1-.75-.75Zm12.75 15.232a4.503 4.503 0 0 1 2.823-.971l6.927.047V4.5h-6.75a3 3 0 0 0-3 3ZM11.247 7.497a3 3 0 0 0-3-2.997H1.5V18h6.947c1.018 0 2.006.346 2.803.98Z" }, "children": [] } ] } } } }, "bookmark": { "name": "bookmark", "keywords": [ "tab", "star" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 2.75C3 1.784 3.784 1 4.75 1h6.5c.966 0 1.75.784 1.75 1.75v11.5a.75.75 0 0 1-1.227.579L8 11.722l-3.773 3.107A.751.751 0 0 1 3 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.91l3.023-2.489a.75.75 0 0 1 .954 0l3.023 2.49V2.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 3.75C5 2.784 5.784 2 6.75 2h10.5c.966 0 1.75.784 1.75 1.75v17.5a.75.75 0 0 1-1.218.586L12 17.21l-5.781 4.625A.75.75 0 0 1 5 21.25Zm1.75-.25a.25.25 0 0 0-.25.25v15.94l5.031-4.026a.749.749 0 0 1 .938 0L17.5 19.69V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "bookmark-fill": { "name": "bookmark-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.69 2h10.56c.966 0 1.75.784 1.75 1.75v17.5a.75.75 0 0 1-1.218.585L12 17.21l-5.781 4.626A.75.75 0 0 1 5 21.253L4.94 3.756A1.748 1.748 0 0 1 6.69 2Z" }, "children": [] } ] } } } }, "bookmark-slash": { "name": "bookmark-slash", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.19 1.143 4.182 3.31l.014.01 8.486 6.145.014.01 2.994 2.168a.75.75 0 1 1-.88 1.214L13 11.547v2.703a.75.75 0 0 1-1.206.596L8 11.944l-3.794 2.902A.75.75 0 0 1 3 14.25V4.305L.31 2.357a.75.75 0 1 1 .88-1.214ZM4.5 5.39v7.341l3.044-2.328a.75.75 0 0 1 .912 0l3.044 2.328V10.46ZM5.865 1h5.385c.966 0 1.75.784 1.75 1.75v3.624a.75.75 0 0 1-1.5 0V2.75a.25.25 0 0 0-.25-.25H5.865a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.565 2.018v-.001l21.75 15.75a.75.75 0 1 1-.88 1.215L19 16.495v4.764a.748.748 0 0 1-1.219.584L12 17.21l-5.781 4.634A.75.75 0 0 1 5 21.259V6.357L.685 3.232a.75.75 0 0 1 .88-1.214ZM17.5 15.408l-11-7.965v12.254l5.031-4.032a.749.749 0 0 1 .938 0l5.031 4.032ZM7.25 2a.75.75 0 0 0 0 1.5h10a.25.25 0 0 1 .25.25v6.5a.75.75 0 0 0 1.5 0v-6.5A1.75 1.75 0 0 0 17.25 2h-10Z" }, "children": [] } ] } } } }, "bookmark-slash-fill": { "name": "bookmark-slash-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m3.232 2.175 18.5 15.5a.75.75 0 1 1-.964 1.15L19 17.343v3.907a.75.75 0 0 1-1.218.585L12 17.21l-5.781 4.626A.75.75 0 0 1 5 21.253L4.947 5.569 2.268 3.325a.75.75 0 1 1 .964-1.15ZM7.421 2h9.829c.966 0 1.75.784 1.75 1.75v8.073a.75.75 0 0 1-1.232.575L6.94 3.325A.75.75 0 0 1 7.421 2Z" }, "children": [] } ] } } } }, "briefcase": { "name": "briefcase", "keywords": [ "suitcase", "business" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.75 0h2.5C10.216 0 11 .784 11 1.75V3h3.25c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-8.5C0 3.784.784 3 1.75 3H5V1.75C5 .784 5.784 0 6.75 0ZM3.5 9.5a3.49 3.49 0 0 1-2-.627v4.377c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V8.873a3.49 3.49 0 0 1-2 .627Zm-1.75-5a.25.25 0 0 0-.25.25V6a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2V4.75a.25.25 0 0 0-.25-.25H1.75ZM9.5 3V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25V3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.5 1.75C7.5.784 8.284 0 9.25 0h5.5c.966 0 1.75.784 1.75 1.75V4h4.75c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 21.25 22H2.75A1.75 1.75 0 0 1 1 20.25V5.75C1 4.784 1.784 4 2.75 4H7.5Zm-5 10.24v8.26c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25v-8.26A4.235 4.235 0 0 1 18.75 13H5.25a4.235 4.235 0 0 1-2.75-1.01Zm19-3.24v-3a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v3a2.75 2.75 0 0 0 2.75 2.75h13.5a2.75 2.75 0 0 0 2.75-2.75Zm-6.5-7a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25V4h6Z" }, "children": [] } ] } } } }, "broadcast": { "name": "broadcast", "keywords": [ "rss", "radio", "signal" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 8.582v5.668a.75.75 0 0 1-1.5 0V8.582a1.75 1.75 0 1 1 1.5 0Zm3.983-7.125a.75.75 0 0 1 1.06.026A7.976 7.976 0 0 1 16 7c0 2.139-.84 4.083-2.207 5.517a.75.75 0 1 1-1.086-1.034A6.474 6.474 0 0 0 14.5 7a6.474 6.474 0 0 0-1.793-4.483.75.75 0 0 1 .026-1.06Zm-9.466 0c.3.286.312.76.026 1.06A6.474 6.474 0 0 0 1.5 7a6.47 6.47 0 0 0 1.793 4.483.75.75 0 0 1-1.086 1.034A7.973 7.973 0 0 1 0 7c0-2.139.84-4.083 2.207-5.517a.75.75 0 0 1 1.06-.026Zm8.556 2.321A4.988 4.988 0 0 1 13 7a4.988 4.988 0 0 1-1.177 3.222.75.75 0 1 1-1.146-.967A3.487 3.487 0 0 0 11.5 7c0-.86-.309-1.645-.823-2.255a.75.75 0 0 1 1.146-.967Zm-6.492.958A3.48 3.48 0 0 0 4.5 7a3.48 3.48 0 0 0 .823 2.255.75.75 0 0 1-1.146.967A4.981 4.981 0 0 1 3 7a4.982 4.982 0 0 1 1.188-3.236.75.75 0 1 1 1.143.972Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20.485 2.515a.75.75 0 0 0-1.06 1.06A10.465 10.465 0 0 1 22.5 11c0 2.9-1.174 5.523-3.075 7.424a.75.75 0 0 0 1.06 1.061A11.965 11.965 0 0 0 24 11c0-3.314-1.344-6.315-3.515-8.485Zm-15.91 1.06a.75.75 0 0 0-1.06-1.06A11.965 11.965 0 0 0 0 11c0 3.313 1.344 6.314 3.515 8.485a.75.75 0 0 0 1.06-1.06A10.465 10.465 0 0 1 1.5 11c0-2.9 1.174-5.524 3.075-7.425ZM8.11 7.11a.75.75 0 0 0-1.06-1.06A6.98 6.98 0 0 0 5 11a6.98 6.98 0 0 0 2.05 4.95.75.75 0 0 0 1.06-1.061 5.48 5.48 0 0 1-1.61-3.89 5.48 5.48 0 0 1 1.61-3.888Zm8.84-1.06a.75.75 0 1 0-1.06 1.06A5.48 5.48 0 0 1 17.5 11a5.48 5.48 0 0 1-1.61 3.889.75.75 0 1 0 1.06 1.06A6.98 6.98 0 0 0 19 11a6.98 6.98 0 0 0-2.05-4.949ZM14 11a2 2 0 0 1-1.25 1.855v8.395a.75.75 0 0 1-1.5 0v-8.395A2 2 0 1 1 14 11Z" }, "children": [] } ] } } } }, "browser": { "name": "browser", "keywords": [ "window", "web" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25ZM14.5 6h-13v7.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Zm-6-3.5v2h6V2.75a.25.25 0 0 0-.25-.25ZM5 2.5v2h2v-2Zm-3.25 0a.25.25 0 0 0-.25.25V4.5h2v-2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 3.75C0 2.784.784 2 1.75 2h20.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 22.25 22H1.75A1.75 1.75 0 0 1 0 20.25ZM22.5 7h-21v13.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25Zm-10-3.5v2h10V3.75a.25.25 0 0 0-.25-.25ZM7 3.5v2h4v-2Zm-5.25 0a.25.25 0 0 0-.25.25V5.5h4v-2Z" }, "children": [] } ] } } } }, "bug": { "name": "bug", "keywords": [ "insect", "issue" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.72.22a.75.75 0 0 1 1.06 0l1 .999a3.488 3.488 0 0 1 2.441 0l.999-1a.748.748 0 0 1 1.265.332.75.75 0 0 1-.205.729l-.775.776c.616.63.995 1.493.995 2.444v.327c0 .1-.009.197-.025.292.408.14.764.392 1.029.722l1.968-.787a.75.75 0 0 1 .556 1.392L13 7.258V9h2.25a.75.75 0 0 1 0 1.5H13v.5c0 .409-.049.806-.141 1.186l2.17.868a.75.75 0 0 1-.557 1.392l-2.184-.873A4.997 4.997 0 0 1 8 16a4.997 4.997 0 0 1-4.288-2.427l-2.183.873a.75.75 0 0 1-.558-1.392l2.17-.868A5.036 5.036 0 0 1 3 11v-.5H.75a.75.75 0 0 1 0-1.5H3V7.258L.971 6.446a.75.75 0 0 1 .558-1.392l1.967.787c.265-.33.62-.583 1.03-.722a1.677 1.677 0 0 1-.026-.292V4.5c0-.951.38-1.814.995-2.444L4.72 1.28a.75.75 0 0 1 0-1.06Zm.53 6.28a.75.75 0 0 0-.75.75V11a3.5 3.5 0 1 0 7 0V7.25a.75.75 0 0 0-.75-.75ZM6.173 5h3.654A.172.172 0 0 0 10 4.827V4.5a2 2 0 1 0-4 0v.327c0 .096.077.173.173.173Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.72.22a.75.75 0 0 1 1.06 0l1.204 1.203A4.98 4.98 0 0 1 12 1c.717 0 1.4.151 2.016.423L15.22.22a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-.971.972A4.991 4.991 0 0 1 17 6v1.104a2.755 2.755 0 0 1 1.917 1.974l1.998-.999a.75.75 0 0 1 .67 1.342L19 10.714V13.5l3.25.003a.75.75 0 0 1 0 1.5L19 15.001V16c0 .568-.068 1.134-.204 1.686l.04.018 2.75 1.375a.75.75 0 1 1-.671 1.342l-2.638-1.319A6.998 6.998 0 0 1 12 23a6.998 6.998 0 0 1-6.197-3.742l-2.758 1.181a.752.752 0 0 1-1.064-.776.752.752 0 0 1 .474-.602l2.795-1.199A6.976 6.976 0 0 1 5 16v-.996H1.75a.75.75 0 0 1 0-1.5H5v-2.79L2.415 9.42a.75.75 0 0 1 .67-1.342l1.998.999A2.756 2.756 0 0 1 7 7.104V6a4.99 4.99 0 0 1 1.69-3.748l-.97-.972a.75.75 0 0 1 0-1.06ZM6.5 9.75V16a5.5 5.5 0 1 0 11 0V9.75c0-.69-.56-1.25-1.25-1.25h-8.5c-.69 0-1.25.56-1.25 1.25ZM8.5 7h7V6a3.5 3.5 0 1 0-7 0Z" }, "children": [] } ] } } } }, "cache": { "name": "cache", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 5.724V8c0 .248.238.7 1.169 1.159.874.43 2.144.745 3.62.822a.75.75 0 1 1-.078 1.498c-1.622-.085-3.102-.432-4.204-.975a5.565 5.565 0 0 1-.507-.28V12.5c0 .133.058.318.282.551.227.237.591.483 1.101.707 1.015.447 2.47.742 4.117.742.406 0 .802-.018 1.183-.052a.751.751 0 1 1 .134 1.494C8.89 15.98 8.45 16 8 16c-1.805 0-3.475-.32-4.721-.869-.623-.274-1.173-.619-1.579-1.041-.408-.425-.7-.964-.7-1.59v-9c0-.626.292-1.165.7-1.591.406-.42.956-.766 1.579-1.04C4.525.32 6.195 0 8 0c1.806 0 3.476.32 4.721.869.623.274 1.173.619 1.579 1.041.408.425.7.964.7 1.59 0 .626-.292 1.165-.7 1.591-.406.42-.956.766-1.578 1.04C11.475 6.68 9.805 7 8 7c-1.805 0-3.475-.32-4.721-.869a6.15 6.15 0 0 1-.779-.407Zm0-2.224c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 5.205 6.353 5.5 8 5.5c1.646 0 3.101-.295 4.118-.742.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55 0-.133-.058-.318-.282-.551-.227-.237-.591-.483-1.101-.707C11.102 1.795 9.647 1.5 8 1.5c-1.646 0-3.101.295-4.118.742-.508.224-.873.471-1.1.708-.224.232-.282.417-.282.55Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.49 7.582a.375.375 0 0 0-.66-.313l-3.625 4.625a.375.375 0 0 0 .295.606h2.127l-.619 2.922a.375.375 0 0 0 .666.304l3.125-4.125A.375.375 0 0 0 15.5 11h-1.778l.769-3.418Z" }, "children": [] } ] } } } }, "calendar": { "name": "calendar", "keywords": [ "time", "day", "month", "year", "date", "appointment" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 0a.75.75 0 0 1 .75.75V2h5V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 0 1 4.75 0ZM2.5 7.5v6.75c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V7.5Zm10.75-4H2.75a.25.25 0 0 0-.25.25V6h11V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.75 0a.75.75 0 0 1 .75.75V3h9V.75a.75.75 0 0 1 1.5 0V3h2.75c.966 0 1.75.784 1.75 1.75v16a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75v-16C1.5 3.784 2.284 3 3.25 3H6V.75A.75.75 0 0 1 6.75 0ZM21 9.5H3v11.25c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25Zm-17.75-5a.25.25 0 0 0-.25.25V8h18V4.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "check": { "name": "check", "keywords": [ "mark", "yes", "confirm", "accept", "ok", "success" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M21.03 5.72a.75.75 0 0 1 0 1.06l-11.5 11.5a.747.747 0 0 1-1.072-.012l-5.5-5.75a.75.75 0 1 1 1.084-1.036l4.97 5.195L19.97 5.72a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } } } }, "check-circle": { "name": "check-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm1.5 0a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm10.28-1.72-4.5 4.5a.75.75 0 0 1-1.06 0l-2-2a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l1.47 1.47 3.97-3.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l6.5-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "check-circle-fill": { "name": "check-circle-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm3.78-9.72a.751.751 0 0 0-.018-1.042.751.751 0 0 0-1.042-.018L6.75 9.19 5.28 7.72a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042l2 2a.75.75 0 0 0 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm16.28-2.72a.751.751 0 0 0-.018-1.042.751.751 0 0 0-1.042-.018l-5.97 5.97-2.47-2.47a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042l3 3a.75.75 0 0 0 1.06 0Z" }, "children": [] } ] } } } }, "checkbox": { "name": "checkbox", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.5 2.75v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25Zm9.28 3.53-4.5 4.5a.75.75 0 0 1-1.06 0l-2-2a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l1.47 1.47 3.97-3.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l6.5-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2ZM3.5 3.75v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H3.75a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "checklist": { "name": "checklist", "keywords": [ "todo", "tasks" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 1.75v11.5c0 .138.112.25.25.25h3.17a.75.75 0 0 1 0 1.5H2.75A1.75 1.75 0 0 1 1 13.25V1.75C1 .784 1.784 0 2.75 0h8.5C12.216 0 13 .784 13 1.75v7.736a.75.75 0 0 1-1.5 0V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25Zm13.274 9.537v-.001l-4.557 4.45a.75.75 0 0 1-1.055-.008l-1.943-1.95a.75.75 0 0 1 1.062-1.058l1.419 1.425 4.026-3.932a.75.75 0 1 1 1.048 1.074ZM4.75 4h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM4 7.75A.75.75 0 0 1 4.75 7h2a.75.75 0 0 1 0 1.5h-2A.75.75 0 0 1 4 7.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 3.75a.25.25 0 0 1 .25-.25h13.5a.25.25 0 0 1 .25.25v10a.75.75 0 0 0 1.5 0v-10A1.75 1.75 0 0 0 17.25 2H3.75A1.75 1.75 0 0 0 2 3.75v16.5c0 .966.784 1.75 1.75 1.75h7a.75.75 0 0 0 0-1.5h-7a.25.25 0 0 1-.25-.25V3.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.25 7a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Zm-.75 4.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm16.28 4.53a.75.75 0 1 0-1.06-1.06l-4.97 4.97-1.97-1.97a.75.75 0 1 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5.5-5.5Z" }, "children": [] } ] } } } }, "chevron-down": { "name": "chevron-down", "keywords": [ "triangle", "arrow" ], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 8.825c-.2 0-.4-.1-.5-.2l-3.3-3.3c-.3-.3-.3-.8 0-1.1.3-.3.8-.3 1.1 0l2.7 2.7 2.7-2.7c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1l-3.2 3.2c-.2.2-.4.3-.6.3Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.78 5.22a.749.749 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.06 0L3.22 6.28a.749.749 0 1 1 1.06-1.06L8 8.939l3.72-3.719a.749.749 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.22 8.22a.749.749 0 0 0 0 1.06l6.25 6.25a.749.749 0 0 0 1.06 0l6.25-6.25a.749.749 0 1 0-1.06-1.06L12 13.939 6.28 8.22a.749.749 0 0 0-1.06 0Z" }, "children": [] } ] } } } }, "chevron-left": { "name": "chevron-left", "keywords": [ "triangle", "arrow" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.78 12.78a.75.75 0 0 1-1.06 0L4.47 8.53a.75.75 0 0 1 0-1.06l4.25-4.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L6.06 8l3.72 3.72a.75.75 0 0 1 0 1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.28 5.22a.75.75 0 0 1 0 1.06L9.56 12l5.72 5.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-6.25-6.25a.75.75 0 0 1 0-1.06l6.25-6.25a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } } } }, "chevron-right": { "name": "chevron-right", "keywords": [ "triangle", "arrow" ], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.7 10c-.2 0-.4-.1-.5-.2-.3-.3-.3-.8 0-1.1L6.9 6 4.2 3.3c-.3-.3-.3-.8 0-1.1.3-.3.8-.3 1.1 0l3.3 3.2c.3.3.3.8 0 1.1L5.3 9.7c-.2.2-.4.3-.6.3Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.22 3.22a.75.75 0 0 1 1.06 0l4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L9.94 8 6.22 4.28a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z" }, "children": [] } ] } } } }, "chevron-up": { "name": "chevron-up", "keywords": [ "triangle", "arrow" ], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 4c-.2 0-.4.1-.5.2L2.2 7.5c-.3.3-.3.8 0 1.1.3.3.8.3 1.1 0L6 5.9l2.7 2.7c.3.3.8.3 1.1 0 .3-.3.3-.8 0-1.1L6.6 4.3C6.4 4.1 6.2 4 6 4Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.22 10.53a.749.749 0 0 1 0-1.06l4.25-4.25a.749.749 0 0 1 1.06 0l4.25 4.25a.749.749 0 1 1-1.06 1.06L8 6.811 4.28 10.53a.749.749 0 0 1-1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.78 15.78a.749.749 0 0 1-1.06 0L12 10.061 6.28 15.78a.749.749 0 1 1-1.06-1.06l6.25-6.25a.749.749 0 0 1 1.06 0l6.25 6.25a.749.749 0 0 1 0 1.06Z" }, "children": [] } ] } } } }, "circle": { "name": "circle", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-9.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5Z" }, "children": [] } ] } } } }, "circle-slash": { "name": "circle-slash", "keywords": [ "no", "deny", "fail", "failure", "error", "bad" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM3.965 13.096a6.5 6.5 0 0 0 9.131-9.131ZM1.5 8a6.474 6.474 0 0 0 1.404 4.035l9.131-9.131A6.499 6.499 0 0 0 1.5 8Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM5.834 19.227A9.464 9.464 0 0 0 12 21.5a9.5 9.5 0 0 0 9.5-9.5 9.464 9.464 0 0 0-2.273-6.166ZM2.5 12a9.464 9.464 0 0 0 2.273 6.166L18.166 4.773A9.463 9.463 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "clock": { "name": "clock", "keywords": [ "time", "hour", "minute", "second", "watch" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm7-3.25v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315V7.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "clock-fill": { "name": "clock-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8.575-3.25a.825.825 0 1 0-1.65 0v3.5c0 .337.205.64.519.766l2.5 1a.825.825 0 0 0 .612-1.532l-1.981-.793Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11.575-4.75a.825.825 0 1 0-1.65 0v5.5c0 .296.159.57.416.716l3.5 2a.825.825 0 0 0 .818-1.432l-3.084-1.763Z" }, "children": [] } ] } } } }, "cloud": { "name": "cloud", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 7.25A5.225 5.225 0 0 1 7.25 2a5.222 5.222 0 0 1 4.767 3.029A4.472 4.472 0 0 1 16 9.5c0 2.505-1.995 4.5-4.5 4.5h-8A3.474 3.474 0 0 1 0 10.5c0-1.41.809-2.614 2.001-3.17Zm1.54.482a.75.75 0 0 1-.556.832c-.86.22-1.484.987-1.484 1.936 0 1.124.876 2 2 2h8c1.676 0 3-1.324 3-3s-1.324-3-3-3a.75.75 0 0 1-.709-.504A3.72 3.72 0 0 0 7.25 3.5C5.16 3.5 3.5 5.16 3.5 7.25c.002.146.014.292.035.436l.004.036.001.008Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.103 10.107c0-4.244 3.445-7.607 7.733-7.607 3.19 0 5.912 1.858 7.099 4.563l.01.022.001.006C21.348 7.345 24 10.095 24 13.536 24 17.148 21.076 20 17.431 20H5.017C2.23 20 0 17.83 0 15.06a4.899 4.899 0 0 1 3.112-4.581 7.696 7.696 0 0 1-.009-.372ZM10.836 4c-3.485 0-6.233 2.717-6.233 6.107 0 .284.022.602.052.756a.75.75 0 0 1-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44h12.414c2.843 0 5.069-2.206 5.069-4.964 0-2.759-2.226-4.965-5.069-4.965a.75.75 0 0 1-.696-.47l-.179-.446C15.606 5.5 13.424 4 10.836 4Z" }, "children": [] } ] } } } }, "cloud-offline": { "name": "cloud-offline", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.25 2c-.69 0-1.351.13-1.957.371a.75.75 0 1 0 .554 1.394c.43-.17.903-.265 1.403-.265a3.72 3.72 0 0 1 3.541 2.496.75.75 0 0 0 .709.504c1.676 0 3 1.324 3 3a3 3 0 0 1-.681 1.92.75.75 0 0 0 1.156.955A4.496 4.496 0 0 0 16 9.5a4.472 4.472 0 0 0-3.983-4.471A5.222 5.222 0 0 0 7.25 2ZM.72 1.72a.75.75 0 0 1 1.06 0l2.311 2.31c.03.025.056.052.08.08l8.531 8.532.035.034 2.043 2.044a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-1.8-1.799a4.54 4.54 0 0 1-.42.019h-8A3.474 3.474 0 0 1 0 10.5c0-1.41.809-2.614 2.001-3.17a5.218 5.218 0 0 1 .646-2.622L.72 2.78a.75.75 0 0 1 0-1.06ZM3.5 7.25c.004.161.018.322.041.481a.75.75 0 0 1-.557.833c-.86.22-1.484.986-1.484 1.936 0 1.124.876 2 2 2h6.94L3.771 5.832A3.788 3.788 0 0 0 3.5 7.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m2.78 2.22 19.5 19.5a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-2.845-2.845a6.932 6.932 0 0 1-.944.065H5.017C2.229 20 0 17.831 0 15.059a4.899 4.899 0 0 1 3.111-4.58A7.52 7.52 0 0 1 4.36 5.922L1.72 3.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018ZM16.94 18.5 5.448 7.01a6.026 6.026 0 0 0-.794 3.853.75.75 0 0 1-.552.869c-1.52.385-2.603 1.712-2.603 3.328 0 1.917 1.532 3.44 3.517 3.44Zm-6.104-16a7.865 7.865 0 0 0-3.638.88.75.75 0 1 0 .692 1.331A6.365 6.365 0 0 1 10.836 4c2.588 0 4.77 1.5 5.72 3.655l.179.445a.75.75 0 0 0 .696.471c2.843 0 5.069 2.206 5.069 4.965a4.9 4.9 0 0 1-1.684 3.716.75.75 0 0 0 .986 1.13A6.396 6.396 0 0 0 24 13.536c0-3.44-2.652-6.191-6.054-6.445l-.002-.006a.634.634 0 0 0-.01-.022C16.749 4.358 14.026 2.5 10.837 2.5Z" }, "children": [] } ] } } } }, "code": { "name": "code", "keywords": [ "brackets" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m11.28 3.22 4.25 4.25a.75.75 0 0 1 0 1.06l-4.25 4.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L13.94 8l-3.72-3.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-6.56 0a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L2.06 8l3.72 3.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L.47 8.53a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.22 4.97a.75.75 0 0 1 1.06 0l6.5 6.5a.75.75 0 0 1 0 1.06l-6.5 6.5a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L21.19 12l-5.97-5.97a.75.75 0 0 1 0-1.06Zm-6.44 0a.75.75 0 0 1 0 1.06L2.81 12l5.97 5.97a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-6.5-6.5a.75.75 0 0 1 0-1.06l6.5-6.5a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } } } }, "code-of-conduct": { "name": "code-of-conduct", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.616 4.616 0 0 1 3.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.749.749 0 0 1-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.614 4.614 0 0 1 1.353-3.407C3.123.585 6.223.537 8.048 2.24Zm-1.153.983c-1.25-1.033-3.321-.967-4.48.191a3.115 3.115 0 0 0-.913 2.335c0 1.556 1.109 3.24 2.652 4.813C5.463 11.898 6.96 13.032 8 13.805c.353-.262.758-.565 1.191-.905l-1.326-1.223a.75.75 0 0 1 1.018-1.102l1.48 1.366c.328-.281.659-.577.984-.887L9.99 9.802a.75.75 0 1 1 1.019-1.103l1.384 1.28c.295-.329.566-.661.81-.995L12.92 8.7l-1.167-1.168c-.674-.671-1.78-.664-2.474.03-.268.269-.538.537-.802.797-.893.882-2.319.843-3.185-.032-.346-.35-.693-.697-1.043-1.047a.75.75 0 0 1-.04-1.016c.162-.191.336-.401.52-.623.62-.748 1.356-1.637 2.166-2.417Zm7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.111 3.111 0 0 0-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.755.755 0 0 0 1.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.828 4.328C5.26 1.896 9.5 1.881 11.935 4.317c.024.024.046.05.067.076 1.391-1.078 2.993-1.886 4.777-1.89a6.22 6.22 0 0 1 4.424 1.825c.559.56 1.023 1.165 1.34 1.922.318.756.47 1.617.468 2.663 0 2.972-2.047 5.808-4.269 8.074-2.098 2.14-4.507 3.924-5.974 5.009l-.311.23a.752.752 0 0 1-.897 0l-.312-.23c-1.466-1.085-3.875-2.869-5.973-5.009-2.22-2.263-4.264-5.095-4.27-8.063a6.216 6.216 0 0 1 1.823-4.596Zm8.033 1.042c-1.846-1.834-5.124-1.823-6.969.022a4.712 4.712 0 0 0-1.382 3.52c0 2.332 1.65 4.79 3.839 7.022 1.947 1.986 4.184 3.66 5.66 4.752a78.214 78.214 0 0 0 2.159-1.645l-2.14-1.974a.752.752 0 0 1 1.02-1.106l2.295 2.118c.616-.52 1.242-1.08 1.85-1.672l-2.16-1.992a.753.753 0 0 1 1.021-1.106l2.188 2.02a18.963 18.963 0 0 0 1.528-1.877l-.585-.586-1.651-1.652c-1.078-1.074-2.837-1.055-3.935.043-.379.38-.76.758-1.132 1.126-1.14 1.124-2.96 1.077-4.07-.043-.489-.495-.98-.988-1.475-1.482a.752.752 0 0 1-.04-1.019c.234-.276.483-.576.745-.893.928-1.12 2.023-2.442 3.234-3.576Zm9.725 6.77c.579-1.08.92-2.167.92-3.228.002-.899-.128-1.552-.35-2.08-.22-.526-.551-.974-1.017-1.44a4.71 4.71 0 0 0-3.356-1.384c-1.66.004-3.25.951-4.77 2.346-1.18 1.084-2.233 2.353-3.188 3.506l-.351.423c.331.332.663.664.993.998a1.375 1.375 0 0 0 1.943.03c.37-.365.748-.74 1.125-1.118 1.662-1.663 4.373-1.726 6.06-.045.56.558 1.12 1.12 1.658 1.658Z" }, "children": [] } ] } } } }, "code-review": { "name": "code-review", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 13H8.061l-2.574 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25v-8.5C0 1.784.784 1 1.75 1ZM1.5 2.75v8.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Zm5.28 1.72a.75.75 0 0 1 0 1.06L5.31 7l1.47 1.47a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.75.75 0 0 1 1.06 0Zm2.44 0a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L10.69 7 9.22 5.53a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.3 6.74a.75.75 0 0 1-.04 1.06l-2.908 2.7 2.908 2.7a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 0 1 1.06.04Zm3.44 1.06a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.908-2.7-2.908-2.7Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.749.749 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "code-square": { "name": "code-square", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Zm7.47 3.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L10.69 8 9.22 6.53a.75.75 0 0 1 0-1.06ZM6.78 6.53 5.31 8l1.47 1.47a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-2-2a.75.75 0 0 1 0-1.06l2-2a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.3 8.24a.75.75 0 0 1-.04 1.06L7.352 12l2.908 2.7a.75.75 0 1 1-1.02 1.1l-3.5-3.25a.75.75 0 0 1 0-1.1l3.5-3.25a.75.75 0 0 1 1.06.04Zm3.44 1.06a.75.75 0 1 1 1.02-1.1l3.5 3.25a.75.75 0 0 1 0 1.1l-3.5 3.25a.75.75 0 1 1-1.02-1.1l2.908-2.7-2.908-2.7Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "codescan": { "name": "codescan", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.47 4.97a.75.75 0 0 0 0 1.06L9.94 7.5 8.47 8.97a.75.75 0 1 0 1.06 1.06l2-2a.75.75 0 0 0 0-1.06l-2-2a.75.75 0 0 0-1.06 0ZM6.53 6.03a.75.75 0 0 0-1.06-1.06l-2 2a.75.75 0 0 0 0 1.06l2 2a.75.75 0 1 0 1.06-1.06L5.06 7.5l1.47-1.47Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.246 13.307a7.501 7.501 0 1 1 1.06-1.06l2.474 2.473a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM1.5 7.5a6.002 6.002 0 0 0 3.608 5.504 6.002 6.002 0 0 0 6.486-1.117.748.748 0 0 1 .292-.293A6 6 0 1 0 1.5 7.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.97 6.97a.75.75 0 0 0 0 1.06l2.47 2.47-2.47 2.47a.75.75 0 1 0 1.06 1.06l3-3a.75.75 0 0 0 0-1.06l-3-3a.75.75 0 0 0-1.06 0ZM9.03 8.03a.75.75 0 0 0-1.06-1.06l-3 3a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06-1.06L6.56 10.5l2.47-2.47Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.5 0C16.299 0 21 4.701 21 10.5a10.457 10.457 0 0 1-2.564 6.875l4.344 4.345a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-4.345-4.344A10.459 10.459 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5S4.701 0 10.5 0Zm-9 10.5a9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9 9 9 0 0 0-9 9Z" }, "children": [] } ] } } } }, "codescan-checkmark": { "name": "codescan-checkmark", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.28 6.28a.75.75 0 1 0-1.06-1.06L6.25 8.19l-.97-.97a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.06 0l3.5-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.5 15a7.5 7.5 0 1 1 5.807-2.754l2.473 2.474a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-2.474-2.473A7.472 7.472 0 0 1 7.5 15Zm0-13.5a6 6 0 1 0 4.094 10.386.748.748 0 0 1 .293-.292 6.002 6.002 0 0 0 1.117-6.486A6.002 6.002 0 0 0 7.5 1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.03 8.28a.75.75 0 0 0-1.06-1.06l-5.22 5.22-2.22-2.22a.75.75 0 1 0-1.06 1.06l2.75 2.75a.75.75 0 0 0 1.06 0l5.75-5.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-4.345-4.344A10.457 10.457 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5Zm10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Z" }, "children": [] } ] } } } }, "codespaces": { "name": "codespaces", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 11.25c0-.966.784-1.75 1.75-1.75h12.5c.966 0 1.75.784 1.75 1.75v3A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm2-9.5C2 .784 2.784 0 3.75 0h8.5C13.216 0 14 .784 14 1.75v5a1.75 1.75 0 0 1-1.75 1.75h-8.5A1.75 1.75 0 0 1 2 6.75Zm1.75-.25a.25.25 0 0 0-.25.25v5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5a.25.25 0 0 0-.25-.25Zm-2 9.5a.25.25 0 0 0-.25.25v3c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-3a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7 12.75a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Zm-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 3.75C3.5 2.784 4.284 2 5.25 2h13.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 18.75 13H5.25a1.75 1.75 0 0 1-1.75-1.75Zm-2 12c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v4a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75ZM5.25 3.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h13.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Zm-2 12a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10 17.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm-4 0a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "columns": { "name": "columns", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 0h2.5C6.216 0 7 .784 7 1.75v12.5A1.75 1.75 0 0 1 5.25 16h-2.5A1.75 1.75 0 0 1 1 14.25V1.75C1 .784 1.784 0 2.75 0Zm8 0h2.5C14.216 0 15 .784 15 1.75v12.5A1.75 1.75 0 0 1 13.25 16h-2.5A1.75 1.75 0 0 1 9 14.25V1.75C9 .784 9.784 0 10.75 0ZM2.5 1.75v12.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25Zm8 0v12.5c0 .138.112.25.25.25h2.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h5.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 9.25 22h-5.5A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2Zm11 0h5.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22h-5.5A1.75 1.75 0 0 1 13 20.25V3.75c0-.966.784-1.75 1.75-1.75ZM3.5 3.75v16.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25Zm11 0v16.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "command-palette": { "name": "command-palette", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m6.354 8.04-4.773 4.773a.75.75 0 1 0 1.061 1.06L7.945 8.57a.75.75 0 0 0 0-1.06L2.642 2.206a.75.75 0 0 0-1.06 1.061L6.353 8.04ZM8.75 11.5a.75.75 0 0 0 0 1.5h5.5a.75.75 0 0 0 0-1.5h-5.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.045 18.894 9.94 12 3.045 5.106a.75.75 0 0 1 1.06-1.061l7.425 7.425a.75.75 0 0 1 0 1.06l-7.424 7.425a.75.75 0 0 1-1.061-1.06Zm8.205.606a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5h-9.5Z" }, "children": [] } ] } } } }, "comment": { "name": "comment", "keywords": [ "speak", "bubble" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 13.25 12H9.06l-2.573 2.573A1.458 1.458 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.749.749 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "comment-discussion": { "name": "comment-discussion", "keywords": [ "converse", "talk" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 1h8.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.458 1.458 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25v-5.5C0 1.784.784 1 1.75 1ZM1.5 2.75v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25Zm13 2a.25.25 0 0 0-.25-.25h-.5a.75.75 0 0 1 0-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.458 1.458 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l2.22 2.22v-2.19a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.458 1.458 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25v-9.5C0 1.784.784 1 1.75 1ZM1.5 2.75v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22.5 8.75a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5a.75.75 0 0 1 .53.22l2.72 2.72v-2.19a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5Z" }, "children": [] } ] } } } }, "commit": { "name": "commit", "keywords": [], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 11.75A.75.75 0 0 1 .75 11h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Zm17.5 0a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 17.75a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm0-1.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z" }, "children": [] } ] } } } }, "container": { "name": "container", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m10.41.24 4.711 2.774c.544.316.878.897.879 1.526v5.01a1.77 1.77 0 0 1-.88 1.53l-7.753 4.521-.002.001a1.769 1.769 0 0 1-1.774 0H5.59L.873 12.85A1.761 1.761 0 0 1 0 11.327V6.292c0-.304.078-.598.22-.855l.004-.005.01-.019c.15-.262.369-.486.64-.643L8.641.239a1.752 1.752 0 0 1 1.765 0l.002.001ZM9.397 1.534l-7.17 4.182 4.116 2.388a.27.27 0 0 0 .269 0l7.152-4.148-4.115-2.422a.252.252 0 0 0-.252 0Zm-7.768 10.02 4.1 2.393V9.474a1.807 1.807 0 0 1-.138-.072L1.5 7.029v4.298c0 .095.05.181.129.227Zm8.6.642 1.521-.887v-4.45l-1.521.882ZM7.365 9.402h.001c-.044.026-.09.049-.136.071v4.472l1.5-.875V8.61Zm5.885 1.032 1.115-.65h.002a.267.267 0 0 0 .133-.232V5.264l-1.25.725Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.152.682a2.251 2.251 0 0 1 2.269 0l.007.004 6.957 4.276a2.277 2.277 0 0 1 1.126 1.964v7.516c0 .81-.432 1.56-1.133 1.968l-.002.001-11.964 7.037-.004.003c-.706.41-1.578.41-2.284 0l-.026-.015-6.503-4.502a2.268 2.268 0 0 1-1.096-1.943V9.438c0-.392.1-.77.284-1.1l.003-.006.014-.026c.197-.342.48-.627.82-.827h.002L13.152.681Zm.757 1.295h-.001L2.648 8.616l6.248 4.247a.775.775 0 0 0 .758-.01h.001l11.633-6.804-6.629-4.074a.75.75 0 0 0-.75.003ZM8.517 14.33a2.286 2.286 0 0 1-.393-.18l-.023-.014-6.102-4.147v7.003c0 .275.145.528.379.664l.025.014 6.114 4.232V14.33ZM18 9.709l-3.25 1.9v7.548L18 17.245Zm-7.59 4.438-.002.002a2.296 2.296 0 0 1-.391.18v7.612l3.233-1.902v-7.552Zm9.09-5.316v7.532l2.124-1.25a.776.776 0 0 0 .387-.671V7.363Z" }, "children": [] } ] } } } }, "copilot": { "name": "copilot", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.998 15.035c-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612.012.076.024.148.037.218.924.385 1.522 1.471 1.591 2.095v1.872c0 .766-3.351 3.795-8.002 3.795Zm0-1.485c2.28 0 4.584-1.11 5.002-1.433V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-1.146 0-2.059-.327-2.71-.991A3.222 3.222 0 0 1 8 6.303a3.24 3.24 0 0 1-.544.743c-.65.664-1.563.991-2.71.991-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433ZM6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614Zm4.155-.297c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.25 9.037a.75.75 0 0 1 .75.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 .75-.75Zm4.25.75v1.501a.75.75 0 0 1-1.5 0V9.787a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M23.922 16.992c-.861 1.495-5.859 5.023-11.922 5.023-6.063 0-11.061-3.528-11.922-5.023A.641.641 0 0 1 0 16.736v-2.869a.841.841 0 0 1 .053-.22c.372-.935 1.347-2.292 2.605-2.656.167-.429.414-1.055.644-1.517a10.195 10.195 0 0 1-.052-1.086c0-1.331.282-2.499 1.132-3.368.397-.406.89-.717 1.474-.952 1.399-1.136 3.392-2.093 6.122-2.093 2.731 0 4.767.957 6.166 2.093.584.235 1.077.546 1.474.952.85.869 1.132 2.037 1.132 3.368 0 .368-.014.733-.052 1.086.23.462.477 1.088.644 1.517 1.258.364 2.233 1.721 2.605 2.656a.832.832 0 0 1 .053.22v2.869a.641.641 0 0 1-.078.256ZM12.172 11h-.344a4.323 4.323 0 0 1-.355.508C10.703 12.455 9.555 13 7.965 13c-1.725 0-2.989-.359-3.782-1.259a2.005 2.005 0 0 1-.085-.104L4 11.741v6.585c1.435.779 4.514 2.179 8 2.179 3.486 0 6.565-1.4 8-2.179v-6.585l-.098-.104s-.033.045-.085.104c-.793.9-2.057 1.259-3.782 1.259-1.59 0-2.738-.545-3.508-1.492a4.323 4.323 0 0 1-.355-.508h-.016.016Zm.641-2.935c.136 1.057.403 1.913.878 2.497.442.544 1.134.938 2.344.938 1.573 0 2.292-.337 2.657-.751.384-.435.558-1.15.558-2.361 0-1.14-.243-1.847-.705-2.319-.477-.488-1.319-.862-2.824-1.025-1.487-.161-2.192.138-2.533.529-.269.307-.437.808-.438 1.578v.021c0 .265.021.562.063.893Zm-1.626 0c.042-.331.063-.628.063-.894v-.02c-.001-.77-.169-1.271-.438-1.578-.341-.391-1.046-.69-2.533-.529-1.505.163-2.347.537-2.824 1.025-.462.472-.705 1.179-.705 2.319 0 1.211.175 1.926.558 2.361.365.414 1.084.751 2.657.751 1.21 0 1.902-.394 2.344-.938.475-.584.742-1.44.878-2.497Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.5 14.25a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0v-2a1 1 0 0 1 1-1Zm-5 0a1 1 0 0 1 1 1v2a1 1 0 0 1-2 0v-2a1 1 0 0 1 1-1Z" }, "children": [] } ] } }, "48": { "width": 48, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "48", "height": "48", "viewBox": "0 0 48 48" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M47.801 34.003c-1.72 2.988-11.706 10.037-23.82 10.037S1.881 36.991.161 34.003a1.309 1.309 0 0 1-.161-.57v-5.615c.012-.17.047-.338.11-.498.744-1.867 2.692-4.58 5.206-5.308.333-.855.826-2.106 1.287-3.029a20.112 20.112 0 0 1-.104-2.171c0-2.659.563-4.992 2.262-6.729.793-.811 1.777-1.433 2.945-1.901C14.502 5.911 18.483 4 23.938 4c5.455 0 9.523 1.911 12.319 4.182 1.167.468 2.151 1.09 2.944 1.901 1.699 1.737 2.263 4.07 2.263 6.729 0 .736-.027 1.465-.105 2.171.461.923.954 2.174 1.288 3.029 2.513.728 4.461 3.441 5.205 5.308.081.205.115.424.115.645v5.318c0 .252-.04.502-.166.72ZM24.325 22.031h-.688a8.52 8.52 0 0 1-.709 1.016c-1.537 1.892-3.833 2.98-7.008 2.98-3.447 0-5.972-.717-7.557-2.514a4.408 4.408 0 0 1-.171-.21l-.195.21v13.155c2.867 1.558 9.02 4.353 15.984 4.353s13.117-2.795 15.984-4.353V23.513l-.195-.21s-.066.091-.171.21c-1.584 1.797-4.11 2.514-7.557 2.514-3.175 0-5.47-1.088-7.008-2.98a8.637 8.637 0 0 1-.709-1.016h-.033.033Zm-1.969-5.864a14.31 14.31 0 0 0 .127-1.785v-.042c-.003-1.537-.339-2.538-.876-3.152-.681-.78-2.09-1.378-5.06-1.057-3.008.326-4.69 1.073-5.643 2.048-.923.944-1.408 2.356-1.408 4.633 0 2.42.348 3.849 1.115 4.719.729.827 2.165 1.499 5.309 1.499 2.417 0 3.799-.786 4.683-1.873.948-1.168 1.482-2.878 1.753-4.99Zm3.25 0c.271 2.112.805 3.822 1.754 4.99.883 1.087 2.265 1.873 4.682 1.873 3.145 0 4.58-.672 5.309-1.499.767-.87 1.116-2.299 1.116-4.719 0-2.277-.485-3.689-1.408-4.633-.954-.975-2.635-1.722-5.644-2.048-2.969-.321-4.378.277-5.06 1.057-.537.614-.873 1.615-.876 3.152v.042c.002.53.042 1.123.127 1.785Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M28.998 28.516c1.104 0 1.999.895 1.999 1.999v3.998a2 2 0 1 1-3.998 0v-3.998c0-1.104.895-1.999 1.999-1.999Zm-9.996 0c1.104 0 1.999.895 1.999 1.999v3.998a2 2 0 1 1-3.998 0v-3.998c0-1.104.895-1.999 1.999-1.999Z" }, "children": [] } ] } }, "96": { "width": 96, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "96", "height": "96", "viewBox": "0 0 96 96" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M95.667 67.954C92.225 73.933 72.24 88.04 47.997 88.04 23.754 88.04 3.769 73.933.328 67.954c-.216-.375-.307-.796-.328-1.226V55.661c.019-.371.089-.736.226-1.081 1.489-3.738 5.386-9.166 10.417-10.623.667-1.712 1.655-4.215 2.576-6.062-.154-1.414-.208-2.872-.208-4.345 0-5.322 1.128-9.99 4.527-13.466 1.587-1.623 3.557-2.869 5.893-3.805 5.595-4.545 13.563-8.369 24.48-8.369s19.057 3.824 24.652 8.369c2.337.936 4.306 2.182 5.894 3.805 3.399 3.476 4.527 8.144 4.527 13.466 0 1.473-.054 2.931-.208 4.345.921 1.847 1.909 4.35 2.576 6.062 5.03 1.457 8.928 6.885 10.417 10.623.163.41.231.848.231 1.289v10.644c0 .504-.081 1.004-.333 1.441ZM48.686 43.993l-.3.001-1.077-.001c-.423.709-.894 1.39-1.418 2.035-3.078 3.787-7.672 5.964-14.026 5.964-6.897 0-11.952-1.435-15.123-5.032a7.886 7.886 0 0 1-.342-.419l-.39.419v26.326c5.737 3.118 18.05 8.713 31.987 8.713 13.938 0 26.251-5.595 31.988-8.713V46.96l-.39-.419s-.132.181-.342.419c-3.171 3.597-8.226 5.032-15.123 5.032-6.354 0-10.949-2.177-14.026-5.964a17.178 17.178 0 0 1-1.418-2.034h-.066l.066-.001Zm-3.94-11.733c.17-1.326.251-2.513.253-3.573v-.084c-.005-3.077-.678-5.079-1.752-6.308-1.365-1.562-4.184-2.758-10.127-2.115-6.021.652-9.386 2.146-11.294 4.098-1.847 1.889-2.818 4.715-2.818 9.272 0 4.842.698 7.703 2.232 9.443 1.459 1.655 4.332 3.001 10.625 3.001 4.837 0 7.603-1.573 9.371-3.749 1.899-2.336 2.967-5.759 3.51-9.985Zm6.503 0c.543 4.226 1.611 7.649 3.51 9.985 1.768 2.176 4.533 3.749 9.371 3.749 6.292 0 9.165-1.346 10.624-3.001 1.535-1.74 2.232-4.601 2.232-9.443 0-4.557-.97-7.383-2.817-9.272-1.908-1.952-5.274-3.446-11.294-4.098-5.943-.643-8.763.553-10.127 2.115-1.074 1.229-1.747 3.231-1.752 6.308v.084c.002 1.06.083 2.247.253 3.573Zm-2.563 11.734h.066l-.066-.001v.001Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M38.5 55.75a3.5 3.5 0 0 1 3.5 3.5v8.5a3.5 3.5 0 1 1-7 0v-8.5a3.5 3.5 0 0 1 3.5-3.5Zm19 0a3.5 3.5 0 0 1 3.5 3.5v8.5a3.5 3.5 0 1 1-7 0v-8.5a3.5 3.5 0 0 1 3.5-3.5Z" }, "children": [] } ] } } } }, "copilot-error": { "name": "copilot-error", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 11.24c0 .112-.072.274-.21.467L13 9.688V7.862l-.023-.116c-.49.21-1.075.291-1.727.291-.198 0-.388-.009-.571-.029L6.833 5.226a4.01 4.01 0 0 0 .17-.782c.117-.935-.037-1.395-.241-1.614-.193-.206-.637-.413-1.682-.297-.683.076-1.115.231-1.395.415l-1.257-.91c.579-.564 1.413-.877 2.485-.996 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .572-.053 1.148-.254 1.656.066.228.098.429.126.612.012.076.024.148.037.218.924.385 1.522 1.471 1.591 2.095Zm-5.083-8.707c-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.091.726.303 1.231.618 1.553.299.305.784.54 1.638.54.922 0 1.28-.198 1.442-.379.179-.2.308-.578.308-1.371 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7Zm2.511 11.074c-1.393.776-3.272 1.428-5.43 1.428-4.562 0-7.873-2.914-7.998-3.749V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.18-.455-.241-.963-.252-1.475L.31 4.107A.747.747 0 0 1 0 3.509V3.49a.748.748 0 0 1 .625-.73c.156-.026.306.047.435.139l14.667 10.578a.592.592 0 0 1 .227.264.752.752 0 0 1 .046.249v.022a.75.75 0 0 1-1.19.596Zm-1.367-.991L5.635 7.964a5.128 5.128 0 0 1-.889.073c-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.419.323 2.722 1.433 5.002 1.433 1.539 0 3.089-.505 4.063-.934Z" }, "children": [] } ] } } } }, "copilot-warning": { "name": "copilot-warning", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.498 14.811a4.53 4.53 0 0 1-1.161-1.337 4.476 4.476 0 0 1-.587-2.224 4.496 4.496 0 0 1 4.5-4.5 4.5 4.5 0 0 1 4.5 4.5 4.5 4.5 0 0 1-7.252 3.561ZM10.5 8.75V11a.75.75 0 0 0 1.5 0V8.75a.75.75 0 1 0-1.5 0Zm.75 5.75a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m14.354 6.114-.05-.029a5.949 5.949 0 0 0-1.351-.589c.03-.19.047-.422.047-.709 0-.765-.123-1.242-.37-1.554-.233-.296-.693-.587-1.713-.7-1.044-.116-1.488.091-1.681.297-.204.219-.359.679-.242 1.614.058.462.165.834.316 1.127A6.025 6.025 0 0 0 6.369 7.76c-.472.185-1.015.277-1.623.277-.652 0-1.236-.081-1.727-.291l-.023.116v4.255c.265.205 1.285.725 2.577 1.079a5.937 5.937 0 0 0 .939 1.736C2.733 14.407.111 12.027 0 11.286V9.338c.085-.628.677-1.686 1.588-2.065.013-.07.024-.143.036-.218.029-.183.06-.384.126-.612-.201-.508-.254-1.084-.254-1.656 0-.87.128-1.769.693-2.484.579-.733 1.494-1.124 2.724-1.261 1.206-.134 2.262.034 2.944.765.05.053.096.108.139.165.044-.057.094-.112.143-.165.682-.731 1.738-.899 2.944-.765 1.23.137 2.145.528 2.724 1.261.566.715.693 1.614.693 2.484 0 .452-.033.906-.146 1.327ZM6.762 2.83c-.193-.206-.637-.413-1.682-.297-1.019.113-1.479.404-1.713.7-.247.312-.369.789-.369 1.554 0 .793.129 1.171.308 1.371.162.181.519.379 1.442.379.853 0 1.339-.235 1.638-.54.315-.322.527-.827.617-1.553.117-.935-.037-1.395-.241-1.614Z" }, "children": [] } ] } } } }, "copy": { "name": "copy", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 6.75C0 5.784.784 5 1.75 5h1.5a.75.75 0 0 1 0 1.5h-1.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-1.5a.75.75 0 0 1 1.5 0v1.5A1.75 1.75 0 0 1 9.25 16h-7.5A1.75 1.75 0 0 1 0 14.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 1.75C5 .784 5.784 0 6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25Zm1.75-.25a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.024 3.75c0-.966.784-1.75 1.75-1.75H20.25c.966 0 1.75.784 1.75 1.75v11.498a1.75 1.75 0 0 1-1.75 1.75H8.774a1.75 1.75 0 0 1-1.75-1.75Zm1.75-.25a.25.25 0 0 0-.25.25v11.498c0 .139.112.25.25.25H20.25a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.995 10.749a1.75 1.75 0 0 1 1.75-1.751H5.25a.75.75 0 1 1 0 1.5H3.745a.25.25 0 0 0-.25.25L3.5 20.25c0 .138.111.25.25.25h9.5a.25.25 0 0 0 .25-.25v-1.51a.75.75 0 1 1 1.5 0v1.51A1.75 1.75 0 0 1 13.25 22h-9.5A1.75 1.75 0 0 1 2 20.25l-.005-9.501Z" }, "children": [] } ] } } } }, "cpu": { "name": "cpu", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.5.75V2h3V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75V5h1.25a.75.75 0 0 1 0 1.5H14v3h1.25a.75.75 0 0 1 0 1.5H14v1.25A1.75 1.75 0 0 1 12.25 14H11v1.25a.75.75 0 0 1-1.5 0V14h-3v1.25a.75.75 0 0 1-1.5 0V14H3.75A1.75 1.75 0 0 1 2 12.25V11H.75a.75.75 0 0 1 0-1.5H2v-3H.75a.75.75 0 0 1 0-1.5H2V3.75C2 2.784 2.784 2 3.75 2H5V.75a.75.75 0 0 1 1.5 0Zm5.75 11.75a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25ZM5.75 5h4.5a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1-.75-.75v-4.5A.75.75 0 0 1 5.75 5Zm.75 4.5h3v-3h-3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 8h6.5a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75h-6.5a.75.75 0 0 1-.75-.75v-6.5A.75.75 0 0 1 8.75 8Zm.75 6.5h5v-5h-5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.25 1a.75.75 0 0 1 .75.75V4h2.25c.966 0 1.75.784 1.75 1.75V8h2.25a.75.75 0 0 1 0 1.5H20v5h2.25a.75.75 0 0 1 0 1.5H20v2.25A1.75 1.75 0 0 1 18.25 20H16v2.25a.75.75 0 0 1-1.5 0V20h-5v2.25a.75.75 0 0 1-1.5 0V20H5.75A1.75 1.75 0 0 1 4 18.25V16H1.75a.75.75 0 0 1 0-1.5H4v-5H1.75a.75.75 0 0 1 0-1.5H4V5.75C4 4.784 4.784 4 5.75 4H8V1.75a.75.75 0 0 1 1.5 0V4h5V1.75a.75.75 0 0 1 .75-.75Zm3 17.5a.25.25 0 0 0 .25-.25V5.75a.25.25 0 0 0-.25-.25H5.75a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25Z" }, "children": [] } ] } } } }, "credit-card": { "name": "credit-card", "keywords": [ "money", "billing", "payments", "transactions" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.75 9a.75.75 0 0 0 0 1.5h1.5a.75.75 0 0 0 0-1.5h-1.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25ZM14.5 6.5h-13v5.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Zm0-2.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25V5h13Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.25 14a.75.75 0 0 0 0 1.5h3.5a.75.75 0 0 0 0-1.5h-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25V4.75C0 3.784.784 3 1.75 3Zm-.25 7v9.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V10Zm0-5.25V8.5h21V4.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "cross-reference": { "name": "cross-reference", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 3.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 13H9.06l-2.573 2.573A1.458 1.458 0 0 1 4 14.543V13H2.75A1.75 1.75 0 0 1 1 11.25v-7.5C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 0 1 0 1.5ZM16 1.25v4.146a.25.25 0 0 1-.427.177L14.03 4.03l-3.75 3.75a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l3.75-3.75-1.543-1.543A.25.25 0 0 1 11.604 1h4.146a.25.25 0 0 1 .25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.5 2.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V4.06l-6.22 6.22a.75.75 0 1 1-1.06-1.06L20.94 3h-3.69a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.72-3.72a.75.75 0 0 1 .53-.22h10a.25.25 0 0 0 .25-.25v-6a.75.75 0 0 1 1.5 0v6a1.75 1.75 0 0 1-1.75 1.75h-9.69l-3.573 3.573A1.457 1.457 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75V4.25c0-.966.784-1.75 1.75-1.75h11a.75.75 0 0 1 0 1.5h-11Z" }, "children": [] } ] } } } }, "dash": { "name": "dash", "keywords": [ "hyphen", "range" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 7.75A.75.75 0 0 1 2.75 7h10a.75.75 0 0 1 0 1.5h-10A.75.75 0 0 1 2 7.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.5 12.75a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 0 1.5H5.25a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "database": { "name": "database", "keywords": [ "disks", "data" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 3.5c0-.626.292-1.165.7-1.59.406-.422.956-.767 1.579-1.041C4.525.32 6.195 0 8 0c1.805 0 3.475.32 4.722.869.622.274 1.172.62 1.578 1.04.408.426.7.965.7 1.591v9c0 .626-.292 1.165-.7 1.59-.406.422-.956.767-1.579 1.041C11.476 15.68 9.806 16 8 16c-1.805 0-3.475-.32-4.721-.869-.623-.274-1.173-.62-1.579-1.04-.408-.426-.7-.965-.7-1.591Zm1.5 0c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 5.205 6.353 5.5 8 5.5c1.646 0 3.101-.295 4.118-.742.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55 0-.133-.058-.318-.282-.551-.227-.237-.591-.483-1.101-.707C11.102 1.795 9.647 1.5 8 1.5c-1.646 0-3.101.295-4.118.742-.508.224-.873.471-1.1.708-.224.232-.282.417-.282.55Zm0 4.5c0 .133.058.318.282.551.227.237.591.483 1.101.707C4.898 9.705 6.353 10 8 10c1.646 0 3.101-.295 4.118-.742.508-.224.873-.471 1.1-.708.224-.232.282-.417.282-.55V5.724c-.241.15-.503.286-.778.407C11.475 6.68 9.805 7 8 7c-1.805 0-3.475-.32-4.721-.869a6.15 6.15 0 0 1-.779-.407Zm0 2.225V12.5c0 .133.058.318.282.55.227.237.592.484 1.1.708 1.016.447 2.471.742 4.118.742 1.647 0 3.102-.295 4.117-.742.51-.224.874-.47 1.101-.707.224-.233.282-.418.282-.551v-2.275c-.241.15-.503.285-.778.406-1.247.549-2.917.869-4.722.869-1.805 0-3.475-.32-4.721-.869a6.327 6.327 0 0 1-.779-.406Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1.25c2.487 0 4.773.402 6.466 1.079.844.337 1.577.758 2.112 1.264.536.507.922 1.151.922 1.907v12.987l-.026.013h.026c0 .756-.386 1.4-.922 1.907-.535.506-1.268.927-2.112 1.264-1.693.677-3.979 1.079-6.466 1.079s-4.774-.402-6.466-1.079c-.844-.337-1.577-.758-2.112-1.264C2.886 19.9 2.5 19.256 2.5 18.5h.026l-.026-.013V5.5c0-.756.386-1.4.922-1.907.535-.506 1.268-.927 2.112-1.264C7.226 1.652 9.513 1.25 12 1.25ZM4 14.371v4.116l-.013.013H4c0 .211.103.487.453.817.351.332.898.666 1.638.962 1.475.589 3.564.971 5.909.971 2.345 0 4.434-.381 5.909-.971.739-.296 1.288-.63 1.638-.962.349-.33.453-.607.453-.817h.013L20 18.487v-4.116a7.85 7.85 0 0 1-1.534.8c-1.693.677-3.979 1.079-6.466 1.079s-4.774-.402-6.466-1.079a7.843 7.843 0 0 1-1.534-.8ZM20 12V7.871a7.85 7.85 0 0 1-1.534.8C16.773 9.348 14.487 9.75 12 9.75s-4.774-.402-6.466-1.079A7.85 7.85 0 0 1 4 7.871V12c0 .21.104.487.453.817.35.332.899.666 1.638.961 1.475.59 3.564.972 5.909.972 2.345 0 4.434-.382 5.909-.972.74-.295 1.287-.629 1.638-.96.35-.33.453-.607.453-.818ZM4 5.5c0 .211.103.487.453.817.351.332.898.666 1.638.962 1.475.589 3.564.971 5.909.971 2.345 0 4.434-.381 5.909-.971.739-.296 1.288-.63 1.638-.962.349-.33.453-.607.453-.817 0-.211-.103-.487-.453-.817-.351-.332-.898-.666-1.638-.962-1.475-.589-3.564-.971-5.909-.971-2.345 0-4.434.381-5.909.971-.739.296-1.288.63-1.638.962C4.104 5.013 4 5.29 4 5.5Z" }, "children": [] } ] } } } }, "dependabot": { "name": "dependabot", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 7.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75Zm5.25.75a.75.75 0 0 0-1.5 0v1.5a.75.75 0 0 0 1.5 0v-1.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.25 0h2A.75.75 0 0 1 9 .75V3.5h3.25a2.25 2.25 0 0 1 2.25 2.25V8h.75a.75.75 0 0 1 0 1.5h-.75v2.75a2.25 2.25 0 0 1-2.25 2.25h-8.5a2.25 2.25 0 0 1-2.25-2.25V9.5H.75a.75.75 0 0 1 0-1.5h.75V5.75A2.25 2.25 0 0 1 3.75 3.5H7.5v-2H6.25a.75.75 0 0 1 0-1.5ZM3 5.75v6.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-6.5a.75.75 0 0 0-.75-.75h-8.5a.75.75 0 0 0-.75.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 11a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.75.75 0 0 1 .75-.75Zm7.25.75a.75.75 0 0 0-1.5 0v3.5a.75.75 0 0 0 1.5 0v-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.813 1h2.437a.75.75 0 0 1 .75.75V5h6.75A2.25 2.25 0 0 1 22 7.25v5.25h1.25a.75.75 0 0 1 0 1.5H22v5.75A2.25 2.25 0 0 1 19.75 22H4.25A2.25 2.25 0 0 1 2 19.75V14H.75a.75.75 0 0 1 0-1.5H2V7.25A2.25 2.25 0 0 1 4.25 5h7.25V2.5H9.813A.75.75 0 0 1 9.812 1ZM3.5 7.25v12.5c0 .414.336.75.75.75h15.5a.75.75 0 0 0 .75-.75V7.25a.75.75 0 0 0-.75-.75H4.25a.75.75 0 0 0-.75.75Z" }, "children": [] } ] } } } }, "desktop-download": { "name": "desktop-download", "keywords": [ "clone", "download" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m4.927 5.427 2.896 2.896a.25.25 0 0 0 .354 0l2.896-2.896A.25.25 0 0 0 10.896 5H8.75V.75a.75.75 0 1 0-1.5 0V5H5.104a.25.25 0 0 0-.177.427Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.573 2.573a.25.25 0 0 0-.073.177v7.5a.25.25 0 0 0 .25.25h12.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25h-3a.75.75 0 1 1 0-1.5h3A1.75 1.75 0 0 1 16 2.75v7.5A1.75 1.75 0 0 1 14.25 12h-3.727c.099 1.041.52 1.872 1.292 2.757A.75.75 0 0 1 11.25 16h-6.5a.75.75 0 0 1-.565-1.243c.772-.885 1.192-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5A1.75 1.75 0 0 1 1.75 1h3a.75.75 0 0 1 0 1.5h-3a.25.25 0 0 0-.177.073ZM6.982 12a5.72 5.72 0 0 1-.765 2.5h3.566a5.72 5.72 0 0 1-.765-2.5H6.982Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.25 9.331V.75a.75.75 0 0 1 1.5 0v8.58l1.949-2.11A.75.75 0 1 1 15.8 8.237l-3.25 3.52a.75.75 0 0 1-1.102 0l-3.25-3.52A.75.75 0 1 1 9.3 7.22l1.949 2.111Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 3.75v11.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25h-5.5a.75.75 0 0 1 0-1.5h5.5c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 21.25 17h-6.204c.171 1.375.805 2.652 1.769 3.757A.752.752 0 0 1 16.25 22h-8.5a.75.75 0 0 1-.566-1.243c.965-1.105 1.599-2.382 1.77-3.757H2.75A1.75 1.75 0 0 1 1 15.25V3.75C1 2.784 1.784 2 2.75 2h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25ZM10.463 17c-.126 1.266-.564 2.445-1.223 3.5h5.52c-.66-1.055-1.098-2.234-1.223-3.5Z" }, "children": [] } ] } } } }, "device-camera": { "name": "device-camera", "keywords": [ "photo", "picture", "image", "snapshot" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 3c.55 0 1 .45 1 1v9c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1 0-.55.45-1 1-1h4c.55 0 1 .45 1 1Zm-4.5 9c1.94 0 3.5-1.56 3.5-3.5S12.44 5 10.5 5 7 6.56 7 8.5 8.56 12 10.5 12ZM13 8.5c0 1.38-1.13 2.5-2.5 2.5S8 9.87 8 8.5 9.13 6 10.5 6 13 7.13 13 8.5ZM6 5V4H2v1Z" }, "children": [] } ] } } } }, "device-camera-video": { "name": "device-camera-video", "keywords": [ "watch", "view", "media", "stream" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 3.75v8.5a.75.75 0 0 1-1.136.643L11 10.575v.675A1.75 1.75 0 0 1 9.25 13h-7.5A1.75 1.75 0 0 1 0 11.25v-6.5C0 3.784.784 3 1.75 3h7.5c.966 0 1.75.784 1.75 1.75v.675l3.864-2.318A.75.75 0 0 1 16 3.75Zm-6.5 1a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-6.5ZM11 8.825l3.5 2.1v-5.85l-3.5 2.1Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M24 5.25v13a.75.75 0 0 1-1.136.643L16.5 15.075v2.175A1.75 1.75 0 0 1 14.75 19h-13A1.75 1.75 0 0 1 0 17.25v-11C0 5.284.784 4.5 1.75 4.5h13c.966 0 1.75.784 1.75 1.75v2.175l6.364-3.818A.75.75 0 0 1 24 5.25Zm-9 1a.25.25 0 0 0-.25-.25h-13a.25.25 0 0 0-.25.25v11c0 .138.112.25.25.25h13a.25.25 0 0 0 .25-.25v-11Zm1.5 7.075 6 3.6V6.575l-6 3.6Z" }, "children": [] } ] } } } }, "device-desktop": { "name": "device-desktop", "keywords": [ "computer", "monitor" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.25 1c.966 0 1.75.784 1.75 1.75v7.5A1.75 1.75 0 0 1 14.25 12h-3.727c.099 1.041.52 1.872 1.292 2.757A.752.752 0 0 1 11.25 16h-6.5a.75.75 0 0 1-.565-1.243c.772-.885 1.192-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5C0 1.784.784 1 1.75 1ZM1.75 2.5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25ZM9.018 12H6.982a5.72 5.72 0 0 1-.765 2.5h3.566a5.72 5.72 0 0 1-.765-2.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.954 17H2.75A1.75 1.75 0 0 1 1 15.25V3.75C1 2.784 1.784 2 2.75 2h18.5c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 21.25 17h-6.204c.171 1.375.805 2.652 1.769 3.757A.752.752 0 0 1 16.25 22h-8.5a.75.75 0 0 1-.565-1.243c.964-1.105 1.598-2.382 1.769-3.757ZM21.5 3.75a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25ZM13.537 17h-3.074c-.126 1.266-.564 2.445-1.223 3.5h5.52c-.659-1.055-1.098-2.234-1.223-3.5Z" }, "children": [] } ] } } } }, "device-mobile": { "name": "device-mobile", "keywords": [ "phone", "iphone", "cellphone" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 0h8.5C13.216 0 14 .784 14 1.75v12.5A1.75 1.75 0 0 1 12.25 16h-8.5A1.75 1.75 0 0 1 2 14.25V1.75C2 .784 2.784 0 3.75 0ZM3.5 1.75v12.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM8 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.25 5.25A.75.75 0 0 1 11 4.5h2A.75.75 0 0 1 13 6h-2a.75.75 0 0 1-.75-.75ZM12 19.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 2.75C4 1.784 4.784 1 5.75 1h12.5c.966 0 1.75.784 1.75 1.75v18.5A1.75 1.75 0 0 1 18.25 23H5.75A1.75 1.75 0 0 1 4 21.25Zm1.75-.25a.25.25 0 0 0-.25.25v18.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "devices": { "name": "devices", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75V5a.75.75 0 0 1-1.5 0V2.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25H7A.75.75 0 0 1 7 12h-.268a5.712 5.712 0 0 1-.765 2.5H7A.75.75 0 0 1 7 16H4.5a.75.75 0 0 1-.565-1.243c.772-.885 1.193-1.716 1.292-2.757H1.75A1.75 1.75 0 0 1 0 10.25v-7.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.75 7h3.5c.967 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 16h-3.5A1.75 1.75 0 0 1 9 14.25v-5.5C9 7.784 9.783 7 10.75 7Zm-.25 1.75v5.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-3.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 3.75C1 2.784 1.784 2 2.75 2h18.5c.966 0 1.75.784 1.75 1.75v4a.75.75 0 0 1-1.5 0v-4a.25.25 0 0 0-.25-.25H2.75a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h9a.75.75 0 0 1 0 1.5h-1.287c-.126 1.266-.564 2.445-1.223 3.5h2.51a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.565-1.243c.964-1.105 1.598-2.382 1.769-3.757H2.75A1.75 1.75 0 0 1 1 15.25V3.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14 11.75c0-.967.783-1.75 1.75-1.75h5.5c.966 0 1.75.783 1.75 1.75v8.5A1.75 1.75 0 0 1 21.25 22h-5.5A1.75 1.75 0 0 1 14 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "diamond": { "name": "diamond", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.527 9.237a1.75 1.75 0 0 1 0-2.474L6.777.512a1.75 1.75 0 0 1 2.475 0l6.251 6.25a1.75 1.75 0 0 1 0 2.475l-6.25 6.251a1.75 1.75 0 0 1-2.475 0L.527 9.238Zm1.06-1.414a.25.25 0 0 0 0 .354l6.251 6.25a.25.25 0 0 0 .354 0l6.25-6.25a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.354 0l-6.25 6.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.527 13.237a1.75 1.75 0 0 1 0-2.474l9.272-9.273a1.75 1.75 0 0 1 2.475 0l9.272 9.273a1.75 1.75 0 0 1 0 2.474l-9.272 9.272a1.75 1.75 0 0 1-2.475 0Zm1.06-1.414a.25.25 0 0 0 0 .354l9.273 9.272a.25.25 0 0 0 .353 0l9.272-9.272a.25.25 0 0 0 0-.354l-9.272-9.272a.25.25 0 0 0-.353 0Z" }, "children": [] } ] } } } }, "diff": { "name": "diff", "keywords": [ "difference", "changes", "compare" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 1.75V5H12a.75.75 0 0 1 0 1.5H8.75v3.25a.75.75 0 0 1-1.5 0V6.5H4A.75.75 0 0 1 4 5h3.25V1.75a.75.75 0 0 1 1.5 0ZM4 13h8a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 4 13Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.25 3.5a.75.75 0 0 1 .75.75V8.5h4.25a.75.75 0 0 1 0 1.5H13v4.25a.75.75 0 0 1-1.5 0V10H7.25a.75.75 0 0 1 0-1.5h4.25V4.25a.75.75 0 0 1 .75-.75ZM6.562 19.25a.75.75 0 0 1 .75-.75h9.938a.75.75 0 0 1 0 1.5H7.312a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "diff-added": { "name": "diff-added", "keywords": [ "new", "addition", "plus" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1Zm10.5 1.5H2.75a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25ZM8 4a.75.75 0 0 1 .75.75v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5A.75.75 0 0 1 8 4Z" }, "children": [] } ] } } } }, "diff-ignored": { "name": "diff-ignored", "keywords": [ "slash" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm8.53 3.28-5.5 5.5a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l5.5-5.5a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } } } }, "diff-modified": { "name": "diff-modified", "keywords": [ "dot", "changed", "updated" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z" }, "children": [] } ] } } } }, "diff-removed": { "name": "diff-removed", "keywords": [ "deleted", "subtracted", "dash" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm8.5 6.25h-6.5a.75.75 0 0 1 0-1.5h6.5a.75.75 0 0 1 0 1.5Z" }, "children": [] } ] } } } }, "diff-renamed": { "name": "diff-renamed", "keywords": [ "moved", "arrow" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.25 1c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25V2.75C1 1.784 1.784 1 2.75 1ZM2.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Zm9.03 6.03-3.25 3.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.97-1.97H4.75a.75.75 0 0 1 0-1.5h4.69L7.47 5.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l3.25 3.25a.75.75 0 0 1 0 1.06Z" }, "children": [] } ] } } } }, "discussion-closed": { "name": "discussion-closed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.747.747 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm-5.47.28-3 3a.747.747 0 0 1-1.06 0l-1.5-1.5a.749.749 0 1 1 1.06-1.06l.97.969L7.72 3.72a.749.749 0 1 1 1.06 1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.747.747 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm-9.72-3.22-5 5a.747.747 0 0 1-1.06 0l-2.5-2.5a.749.749 0 1 1 1.06-1.06L7 8.689l4.47-4.469a.749.749 0 1 1 1.06 1.06Z" }, "children": [] } ] } } } }, "discussion-duplicate": { "name": "discussion-duplicate", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.747.747 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm-6.282.03L5.03 7.468a.749.749 0 1 1-1.06-1.061L6.907 3.47a.75.75 0 0 1 1.061 1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.747.747 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25ZM11.28 5.53l-5 5a.749.749 0 1 1-1.06-1.06l5-5a.749.749 0 1 1 1.06 1.06Z" }, "children": [] } ] } } } }, "discussion-outdated": { "name": "discussion-outdated", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h8.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.457 1.457 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25Zm1.75-.25a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.189L6.22 8.72a.747.747 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm12.5 2h-.5a.75.75 0 0 1 0-1.5h.5c.967 0 1.75.783 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.457 1.457 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 1 1 1.06-1.06l2.22 2.219V11.25a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25ZM6.5 4v1.492l.466.187.036.015.812.375a.75.75 0 1 1-.628 1.362l-.795-.367-.92-.368A.75.75 0 0 1 5 6V4a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.783.784 1 1.75 1h12.5c.967 0 1.75.783 1.75 1.75v9.5A1.75 1.75 0 0 1 14.25 14H8.061l-2.574 2.573A1.457 1.457 0 0 1 3 15.543V14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.189l2.72-2.719a.747.747 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm20.5 6h-3.5a.75.75 0 0 1 0-1.5h3.5c.966 0 1.75.784 1.75 1.75v9.5A1.75 1.75 0 0 1 22.25 20H21v1.543a1.457 1.457 0 0 1-2.487 1.03L15.939 20H10.75A1.75 1.75 0 0 1 9 18.25v-1.465a.75.75 0 0 1 1.5 0v1.465c0 .138.112.25.25.25h5.5c.199 0 .39.079.53.22l2.72 2.719V19.25a.75.75 0 0 1 .75-.75h2a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25ZM8.5 4.75v3.14l1.15.488a.608.608 0 0 1 .037.017l1.393.681a.75.75 0 0 1-.66 1.348l-1.374-.673-1.589-.674A.751.751 0 0 1 7 8.386V4.75a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } } } }, "dot": { "name": "dot", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 8a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12Zm0-1.5a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Z" }, "children": [] } ] } } } }, "dot-fill": { "name": "dot-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z" }, "children": [] } ] } } } }, "download": { "name": "download", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.25 7.689V2a.75.75 0 0 1 1.5 0v5.689l1.97-1.969a.749.749 0 1 1 1.06 1.06l-3.25 3.25a.749.749 0 0 1-1.06 0L4.22 6.78a.749.749 0 1 1 1.06-1.06l1.97 1.969Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 17.25a.75.75 0 0 1 .75.75v2.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V18a.75.75 0 0 1 1.5 0v2.25A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25V18a.75.75 0 0 1 .75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.22 9.97a.749.749 0 0 1 1.06 0l4.97 4.969V2.75a.75.75 0 0 1 1.5 0v12.189l4.97-4.969a.749.749 0 1 1 1.06 1.06l-6.25 6.25a.749.749 0 0 1-1.06 0l-6.25-6.25a.749.749 0 0 1 0-1.06Z" }, "children": [] } ] } } } }, "duplicate": { "name": "duplicate", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.5 3a.75.75 0 0 1 .75.75v1h1a.75.75 0 0 1 0 1.5h-1v1a.75.75 0 0 1-1.5 0v-1h-1a.75.75 0 0 1 0-1.5h1v-1A.75.75 0 0 1 10.5 3Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.75 0h7.5C15.216 0 16 .784 16 1.75v7.5A1.75 1.75 0 0 1 14.25 11h-7.5A1.75 1.75 0 0 1 5 9.25v-7.5C5 .784 5.784 0 6.75 0ZM6.5 1.75v7.5c0 .138.112.25.25.25h7.5a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25h-7.5a.25.25 0 0 0-.25.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 5A1.75 1.75 0 0 0 0 6.75v7.5C0 15.216.784 16 1.75 16h7.5A1.75 1.75 0 0 0 11 14.25v-1.5a.75.75 0 0 0-1.5 0v1.5a.25.25 0 0 1-.25.25h-7.5a.25.25 0 0 1-.25-.25v-7.5a.25.25 0 0 1 .25-.25h1.5a.75.75 0 0 0 0-1.5h-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.513 6a.75.75 0 0 1 .75.75v2h1.987a.75.75 0 0 1 0 1.5h-1.987v2a.75.75 0 1 1-1.5 0v-2H11.75a.75.75 0 0 1 0-1.5h2.013v-2a.75.75 0 0 1 .75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.024 3.75c0-.966.784-1.75 1.75-1.75H20.25c.966 0 1.75.784 1.75 1.75v11.498a1.75 1.75 0 0 1-1.75 1.75H8.774a1.75 1.75 0 0 1-1.75-1.75Zm1.75-.25a.25.25 0 0 0-.25.25v11.498c0 .139.112.25.25.25H20.25a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.995 10.749a1.75 1.75 0 0 1 1.75-1.751H5.25a.75.75 0 1 1 0 1.5H3.745a.25.25 0 0 0-.25.25L3.5 20.25c0 .138.111.25.25.25h9.5a.25.25 0 0 0 .25-.25v-1.51a.75.75 0 1 1 1.5 0v1.51A1.75 1.75 0 0 1 13.25 22h-9.5A1.75 1.75 0 0 1 2 20.25l-.005-9.501Z" }, "children": [] } ] } } } }, "ellipsis": { "name": "ellipsis", "keywords": [ "dot", "read", "more", "hidden", "expand" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 5.75C0 4.784.784 4 1.75 4h12.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 14.25 12H1.75A1.75 1.75 0 0 1 0 10.25ZM12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM7 8a1 1 0 1 0 2 0 1 1 0 0 0-2 0ZM4 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z" }, "children": [] } ] } } } }, "eye": { "name": "eye", "keywords": [ "look", "watch", "see" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.5 12a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 3.5c3.432 0 6.124 1.534 8.054 3.241 1.926 1.703 3.132 3.61 3.616 4.46a1.6 1.6 0 0 1 0 1.598c-.484.85-1.69 2.757-3.616 4.461-1.929 1.706-4.622 3.24-8.054 3.24-3.432 0-6.124-1.534-8.054-3.24C2.02 15.558.814 13.65.33 12.8a1.6 1.6 0 0 1 0-1.598c.484-.85 1.69-2.757 3.616-4.462C5.875 5.034 8.568 3.5 12 3.5ZM1.633 11.945a.115.115 0 0 0-.017.055c.001.02.006.039.017.056.441.774 1.551 2.527 3.307 4.08C6.691 17.685 9.045 19 12 19c2.955 0 5.31-1.315 7.06-2.864 1.756-1.553 2.866-3.306 3.307-4.08a.111.111 0 0 0 .017-.056.111.111 0 0 0-.017-.056c-.441-.773-1.551-2.527-3.307-4.08C17.309 6.315 14.955 5 12 5 9.045 5 6.69 6.314 4.94 7.865c-1.756 1.552-2.866 3.306-3.307 4.08Z" }, "children": [] } ] } } } }, "eye-closed": { "name": "eye-closed", "keywords": [ "hidden", "invisible", "concealed", "" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.143 2.31a.75.75 0 0 1 1.047-.167l14.5 10.5a.75.75 0 1 1-.88 1.214l-2.248-1.628C11.346 13.19 9.792 14 8 14c-1.981 0-3.67-.992-4.933-2.078C1.797 10.832.88 9.577.43 8.9a1.619 1.619 0 0 1 0-1.797c.353-.533.995-1.42 1.868-2.305L.31 3.357A.75.75 0 0 1 .143 2.31Zm1.536 5.622A.12.12 0 0 0 1.657 8c0 .021.006.045.022.068.412.621 1.242 1.75 2.366 2.717C5.175 11.758 6.527 12.5 8 12.5c1.195 0 2.31-.488 3.29-1.191L9.063 9.695A2 2 0 0 1 6.058 7.52L3.529 5.688a14.207 14.207 0 0 0-1.85 2.244ZM8 3.5c-.516 0-1.017.09-1.499.251a.75.75 0 1 1-.473-1.423A6.207 6.207 0 0 1 8 2c1.981 0 3.67.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.11.166-.248.365-.41.587a.75.75 0 1 1-1.21-.887c.148-.201.272-.382.371-.53a.119.119 0 0 0 0-.137c-.412-.621-1.242-1.75-2.366-2.717C10.825 4.242 9.473 3.5 8 3.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.052 5.837A9.715 9.715 0 0 1 12 5c2.955 0 5.309 1.315 7.06 2.864 1.756 1.553 2.866 3.307 3.307 4.08a.11.11 0 0 1 .016.055.122.122 0 0 1-.017.06 16.766 16.766 0 0 1-1.53 2.218.75.75 0 1 0 1.163.946 18.253 18.253 0 0 0 1.67-2.42 1.607 1.607 0 0 0 .001-1.602c-.485-.85-1.69-2.757-3.616-4.46C18.124 5.034 15.432 3.5 12 3.5c-1.695 0-3.215.374-4.552.963a.75.75 0 0 0 .604 1.373Zm11.114 12.15C17.328 19.38 14.933 20.5 12 20.5c-3.432 0-6.125-1.534-8.054-3.24C2.02 15.556.814 13.648.33 12.798a1.606 1.606 0 0 1 .001-1.6A18.283 18.283 0 0 1 3.648 7.01L1.317 5.362a.75.75 0 1 1 .866-1.224l20.5 14.5a.75.75 0 1 1-.866 1.224ZM4.902 7.898c-1.73 1.541-2.828 3.273-3.268 4.044a.112.112 0 0 0-.017.059c0 .015.003.034.016.055.441.774 1.551 2.527 3.307 4.08C6.69 17.685 9.045 19 12 19c2.334 0 4.29-.82 5.874-1.927l-3.516-2.487a3.5 3.5 0 0 1-5.583-3.949L4.902 7.899Z" }, "children": [] } ] } } } }, "feed-discussion": { "name": "feed-discussion", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16ZM4 5v5a1 1 0 0 0 1 1h1v1.5a.5.5 0 0 0 .854.354L8.707 11H11a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1Z" }, "children": [] } ] } } } }, "feed-forked": { "name": "feed-forked", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16ZM6 6.928a1.75 1.75 0 1 0-1 0V7.5A1.5 1.5 0 0 0 6.5 9h1v1.072a1.75 1.75 0 1 0 1 0V9h1A1.5 1.5 0 0 0 11 7.5v-.572a1.75 1.75 0 1 0-1 0V7.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5Z" }, "children": [] } ] } } } }, "feed-heart": { "name": "feed-heart", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm2.33-11.5c-1.22 0-1.83.5-2.323 1.136C7.513 5 6.903 4.5 5.682 4.5c-1.028 0-2.169.784-2.169 2.5 0 1.499 1.493 3.433 3.246 4.517.52.321.89.479 1.248.484.357-.005.728-.163 1.247-.484C11.007 10.433 12.5 8.5 12.5 7c0-1.716-1.14-2.5-2.17-2.5Z" }, "children": [] } ] } } } }, "feed-issue-closed": { "name": "feed-issue-closed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm3.457 6.957a.999.999 0 1 0-1.414-1.414L7.25 8.336 5.957 7.043a.999.999 0 1 0-1.414 1.414l2 2a.999.999 0 0 0 1.414 0Z" }, "children": [] } ] } } } }, "feed-issue-draft": { "name": "feed-issue-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM3.802 7.334a.75.75 0 0 0-1.482-.233 5.8 5.8 0 0 0 0 1.798.749.749 0 1 0 1.482-.233 4.296 4.296 0 0 1 0-1.332ZM8 2.25a5.8 5.8 0 0 0-.899.07.749.749 0 1 0 .233 1.482 4.296 4.296 0 0 1 1.332 0 .75.75 0 0 0 .233-1.482A5.8 5.8 0 0 0 8 2.25Zm-.666 9.948a.75.75 0 0 0-.233 1.482 5.8 5.8 0 0 0 1.798 0 .749.749 0 1 0-.233-1.482 4.296 4.296 0 0 1-1.332 0Zm6.346-5.097a.749.749 0 1 0-1.482.233 4.296 4.296 0 0 1 0 1.332.75.75 0 0 0 1.482.233 5.8 5.8 0 0 0 0-1.798Zm-8.178-2.54a.75.75 0 0 0-.882-1.213A5.77 5.77 0 0 0 3.348 4.62a.749.749 0 1 0 1.213.882c.263-.361.58-.678.941-.941Zm-.941 5.937a.75.75 0 0 0-1.213.882 5.77 5.77 0 0 0 1.272 1.272.749.749 0 1 0 .882-1.213 4.285 4.285 0 0 1-.941-.941Zm6.819-7.15a.749.749 0 1 0-.882 1.213c.36.263.679.58.941.941a.75.75 0 0 0 1.213-.882 5.77 5.77 0 0 0-1.272-1.272Zm1.272 8.032a.749.749 0 1 0-1.213-.882c-.262.36-.581.679-.941.941a.75.75 0 0 0 .882 1.213 5.77 5.77 0 0 0 1.272-1.272Z" }, "children": [] } ] } } } }, "feed-issue-open": { "name": "feed-issue-open", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 8a4.25 4.25 0 1 1 8.5 0 4.25 4.25 0 0 1-8.5 0ZM9.5 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-5.75a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 1 0 0-11.5Z" }, "children": [] } ] } } } }, "feed-issue-reopen": { "name": "feed-issue-reopen", "keywords": [], "heights": { "16": { "width": 17, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "17", "height": "16", "viewBox": "0 0 17 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.5 8a8 8 0 1 1 16 0 8 8 0 0 1-16 0Zm3.427-4.323a.25.25 0 0 0-.427.177V6c0 .138.112.25.25.25h2.146a.25.25 0 0 0 .177-.427l-.524-.524a4.003 4.003 0 0 1 6.862 1.858.75.75 0 0 0 1.467-.314 5.502 5.502 0 0 0-9.39-2.605Zm9.573 8.469V10a.25.25 0 0 0-.25-.25h-2.146a.25.25 0 0 0-.177.427l.524.524a4.002 4.002 0 0 1-6.862-1.858.75.75 0 0 0-1.467.314 5.502 5.502 0 0 0 9.39 2.605l.561.561a.25.25 0 0 0 .427-.177ZM10 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 10 8Z" }, "children": [] } ] } } } }, "feed-merged": { "name": "feed-merged", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm.25-11.25A1.75 1.75 0 1 0 6 6.428v3.144a1.75 1.75 0 1 0 1 0V8.236A2.99 2.99 0 0 0 9 9h.571a1.75 1.75 0 1 0 0-1H9a2 2 0 0 1-1.957-1.586A1.75 1.75 0 0 0 8.25 4.75Z" }, "children": [] } ] } } } }, "feed-person": { "name": "feed-person", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm.847-8.145a2.502 2.502 0 1 0-1.694 0C5.471 8.261 4 9.775 4 11c0 .395.145.995 1 .995h6c.855 0 1-.6 1-.995 0-1.224-1.47-2.74-3.153-3.145Z" }, "children": [] } ] } } } }, "feed-plus": { "name": "feed-plus", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Zm1.062 4.312a1 1 0 1 0-2 0v2.75h-2.75a1 1 0 0 0 0 2h2.75v2.75a1 1 0 1 0 2 0v-2.75h2.75a1 1 0 1 0 0-2h-2.75Z" }, "children": [] } ] } } } }, "feed-public": { "name": "feed-public", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm4.5.25v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1H7v-1.5a1.5 1.5 0 0 1 2.443-1.167.75.75 0 0 0 .943-1.166A3 3 0 0 0 5.5 5.75v1.5a1 1 0 0 0-1 1Z" }, "children": [] } ] } } } }, "feed-pull-request-closed": { "name": "feed-pull-request-closed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM5.5 12.25A1.75 1.75 0 0 0 6 8.822V6.928A1.752 1.752 0 0 0 5.5 3.5 1.75 1.75 0 0 0 5 6.928v1.894a1.752 1.752 0 0 0 .5 3.428Zm5-5a.5.5 0 0 0-.5.5v1.072a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 .5-3.428V7.75a.5.5 0 0 0-.5-.5Zm1.255-2.763a.5.5 0 0 0-.707-.707l-.53.531-.531-.531a.5.5 0 0 0-.707.707l.531.531-.531.53a.5.5 0 0 0 .707.707l.531-.53.53.53a.5.5 0 0 0 .707-.707l-.53-.53Z" }, "children": [] } ] } } } }, "feed-pull-request-draft": { "name": "feed-pull-request-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm7.25 2.5c0-.793-.527-1.462-1.25-1.678V6.928A1.752 1.752 0 0 0 5.5 3.5 1.75 1.75 0 0 0 5 6.928v1.894a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 1.75-1.75Zm3.25 1.75a1.75 1.75 0 1 0 .001-3.499 1.75 1.75 0 0 0-.001 3.499Zm0-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm.75-3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z" }, "children": [] } ] } } } }, "feed-pull-request-open": { "name": "feed-pull-request-open", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm6.75 2.5c0-.793-.527-1.462-1.25-1.678V6.928A1.752 1.752 0 0 0 5 3.5a1.75 1.75 0 0 0-.5 3.428v1.894A1.752 1.752 0 0 0 5 12.25a1.75 1.75 0 0 0 1.75-1.75Zm3.25-5h.25a.5.5 0 0 1 .5.5v2.822a1.752 1.752 0 0 0 .5 3.428 1.75 1.75 0 0 0 .5-3.428V6a1.5 1.5 0 0 0-1.5-1.5H10V3.129a.25.25 0 0 0-.427-.177L7.702 4.823a.25.25 0 0 0 0 .354l1.871 1.871A.25.25 0 0 0 10 6.871Z" }, "children": [] } ] } } } }, "feed-repo": { "name": "feed-repo", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16ZM5.5 4A1.5 1.5 0 0 0 4 5.5v5c0 .828.5 1.5 1 1.5v-1a1 1 0 0 1 1-1h5v1h-1v1h1.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5Zm.5 7.25v2.514a.25.25 0 0 0 .426.178l.898-.888a.25.25 0 0 1 .352 0l.898.888A.25.25 0 0 0 9 13.764V11H6.25a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "feed-rocket": { "name": "feed-rocket", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm3.031-12a4.38 4.38 0 0 0-3.097 1.283l-.23.229c-.156.157-.308.32-.452.49H5.65a.876.876 0 0 0-.746.417l-.856 1.388a.377.377 0 0 0 .21.556l1.552.477 1.35 1.35.478 1.553a.374.374 0 0 0 .555.21l1.389-.855a.876.876 0 0 0 .416-.746V8.747c.17-.144.333-.295.49-.452l.23-.23A4.379 4.379 0 0 0 12 4.969v-.093A.876.876 0 0 0 11.124 4Zm-5.107 7.144h-.001a.809.809 0 0 0-1.33-.881c-.395.394-.564 1.258-.62 1.62a.12.12 0 0 0 .035.108.12.12 0 0 0 .108.035c.362-.056 1.226-.225 1.62-.619a.803.803 0 0 0 .188-.263Z" }, "children": [] } ] } } } }, "feed-star": { "name": "feed-star", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16Zm.252-12.932a.476.476 0 0 0-.682.195l-1.2 2.432-2.684.39a.477.477 0 0 0-.266.816l1.944 1.892-.46 2.674a.479.479 0 0 0 .694.504L8 10.709l2.4 1.261a.478.478 0 0 0 .694-.504l-.458-2.673L12.578 6.9a.479.479 0 0 0-.265-.815l-2.685-.39-1.2-2.432a.473.473 0 0 0-.176-.195Z" }, "children": [] } ] } } } }, "feed-tag": { "name": "feed-tag", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.22 6.5a.72.72 0 1 1-1.44 0 .72.72 0 0 1 1.44 0Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16ZM4 5v3.38c.001.397.159.778.44 1.059l3.211 3.213a1.202 1.202 0 0 0 1.698 0l3.303-3.303a1.202 1.202 0 0 0 0-1.698L9.439 4.44A1.5 1.5 0 0 0 8.379 4H5a1 1 0 0 0-1 1Z" }, "children": [] } ] } } } }, "feed-trophy": { "name": "feed-trophy", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11 5h1v1.146a1 1 0 0 1-.629.928L11 7.223V5ZM5 7.223l-.371-.149A1 1 0 0 1 4 6.146V5h1v2.223Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16ZM3 5v1.146a2 2 0 0 0 1.257 1.858l.865.346a3.005 3.005 0 0 0 2.294 2.093C7.22 11.404 6.658 12 5.502 12H5.5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1c-1.158 0-1.72-.595-1.916-1.557a3.005 3.005 0 0 0 2.294-2.094l.865-.346A2 2 0 0 0 13 6.146V5a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1Z" }, "children": [] } ] } } } }, "file": { "name": "file", "keywords": [ "file", "text", "words" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 9 4.25V1.5Zm6.75.062V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Zm2-.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4Zm10 0v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5Z" }, "children": [] } ] } } } }, "file-added": { "name": "file-added", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073Zm4.48 3.758a.75.75 0 0 1 .755.745l.01 1.497h1.497a.75.75 0 0 1 0 1.5H9v1.507a.75.75 0 0 1-1.5 0V9.005l-1.502.01a.75.75 0 0 1-.01-1.5l1.507-.01-.01-1.492a.75.75 0 0 1 .745-.755Z" }, "children": [] } ] } } } }, "file-badge": { "name": "file-badge", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 1.5a.25.25 0 0 0-.25.25v11.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 1 13.25V1.75C1 .784 1.784 0 2.75 0h8a1.75 1.75 0 0 1 1.508.862.75.75 0 1 1-1.289.768.25.25 0 0 0-.219-.13h-8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 7a3.999 3.999 0 0 1 7.605-1.733 4 4 0 0 1-1.115 4.863l.995 4.973a.75.75 0 0 1-.991.852l-2.409-.876a.248.248 0 0 0-.17 0l-2.409.876a.75.75 0 0 1-.991-.852l.994-4.973A3.994 3.994 0 0 1 8 7Zm4-2.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5Zm0 6.5c-.373 0-.745-.051-1.104-.154l-.649 3.243 1.155-.42c.386-.14.81-.14 1.196 0l1.155.42-.649-3.243A4.004 4.004 0 0 1 12 11Z" }, "children": [] } ] } } } }, "file-binary": { "name": "file-binary", "keywords": [ "image", "video", "word", "powerpoint", "excel" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 14.25 15h-9a.75.75 0 0 1 0-1.5h9a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 10 4.25V1.5H5.75a.25.25 0 0 0-.25.25v2a.75.75 0 0 1-1.5 0Zm-4 6C0 6.784.784 6 1.75 6h1.5C4.216 6 5 6.784 5 7.75v2.5A1.75 1.75 0 0 1 3.25 12h-1.5A1.75 1.75 0 0 1 0 10.25ZM6.75 6h1.5a.75.75 0 0 1 .75.75v3.75h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75v-3h-.75a.75.75 0 0 1 0-1.5Zm-5 1.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm9.75-5.938V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm12-.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 13.75C0 12.784.784 12 1.75 12h3c.966 0 1.75.784 1.75 1.75v4a1.75 1.75 0 0 1-1.75 1.75h-3A1.75 1.75 0 0 1 0 17.75Zm1.75-.25a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h3a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25ZM9 12a.75.75 0 0 0 0 1.5h1.5V18H9a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5H12v-5.25a.75.75 0 0 0-.75-.75H9Z" }, "children": [] } ] } } } }, "file-code": { "name": "file-code", "keywords": [ "text", "javascript", "html", "css", "php", "ruby", "coffeescript", "sass", "scss" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 1.75C4 .784 4.784 0 5.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 14.25 15h-9a.75.75 0 0 1 0-1.5h9a.25.25 0 0 0 .25-.25V6h-2.75A1.75 1.75 0 0 1 10 4.25V1.5H5.75a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0Zm1.72 4.97a.75.75 0 0 1 1.06 0l2 2a.75.75 0 0 1 0 1.06l-2 2a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.47-1.47-1.47-1.47a.75.75 0 0 1 0-1.06ZM3.28 7.78 1.81 9.25l1.47 1.47a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-2-2a.75.75 0 0 1 0-1.06l2-2a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Zm8.22-6.218V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm12-.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.53 12.24a.75.75 0 0 1-.039 1.06l-2.639 2.45 2.64 2.45a.75.75 0 1 1-1.022 1.1l-3.23-3a.75.75 0 0 1 0-1.1l3.23-3a.75.75 0 0 1 1.06.04Zm3.979 1.06a.75.75 0 1 1 1.02-1.1l3.231 3a.75.75 0 0 1 0 1.1l-3.23 3a.75.75 0 1 1-1.021-1.1l2.639-2.45-2.64-2.45Z" }, "children": [] } ] } } } }, "file-diff": { "name": "file-diff", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 1.75C1 .784 1.784 0 2.75 0h7.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073ZM8 3.25a.75.75 0 0 1 .75.75v1.5h1.5a.75.75 0 0 1 0 1.5h-1.5v1.5a.75.75 0 0 1-1.5 0V7h-1.5a.75.75 0 0 1 0-1.5h1.5V4A.75.75 0 0 1 8 3.25Zm-3 8a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.5 6.75a.75.75 0 0 0-1.5 0V9H8.75a.75.75 0 0 0 0 1.5H11v2.25a.75.75 0 0 0 1.5 0V10.5h2.25a.75.75 0 0 0 0-1.5H12.5V6.75ZM8.75 16a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 1h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2Zm-.5 2v18a.5.5 0 0 0 .5.5h14a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146H5a.5.5 0 0 0-.5.5Z" }, "children": [] } ] } } } }, "file-directory": { "name": "file-directory", "keywords": [ "folder" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1H5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H7.5c-.55 0-1.07-.26-1.4-.7l-.9-1.2a.25.25 0 0 0-.2-.1Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 4.75C2 3.784 2.784 3 3.75 3h4.971c.58 0 1.12.286 1.447.765l1.404 2.063c.046.069.124.11.207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V7.687a.25.25 0 0 0-.25-.25h-8.471a1.75 1.75 0 0 1-1.447-.765L8.928 4.61a.252.252 0 0 0-.208-.11Z" }, "children": [] } ] } } } }, "file-directory-fill": { "name": "file-directory-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 1A1.75 1.75 0 0 0 0 2.75v10.5C0 14.216.784 15 1.75 15h12.5A1.75 1.75 0 0 0 16 13.25v-8.5A1.75 1.75 0 0 0 14.25 3H7.5a.25.25 0 0 1-.2-.1l-.9-1.2C6.07 1.26 5.55 1 5 1H1.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 4.75C2 3.784 2.784 3 3.75 3h4.971c.58 0 1.12.286 1.447.765l1.404 2.063c.046.069.124.11.207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Z" }, "children": [] } ] } } } }, "file-directory-open-fill": { "name": "file-directory-open-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.513 1.513A1.75 1.75 0 0 1 1.75 1h3.5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1H13a1 1 0 0 1 1 1v.5H2.75a.75.75 0 0 0 0 1.5h11.978a1 1 0 0 1 .994 1.117L15 13.25A1.75 1.75 0 0 1 13.25 15H1.75A1.75 1.75 0 0 1 0 13.25V2.75c0-.464.184-.91.513-1.237Z" }, "children": [] } ] } } } }, "file-directory-symlink": { "name": "file-directory-symlink", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1H5a1.75 1.75 0 0 1 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H5.375a.75.75 0 0 1 0-1.5h8.875a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25H7.5a1.75 1.75 0 0 1-1.4-.7l-.9-1.2a.25.25 0 0 0-.2-.1H1.75a.25.25 0 0 0-.25.25v3a.75.75 0 0 1-1.5 0v-3Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 12.237a2.25 2.25 0 0 1 2.262-2.249L4 9.989v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 0 0 0-.366L4.42 6.39a.25.25 0 0 0-.42.183v1.916l-.229-.001A3.75 3.75 0 0 0 0 12.237v1.013a.75.75 0 0 0 1.5 0v-1.013Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 4.75C2 3.784 2.784 3 3.75 3h4.971a1.75 1.75 0 0 1 1.447.765l1.404 2.063a.25.25 0 0 0 .207.11h8.471c.966 0 1.75.783 1.75 1.75V19.25A1.75 1.75 0 0 1 20.25 21H4.75a.75.75 0 0 1 0-1.5h15.5a.25.25 0 0 0 .25-.25V7.688a.25.25 0 0 0-.25-.25h-8.471a1.751 1.751 0 0 1-1.447-.766L8.928 4.609a.252.252 0 0 0-.207-.109H3.75a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0v-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m9.308 12.5-2.104-2.236a.75.75 0 1 1 1.092-1.028l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.75.75 0 1 1-1.092-1.028L9.308 14H4.09a2.59 2.59 0 0 0-2.59 2.59v3.16a.75.75 0 0 1-1.5 0v-3.16a4.09 4.09 0 0 1 4.09-4.09h5.218Z" }, "children": [] } ] } } } }, "file-media": { "name": "file-media", "keywords": [ "image", "video", "audio" ], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M21.75 21.5H2.25A1.75 1.75 0 0 1 .5 19.75V4.25c0-.966.784-1.75 1.75-1.75h19.5c.966 0 1.75.784 1.75 1.75v15.5a1.75 1.75 0 0 1-1.75 1.75ZM2.25 4a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h3.178L14 10.977a1.749 1.749 0 0 1 2.506-.032L22 16.44V4.25a.25.25 0 0 0-.25-.25ZM22 19.75v-1.19l-6.555-6.554a.248.248 0 0 0-.18-.073.247.247 0 0 0-.178.077L7.497 20H21.75a.25.25 0 0 0 .25-.25ZM10.5 9.25a3.25 3.25 0 1 1-6.5 0 3.25 3.25 0 0 1 6.5 0Zm-1.5 0a1.75 1.75 0 1 0-3.501.001A1.75 1.75 0 0 0 9 9.25Z" }, "children": [] } ] } } } }, "file-moved": { "name": "file-moved", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073H3.75a.25.25 0 0 0-.25.25v6.5a.75.75 0 0 1-1.5 0v-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m5.427 15.573 3.146-3.146a.25.25 0 0 0 0-.354L5.427 8.927A.25.25 0 0 0 5 9.104V11.5H.75a.75.75 0 0 0 0 1.5H5v2.396c0 .223.27.335.427.177Z" }, "children": [] } ] } } } }, "file-removed": { "name": "file-removed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 1.75C2 .784 2.784 0 3.75 0h6.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v9.586A1.75 1.75 0 0 1 13.25 16h-9.5A1.75 1.75 0 0 1 2 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h9.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177l-2.914-2.914a.25.25 0 0 0-.177-.073Zm4.5 6h2.242a.75.75 0 0 1 0 1.5h-2.24l-2.254.015a.75.75 0 0 1-.01-1.5Z" }, "children": [] } ] } } } }, "file-submodule": { "name": "file-submodule", "keywords": [ "folder" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1H5c.55 0 1.07.26 1.4.7l.9 1.2a.25.25 0 0 0 .2.1h6.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm9.42 9.36 2.883-2.677a.25.25 0 0 0 0-.366L9.42 6.39a.249.249 0 0 0-.42.183V8.5H4.75a.75.75 0 0 0 0 1.5H9v1.927c0 .218.26.331.42.183Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 4.75C2 3.784 2.784 3 3.75 3h4.965a1.75 1.75 0 0 1 1.456.78l1.406 2.109a.25.25 0 0 0 .208.111h8.465c.966 0 1.75.784 1.75 1.75v11.5A1.75 1.75 0 0 1 20.25 21H3.75A1.75 1.75 0 0 1 2 19.25Zm12.78 4.97a.749.749 0 0 0-1.275.326.749.749 0 0 0 .215.734l1.72 1.72H6.75a.75.75 0 0 0 0 1.5h8.69l-1.72 1.72a.749.749 0 0 0 .326 1.275.749.749 0 0 0 .734-.215l3-3a.75.75 0 0 0 0-1.06Z" }, "children": [] } ] } } } }, "file-symlink-file": { "name": "file-symlink-file", "keywords": [ "link", "alias" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 1.75C2 .784 2.784 0 3.75 0h5.586c.464 0 .909.184 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 12.25 15h-7a.75.75 0 0 1 0-1.5h7a.25.25 0 0 0 .25-.25V6H9.75A1.75 1.75 0 0 1 8 4.25V1.5H3.75a.25.25 0 0 0-.25.25V4.5a.75.75 0 0 1-1.5 0Zm-.5 10.487v1.013a.75.75 0 0 1-1.5 0v-1.012a3.748 3.748 0 0 1 3.77-3.749L4 8.49V6.573a.25.25 0 0 1 .42-.183l2.883 2.678a.25.25 0 0 1 0 .366L4.42 12.111a.25.25 0 0 1-.42-.183V9.99l-.238-.003a2.25 2.25 0 0 0-2.262 2.25Zm8-10.675V4.25c0 .138.112.25.25.25h2.688l-.011-.013-2.914-2.914-.013-.011Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2H4.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V8.5h-4a2 2 0 0 1-2-2v-4H5a.5.5 0 0 0-.5.5v6.25a.75.75 0 0 1-1.5 0Zm6.308 11.5-2.104-2.236a.751.751 0 0 1 .369-1.255.749.749 0 0 1 .723.227l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.749.749 0 0 1-1.275-.293.751.751 0 0 1 .183-.735L9.308 16H4.09a2.59 2.59 0 0 0-2.59 2.59v3.16a.75.75 0 0 1-1.5 0v-3.16a4.09 4.09 0 0 1 4.09-4.09ZM15 2.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0-.146-.336l-4.018-4.018A.5.5 0 0 0 15 2.5Z" }, "children": [] } ] } } } }, "file-zip": { "name": "file-zip", "keywords": [ "compress", "archive" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 1.75v11.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.748 1.748 0 0 1 2 13.25V1.75C2 .784 2.784 0 3.75 0h5.586c.464 0 .909.185 1.237.513l2.914 2.914c.329.328.513.773.513 1.237v8.586A1.75 1.75 0 0 1 12.25 15h-.5a.75.75 0 0 1 0-1.5h.5a.25.25 0 0 0 .25-.25V4.664a.25.25 0 0 0-.073-.177L9.513 1.573a.25.25 0 0 0-.177-.073H7.25a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5h-3a.25.25 0 0 0-.25.25Zm3.75 8.75h.5c.966 0 1.75.784 1.75 1.75v3a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1-.75-.75v-3c0-.966.784-1.75 1.75-1.75ZM6 5.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 5.25Zm.75 2.25h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM8 6.75A.75.75 0 0 1 8.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 8 6.75ZM8.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM8 9.75A.75.75 0 0 1 8.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 8 9.75Zm-1 2.5v2.25h1v-2.25a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 2.5a.5.5 0 0 0-.5.5v18a.5.5 0 0 0 .5.5h1.75a.75.75 0 0 1 0 1.5H5a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h9.982a2 2 0 0 1 1.414.586l4.018 4.018A2 2 0 0 1 21 7.018V21a2 2 0 0 1-2 2h-2.75a.75.75 0 0 1 0-1.5H19a.5.5 0 0 0 .5-.5V7.018a.5.5 0 0 0-.146-.354l-4.018-4.018a.5.5 0 0 0-.354-.146H5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.5 15.75a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm.75-3.75a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm-.75-2.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75ZM12.25 6a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Zm-.75-2.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75ZM9.75 13.5a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1ZM9 11.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm.75-3.75a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1ZM9 5.25a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 9 5.25ZM11 17h1a2 2 0 0 1 2 2v4.25a.75.75 0 0 1-.75.75h-3.5a.75.75 0 0 1-.75-.75V19a2 2 0 0 1 2-2Zm-.5 2v3.5h2V19a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5Z" }, "children": [] } ] } } } }, "filter": { "name": "filter", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.75 3h14.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1 0-1.5ZM3 7.75A.75.75 0 0 1 3.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 7.75Zm3 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 6a.75.75 0 0 0 0 1.5h18.5a.75.75 0 0 0 0-1.5H2.75ZM6 11.75a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H6.75a.75.75 0 0 1-.75-.75Zm4 4.938a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "filter-remove": { "name": "filter-remove", "keywords": [ "funnel", "filter", "remove", "delete" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.384 4.57a.752.752 0 0 0 1.061 0 .752.752 0 0 0 0-1.061l-.884-.884.883-.884A.75.75 0 0 0 14.384.68l-.884.884-.884-.884a.75.75 0 0 0-1.06 1.061l.883.884-.883.884a.75.75 0 0 0 1.06 1.061l.884-.884.884.884ZM.75 3a.75.75 0 0 0 0 1.5H9A.75.75 0 0 0 9 3H.75ZM3 7.75A.75.75 0 0 1 3.75 7h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 7.75Zm3 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M21.587 9.273a.75.75 0 1 0 1.061-1.061l-1.591-1.591 1.591-1.591a.749.749 0 1 0-1.061-1.06l-1.591 1.591-1.591-1.591a.749.749 0 1 0-1.06 1.06l1.591 1.591-1.591 1.591a.75.75 0 0 0 1.06 1.061l1.591-1.591 1.591 1.591ZM1.75 6a.75.75 0 0 0 0 1.5H14.5a.75.75 0 0 0 0-1.5H1.75ZM5 11.75a.75.75 0 0 1 .75-.75h10.5a.75.75 0 0 1 0 1.5H5.75a.75.75 0 0 1-.75-.75Zm4 4.938a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "fiscal-host": { "name": "fiscal-host", "keywords": [ "safe", "money" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10 8a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 9.25h-.75a.75.75 0 0 1 0-1.5H4v-1.5h-.75a.75.75 0 0 1 0-1.5H4V3.5a1 1 0 0 1 1-1h7.5a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1ZM5.5 4v.793a.75.75 0 0 1 0 1.414v1.586a.75.75 0 0 1 0 1.414V10H12V4Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.75 14.25V14h-9.5v.25a.75.75 0 0 1-1.5 0V14A1.75 1.75 0 0 1 0 12.25V1.75C0 .784.784 0 1.75 0h12.5C15.217 0 16 .784 16 1.75v10.5A1.75 1.75 0 0 1 14.25 14v.25a.75.75 0 0 1-1.5 0ZM1.75 1.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "flame": { "name": "flame", "keywords": [ "fire", "hot", "burn", "trending" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.533.753V.752c.217 2.385 1.463 3.626 2.653 4.81C13.37 6.74 14.498 7.863 14.498 10c0 3.5-3 6-6.5 6S1.5 13.512 1.5 10c0-1.298.536-2.56 1.425-3.286.376-.308.862 0 1.035.454C4.46 8.487 5.581 8.419 6 8c.282-.282.341-.811-.003-1.5C4.34 3.187 7.035.75 8.77.146c.39-.137.726.194.763.607ZM7.998 14.5c2.832 0 5-1.98 5-4.5 0-1.463-.68-2.19-1.879-3.383l-.036-.037c-1.013-1.008-2.3-2.29-2.834-4.434-.322.256-.63.579-.864.953-.432.696-.621 1.58-.046 2.73.473.947.67 2.284-.278 3.232-.61.61-1.545.84-2.403.633a2.79 2.79 0 0 1-1.436-.874A3.198 3.198 0 0 0 3 10c0 2.53 2.164 4.5 4.998 4.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.265 1.627c0 3.545 1.869 5.327 3.479 7.021 1.54 1.62 3.006 3.163 3.006 6.102 0 4.812-3.753 8.25-8.565 8.25-4.813 0-8.935-3.421-8.935-8.25 0-2.039.962-4.011 2.509-4.899.305-.175.672.007.803.334C7.563 12.684 8.797 12.64 9.437 12c.388-.387.47-1.116-.004-2.062-2.405-4.812 1.863-8.279 4.2-8.854.336-.082.615.198.632.543ZM12.185 21.5c4.059 0 7.065-2.84 7.065-6.75 0-2.337-1.093-3.489-2.678-5.158l-.021-.023c-1.44-1.517-3.139-3.351-3.649-6.557a6.148 6.148 0 0 0-1.911 1.76c-.787 1.144-1.147 2.633-.216 4.495.603 1.205.777 2.74-.277 3.794-.657.657-1.762 1.1-2.956.586-.752-.324-1.353-.955-1.838-1.79-.567.706-.954 1.74-.954 2.893 0 3.847 3.288 6.75 7.435 6.75Z" }, "children": [] } ] } } } }, "fold": { "name": "fold", "keywords": [ "unfold", "hide", "collapse" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.896 2H8.75V.75a.75.75 0 0 0-1.5 0V2H5.104a.25.25 0 0 0-.177.427l2.896 2.896a.25.25 0 0 0 .354 0l2.896-2.896A.25.25 0 0 0 10.896 2ZM8.75 15.25a.75.75 0 0 1-1.5 0V14H5.104a.25.25 0 0 1-.177-.427l2.896-2.896a.25.25 0 0 1 .354 0l2.896 2.896a.25.25 0 0 1-.177.427H8.75v1.25Zm-6.5-6.5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM6 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 6 8Zm2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM12 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 12 8Zm2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 15c.199 0 .389.079.53.22l3.25 3.25a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L12 16.81l-2.72 2.72a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.25-3.25A.749.749 0 0 1 12 15Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.53 8.78a.75.75 0 0 1-1.06 0L8.22 5.53a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L12 7.19l2.72-2.72a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734ZM12 15.75a.75.75 0 0 1 .75.75v5.75a.75.75 0 0 1-1.5 0V16.5a.75.75 0 0 1 .75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 8.5a.75.75 0 0 1-.75-.75v-6a.75.75 0 0 1 1.5 0v6a.75.75 0 0 1-.75.75ZM2.75 12a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "fold-down": { "name": "fold-down", "keywords": [ "unfold", "hide", "collapse", "down" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.177 14.323 2.896-2.896a.25.25 0 0 0-.177-.427H8.75V7.764a.75.75 0 1 0-1.5 0V11H5.104a.25.25 0 0 0-.177.427l2.896 2.896a.25.25 0 0 0 .354 0ZM2.25 5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM6 4.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5a.75.75 0 0 1 .75.75ZM8.25 5a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM12 4.25a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5a.75.75 0 0 1 .75.75Zm2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 19a.749.749 0 0 1-.53-.22l-3.25-3.25a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215L12 17.19l2.72-2.72a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-3.25 3.25A.749.749 0 0 1 12 19Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 18a.75.75 0 0 1-.75-.75v-7.5a.75.75 0 0 1 1.5 0v7.5A.75.75 0 0 1 12 18ZM2.75 6a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 2.75 6Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1A.75.75 0 0 1 6.75 6Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "fold-up": { "name": "fold-up", "keywords": [ "unfold", "hide", "collapse", "up" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.823 1.677 4.927 4.573A.25.25 0 0 0 5.104 5H7.25v3.236a.75.75 0 1 0 1.5 0V5h2.146a.25.25 0 0 0 .177-.427L8.177 1.677a.25.25 0 0 0-.354 0ZM13.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5Zm-3.75.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75ZM7.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5ZM4 11.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75ZM1.75 11a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.47 5.22a.75.75 0 0 1 1.06 0l3.25 3.25a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018L12 6.81 9.28 9.53a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 5.5a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8A.75.75 0 0 1 12 5.5ZM2.75 18a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "gear": { "name": "gear", "keywords": [ "settings" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8.2 8.2 0 0 1 .701.031C9.444.095 9.99.645 10.16 1.29l.288 1.107c.018.066.079.158.212.224.231.114.454.243.668.386.123.082.233.09.299.071l1.103-.303c.644-.176 1.392.021 1.82.63.27.385.506.792.704 1.218.315.675.111 1.422-.364 1.891l-.814.806c-.049.048-.098.147-.088.294.016.257.016.515 0 .772-.01.147.038.246.088.294l.814.806c.475.469.679 1.216.364 1.891a7.977 7.977 0 0 1-.704 1.217c-.428.61-1.176.807-1.82.63l-1.102-.302c-.067-.019-.177-.011-.3.071a5.909 5.909 0 0 1-.668.386c-.133.066-.194.158-.211.224l-.29 1.106c-.168.646-.715 1.196-1.458 1.26a8.006 8.006 0 0 1-1.402 0c-.743-.064-1.289-.614-1.458-1.26l-.289-1.106c-.018-.066-.079-.158-.212-.224a5.738 5.738 0 0 1-.668-.386c-.123-.082-.233-.09-.299-.071l-1.103.303c-.644.176-1.392-.021-1.82-.63a8.12 8.12 0 0 1-.704-1.218c-.315-.675-.111-1.422.363-1.891l.815-.806c.05-.048.098-.147.088-.294a6.214 6.214 0 0 1 0-.772c.01-.147-.038-.246-.088-.294l-.815-.806C.635 6.045.431 5.298.746 4.623a7.92 7.92 0 0 1 .704-1.217c.428-.61 1.176-.807 1.82-.63l1.102.302c.067.019.177.011.3-.071.214-.143.437-.272.668-.386.133-.066.194-.158.211-.224l.29-1.106C6.009.645 6.556.095 7.299.03 7.53.01 7.764 0 8 0Zm-.571 1.525c-.036.003-.108.036-.137.146l-.289 1.105c-.147.561-.549.967-.998 1.189-.173.086-.34.183-.5.29-.417.278-.97.423-1.529.27l-1.103-.303c-.109-.03-.175.016-.195.045-.22.312-.412.644-.573.99-.014.031-.021.11.059.19l.815.806c.411.406.562.957.53 1.456a4.709 4.709 0 0 0 0 .582c.032.499-.119 1.05-.53 1.456l-.815.806c-.081.08-.073.159-.059.19.162.346.353.677.573.989.02.03.085.076.195.046l1.102-.303c.56-.153 1.113-.008 1.53.27.161.107.328.204.501.29.447.222.85.629.997 1.189l.289 1.105c.029.109.101.143.137.146a6.6 6.6 0 0 0 1.142 0c.036-.003.108-.036.137-.146l.289-1.105c.147-.561.549-.967.998-1.189.173-.086.34-.183.5-.29.417-.278.97-.423 1.529-.27l1.103.303c.109.029.175-.016.195-.045.22-.313.411-.644.573-.99.014-.031.021-.11-.059-.19l-.815-.806c-.411-.406-.562-.957-.53-1.456a4.709 4.709 0 0 0 0-.582c-.032-.499.119-1.05.53-1.456l.815-.806c.081-.08.073-.159.059-.19a6.464 6.464 0 0 0-.573-.989c-.02-.03-.085-.076-.195-.046l-1.102.303c-.56.153-1.113.008-1.53-.27a4.44 4.44 0 0 0-.501-.29c-.447-.222-.85-.629-.997-1.189l-.289-1.105c-.029-.11-.101-.143-.137-.146a6.6 6.6 0 0 0-1.142 0ZM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM9.5 8a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 9.5 8Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 12a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm-1.5 0a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c.266 0 .532.009.797.028.763.055 1.345.617 1.512 1.304l.352 1.45c.019.078.09.171.225.221.247.089.49.19.728.302.13.061.246.044.315.002l1.275-.776c.603-.368 1.411-.353 1.99.147.402.349.78.726 1.128 1.129.501.578.515 1.386.147 1.99l-.776 1.274c-.042.069-.058.185.002.315.112.238.213.481.303.728.048.135.142.205.22.225l1.45.352c.687.167 1.249.749 1.303 1.512.038.531.038 1.063 0 1.594-.054.763-.616 1.345-1.303 1.512l-1.45.352c-.078.019-.171.09-.221.225-.089.248-.19.491-.302.728-.061.13-.044.246-.002.315l.776 1.275c.368.603.353 1.411-.147 1.99-.349.402-.726.78-1.129 1.128-.578.501-1.386.515-1.99.147l-1.274-.776c-.069-.042-.185-.058-.314.002a8.606 8.606 0 0 1-.729.303c-.135.048-.205.142-.225.22l-.352 1.45c-.167.687-.749 1.249-1.512 1.303-.531.038-1.063.038-1.594 0-.763-.054-1.345-.616-1.512-1.303l-.352-1.45c-.019-.078-.09-.171-.225-.221a8.138 8.138 0 0 1-.728-.302c-.13-.061-.246-.044-.315-.002l-1.275.776c-.603.368-1.411.353-1.99-.147-.402-.349-.78-.726-1.128-1.129-.501-.578-.515-1.386-.147-1.99l.776-1.274c.042-.069.058-.185-.002-.314a8.606 8.606 0 0 1-.303-.729c-.048-.135-.142-.205-.22-.225l-1.45-.352c-.687-.167-1.249-.749-1.304-1.512a11.158 11.158 0 0 1 0-1.594c.055-.763.617-1.345 1.304-1.512l1.45-.352c.078-.019.171-.09.221-.225.089-.248.19-.491.302-.728.061-.13.044-.246.002-.315l-.776-1.275c-.368-.603-.353-1.411.147-1.99.349-.402.726-.78 1.129-1.128.578-.501 1.386-.515 1.99-.147l1.274.776c.069.042.185.058.315-.002.238-.112.481-.213.728-.303.135-.048.205-.142.225-.22l.352-1.45c.167-.687.749-1.249 1.512-1.304C11.466 1.01 11.732 1 12 1Zm-.69 1.525c-.055.004-.135.05-.161.161l-.353 1.45a1.832 1.832 0 0 1-1.172 1.277 7.147 7.147 0 0 0-.6.249 1.833 1.833 0 0 1-1.734-.074l-1.274-.776c-.098-.06-.186-.036-.228 0a9.774 9.774 0 0 0-.976.976c-.036.042-.06.131 0 .228l.776 1.274c.314.529.342 1.18.074 1.734a7.147 7.147 0 0 0-.249.6 1.831 1.831 0 0 1-1.278 1.173l-1.45.351c-.11.027-.156.107-.16.162a9.63 9.63 0 0 0 0 1.38c.004.055.05.135.161.161l1.45.353a1.832 1.832 0 0 1 1.277 1.172c.074.204.157.404.249.6.268.553.24 1.204-.074 1.733l-.776 1.275c-.06.098-.036.186 0 .228.301.348.628.675.976.976.042.036.131.06.228 0l1.274-.776a1.83 1.83 0 0 1 1.734-.075c.196.093.396.176.6.25a1.831 1.831 0 0 1 1.173 1.278l.351 1.45c.027.11.107.156.162.16a9.63 9.63 0 0 0 1.38 0c.055-.004.135-.05.161-.161l.353-1.45a1.834 1.834 0 0 1 1.172-1.278 6.82 6.82 0 0 0 .6-.248 1.831 1.831 0 0 1 1.733.074l1.275.776c.098.06.186.036.228 0 .348-.301.675-.628.976-.976.036-.042.06-.131 0-.228l-.776-1.275a1.834 1.834 0 0 1-.075-1.733c.093-.196.176-.396.25-.6a1.831 1.831 0 0 1 1.278-1.173l1.45-.351c.11-.027.156-.107.16-.162a9.63 9.63 0 0 0 0-1.38c-.004-.055-.05-.135-.161-.161l-1.45-.353c-.626-.152-1.08-.625-1.278-1.172a6.576 6.576 0 0 0-.248-.6 1.833 1.833 0 0 1 .074-1.734l.776-1.274c.06-.098.036-.186 0-.228a9.774 9.774 0 0 0-.976-.976c-.042-.036-.131-.06-.228 0l-1.275.776a1.831 1.831 0 0 1-1.733.074 6.88 6.88 0 0 0-.6-.249 1.835 1.835 0 0 1-1.173-1.278l-.351-1.45c-.027-.11-.107-.156-.162-.16a9.63 9.63 0 0 0-1.38 0Z" }, "children": [] } ] } } } }, "gift": { "name": "gift", "keywords": [ "package", "present", "skill", "craft", "freebie" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2.75A2.75 2.75 0 0 1 4.75 0c.983 0 1.873.42 2.57 1.232.268.318.497.668.68 1.042.183-.375.411-.725.68-1.044C9.376.42 10.266 0 11.25 0a2.75 2.75 0 0 1 2.45 4h.55c.966 0 1.75.784 1.75 1.75v2c0 .698-.409 1.301-1 1.582v4.918A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V9.332C.409 9.05 0 8.448 0 7.75v-2C0 4.784.784 4 1.75 4h.55c-.192-.375-.3-.8-.3-1.25ZM7.25 9.5H2.5v4.75c0 .138.112.25.25.25h4.5Zm1.5 0v5h4.5a.25.25 0 0 0 .25-.25V9.5Zm0-4V8h5.5a.25.25 0 0 0 .25-.25v-2a.25.25 0 0 0-.25-.25Zm-7 0a.25.25 0 0 0-.25.25v2c0 .138.112.25.25.25h5.5V5.5h-5.5Zm3-4a1.25 1.25 0 0 0 0 2.5h2.309c-.233-.818-.542-1.401-.878-1.793-.43-.502-.915-.707-1.431-.707ZM8.941 4h2.309a1.25 1.25 0 0 0 0-2.5c-.516 0-1 .205-1.43.707-.337.392-.646.975-.879 1.793Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 3.75A3.75 3.75 0 0 1 7.5 0c1.455 0 3.436.901 4.5 3.11C13.064.901 15.044 0 16.5 0a3.75 3.75 0 0 1 3 6h1.75c.966 0 1.75.784 1.75 1.75v2.5c0 .698-.409 1.301-1 1.582v8.418A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-8.418c-.591-.282-1-.884-1-1.582v-2.5C1 6.784 1.784 6 2.75 6H4.5a3.733 3.733 0 0 1-.75-2.25ZM20.5 12h-7.75v8.5h7.5a.25.25 0 0 0 .25-.25Zm-9.25 8.5V12H3.5v8.25c0 .138.112.25.25.25Zm10-10a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25h-8.5v3Zm-18.5 0h8.5v-3h-8.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25Zm16-6.75A2.25 2.25 0 0 0 16.5 1.5c-1.15 0-3.433 1.007-3.72 4.5h3.72a2.25 2.25 0 0 0 2.25-2.25ZM11.22 6c-.287-3.493-2.57-4.5-3.72-4.5a2.25 2.25 0 1 0 0 4.5Z" }, "children": [] } ] } } } }, "git-branch": { "name": "git-branch", "keywords": [ "fork", "branch", "git", "duplicate" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.5 3.25a2.25 2.25 0 1 1 3 2.122V6A2.5 2.5 0 0 1 10 8.5H6a1 1 0 0 0-1 1v1.128a2.251 2.251 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.5 0v1.836A2.493 2.493 0 0 1 6 7h4a1 1 0 0 0 1-1v-.628A2.25 2.25 0 0 1 9.5 3.25Zm-6 0a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM4.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 4.75a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM2.5 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5Zm0 14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 21Zm12.5-14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 16.75A.75.75 0 0 1 5 16V8a.75.75 0 0 1 1.5 0v8a.75.75 0 0 1-.75.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.5 8.75v-1H19v1a3.75 3.75 0 0 1-3.75 3.75h-7a1.75 1.75 0 0 0-1.75 1.75H5A3.25 3.25 0 0 1 8.25 11h7a2.25 2.25 0 0 0 2.25-2.25Z" }, "children": [] } ] } } } }, "git-commit": { "name": "git-commit", "keywords": [ "save" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.93 8.5a4.002 4.002 0 0 1-7.86 0H.75a.75.75 0 0 1 0-1.5h3.32a4.002 4.002 0 0 1 7.86 0h3.32a.75.75 0 0 1 0 1.5Zm-1.43-.75a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.944 11h4.306a.75.75 0 0 1 0 1.5h-4.306a5.001 5.001 0 0 1-9.888 0H2.75a.75.75 0 0 1 0-1.5h4.306a5.001 5.001 0 0 1 9.888 0Zm-1.444.75a3.5 3.5 0 1 0-7 0 3.5 3.5 0 0 0 7 0Z" }, "children": [] } ] } } } }, "git-compare": { "name": "git-compare", "keywords": [ "difference", "changes" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM6 12v-1.646a.25.25 0 0 1 .427-.177l2.396 2.396a.25.25 0 0 1 0 .354l-2.396 2.396A.25.25 0 0 1 6 15.146V13.5H5A2.5 2.5 0 0 1 2.5 11V5.372a2.25 2.25 0 1 1 1.5 0V11a1 1 0 0 0 1 1ZM4 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0ZM12.75 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.5 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm3.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.905 1.72a.75.75 0 0 1 0 1.06L12.685 4h4.065a3.75 3.75 0 0 1 3.75 3.75v8.75a.75.75 0 0 1-1.5 0V7.75a2.25 2.25 0 0 0-2.25-2.25h-4.064l1.22 1.22a.75.75 0 0 1-1.061 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0ZM7.5 4.75a3.25 3.25 0 1 1-6.5 0 3.25 3.25 0 0 1 6.5 0ZM4.25 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 4.25 6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.095 22.28a.75.75 0 0 1 0-1.06l1.22-1.22H7.25a3.75 3.75 0 0 1-3.75-3.75V7.5a.75.75 0 0 1 1.5 0v8.75a2.25 2.25 0 0 0 2.25 2.25h4.064l-1.22-1.22a.748.748 0 0 1 .332-1.265.75.75 0 0 1 .729.205l2.5 2.5a.75.75 0 0 1 0 1.06l-2.5 2.5a.75.75 0 0 1-1.06 0Z" }, "children": [] } ] } } } }, "git-merge": { "name": "git-merge", "keywords": [ "join" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.45 5.154A4.25 4.25 0 0 0 9.25 7.5h1.378a2.251 2.251 0 1 1 0 1.5H9.25A5.734 5.734 0 0 1 5 7.123v3.505a2.25 2.25 0 1 1-1.5 0V5.372a2.25 2.25 0 1 1 1.95-.218ZM4.25 13.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm8.5-4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5ZM5 3.25a.75.75 0 1 0 0 .005V3.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 13.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm-12.5 6a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5Zm0 14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 21Zm12.5-6a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 15Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.5 7.25c0 2.9 2.35 5.25 5.25 5.25h4.5V14h-4.5A6.75 6.75 0 0 1 5 7.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 16.75A.75.75 0 0 1 5 16V8a.75.75 0 0 1 1.5 0v8a.75.75 0 0 1-.75.75Z" }, "children": [] } ] } } } }, "git-merge-queue": { "name": "git-merge-queue", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 4.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM3 7.75a.75.75 0 0 1 1.5 0v2.878a2.251 2.251 0 1 1-1.5 0Zm.75 5.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm5-7.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm5.75 2.5a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-1.5 0a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 6.5a1.75 1.75 0 1 1 .001-3.501A1.75 1.75 0 0 1 5.75 6.5ZM9.5 8.75a1.75 1.75 0 1 1 3.501.001A1.75 1.75 0 0 1 9.5 8.75ZM5.75 22.5a3.25 3.25 0 0 1-.745-6.414A.81.81 0 0 1 5 16v-5a.75.75 0 0 1 1.5 0v5a.81.81 0 0 1-.005.086A3.252 3.252 0 0 1 5.75 22.5ZM4 19.25a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 4 19.25Zm11-6.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm3.25 1.75a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Z" }, "children": [] } ] } } } }, "git-pull-request": { "name": "git-pull-request", "keywords": [ "review" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 3.25a2.25 2.25 0 1 1 3 2.122v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.25 2.25 0 0 1 1.5 3.25Zm5.677-.177L9.573.677A.25.25 0 0 1 10 .854V2.5h1A2.5 2.5 0 0 1 13.5 5v5.628a2.251 2.251 0 1 1-1.5 0V5a1 1 0 0 0-1-1h-1v1.646a.25.25 0 0 1-.427.177L7.177 3.427a.25.25 0 0 1 0-.354ZM3.75 2.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm0 9.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm8.25.75a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm-14.5 0a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm0-14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM4.75 3a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 3Zm0 14.5a1.75 1.75 0 1 0 .001 3.501A1.75 1.75 0 0 0 4.75 17.5Zm14.5 0a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.405 1.72a.75.75 0 0 1 0 1.06L12.185 4h4.065A3.75 3.75 0 0 1 20 7.75v8.75a.75.75 0 0 1-1.5 0V7.75a2.25 2.25 0 0 0-2.25-2.25h-4.064l1.22 1.22a.75.75 0 0 1-1.061 1.06l-2.5-2.5a.75.75 0 0 1 0-1.06l2.5-2.5a.75.75 0 0 1 1.06 0ZM4.75 7.25A.75.75 0 0 1 5.5 8v8A.75.75 0 0 1 4 16V8a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "git-pull-request-closed": { "name": "git-pull-request-closed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 1A2.25 2.25 0 0 1 4 5.372v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.251 2.251 0 0 1 3.25 1Zm9.5 5.5a.75.75 0 0 1 .75.75v3.378a2.251 2.251 0 1 1-1.5 0V7.25a.75.75 0 0 1 .75-.75Zm-2.03-5.273a.75.75 0 0 1 1.06 0l.97.97.97-.97a.748.748 0 0 1 1.265.332.75.75 0 0 1-.205.729l-.97.97.97.97a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-.97-.97-.97.97a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l.97-.97-.97-.97a.75.75 0 0 1 0-1.06ZM2.5 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM3.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm9.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22.266 2.711a.75.75 0 1 0-1.061-1.06l-1.983 1.983-1.984-1.983a.75.75 0 1 0-1.06 1.06l1.983 1.983-1.983 1.984a.75.75 0 0 0 1.06 1.06l1.984-1.983 1.983 1.983a.75.75 0 0 0 1.06-1.06l-1.983-1.984 1.984-1.983ZM4.75 1.5a3.25 3.25 0 0 1 .745 6.414A.827.827 0 0 1 5.5 8v8a.827.827 0 0 1-.005.086A3.25 3.25 0 0 1 4.75 22.5a3.25 3.25 0 0 1-.745-6.414A.827.827 0 0 1 4 16V8c0-.029.002-.057.005-.086A3.25 3.25 0 0 1 4.75 1.5ZM16 19.25a3.252 3.252 0 0 1 2.5-3.163V9.625a.75.75 0 0 1 1.5 0v6.462a3.252 3.252 0 0 1-.75 6.413A3.25 3.25 0 0 1 16 19.25ZM3 4.75a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 4.75Zm0 14.5a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 19.25Zm16.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501Z" }, "children": [] } ] } } } }, "git-pull-request-draft": { "name": "git-pull-request-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 1A2.25 2.25 0 0 1 4 5.372v5.256a2.251 2.251 0 1 1-1.5 0V5.372A2.251 2.251 0 0 1 3.25 1Zm9.5 14a2.25 2.25 0 1 1 0-4.5 2.25 2.25 0 0 1 0 4.5ZM2.5 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM3.25 12a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm9.5 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM14 7.5a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Zm0-4.25a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 1.5a3.25 3.25 0 0 1 .745 6.414A.827.827 0 0 1 5.5 8v8a.827.827 0 0 1-.005.086A3.25 3.25 0 0 1 4.75 22.5a3.25 3.25 0 0 1-.745-6.414A.827.827 0 0 1 4 16V8c0-.029.002-.057.005-.086A3.25 3.25 0 0 1 4.75 1.5ZM16 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM3 4.75a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 4.75Zm0 14.5a1.75 1.75 0 1 0 3.501-.001A1.75 1.75 0 0 0 3 19.25Zm16.25-1.75a1.75 1.75 0 1 0 .001 3.501 1.75 1.75 0 0 0-.001-3.501Zm0-11.5a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5ZM21 11.25a1.75 1.75 0 1 1-3.5 0 1.75 1.75 0 0 1 3.5 0Z" }, "children": [] } ] } } } }, "globe": { "name": "globe", "keywords": [ "world", "earth", "planet", "enterprise" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM5.78 8.75a9.64 9.64 0 0 0 1.363 4.177c.255.426.542.832.857 1.215.245-.296.551-.705.857-1.215A9.64 9.64 0 0 0 10.22 8.75Zm4.44-1.5a9.64 9.64 0 0 0-1.363-4.177c-.307-.51-.612-.919-.857-1.215a9.927 9.927 0 0 0-.857 1.215A9.64 9.64 0 0 0 5.78 7.25Zm-5.944 1.5H1.543a6.507 6.507 0 0 0 4.666 5.5c-.123-.181-.24-.365-.352-.552-.715-1.192-1.437-2.874-1.581-4.948Zm-2.733-1.5h2.733c.144-2.074.866-3.756 1.58-4.948.12-.197.237-.381.353-.552a6.507 6.507 0 0 0-4.666 5.5Zm10.181 1.5c-.144 2.074-.866 3.756-1.58 4.948-.12.197-.237.381-.353.552a6.507 6.507 0 0 0 4.666-5.5Zm2.733-1.5a6.507 6.507 0 0 0-4.666-5.5c.123.181.24.365.353.552.714 1.192 1.436 2.874 1.58 4.948Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1Zm3.241 10.5v-.001c-.1-2.708-.992-4.904-1.89-6.452a13.919 13.919 0 0 0-1.304-1.88L12 3.11l-.047.059c-.354.425-.828 1.06-1.304 1.88-.898 1.547-1.79 3.743-1.89 6.451Zm-12.728 0h4.745c.1-3.037 1.1-5.49 2.093-7.204.39-.672.78-1.233 1.119-1.673C6.11 3.329 2.746 7 2.513 11.5Zm18.974 0C21.254 7 17.89 3.329 13.53 2.623c.339.44.729 1.001 1.119 1.673.993 1.714 1.993 4.167 2.093 7.204ZM8.787 13c.182 2.478 1.02 4.5 1.862 5.953.382.661.818 1.29 1.304 1.88l.047.057.047-.059c.354-.425.828-1.06 1.304-1.88.842-1.451 1.679-3.471 1.862-5.951Zm-1.504 0H2.552a9.505 9.505 0 0 0 7.918 8.377 15.773 15.773 0 0 1-1.119-1.673C8.413 18.085 7.47 15.807 7.283 13Zm9.434 0c-.186 2.807-1.13 5.085-2.068 6.704-.39.672-.78 1.233-1.118 1.673A9.506 9.506 0 0 0 21.447 13Z" }, "children": [] } ] } } } }, "goal": { "name": "goal", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.637 2.363h-.001l1.676.335c.09.018.164.084.19.173a.25.25 0 0 1-.062.249l-1.373 1.374a.876.876 0 0 1-.619.256H12.31L9.45 7.611A1.5 1.5 0 1 1 6.5 8a1.501 1.501 0 0 1 1.889-1.449l2.861-2.862V2.552c0-.232.092-.455.256-.619L12.88.559a.25.25 0 0 1 .249-.062c.089.026.155.1.173.19Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 8a6 6 0 1 0 11.769-1.656.751.751 0 1 1 1.442-.413 7.502 7.502 0 0 1-12.513 7.371A7.501 7.501 0 0 1 10.069.789a.75.75 0 0 1-.413 1.442A6.001 6.001 0 0 0 2 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 8a3.002 3.002 0 0 0 4.699 2.476 3 3 0 0 0 1.28-2.827.748.748 0 0 1 1.045-.782.75.75 0 0 1 .445.61A4.5 4.5 0 1 1 8.516 3.53a.75.75 0 1 1-.17 1.49A3 3 0 0 0 5 8Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20.172 6.75h-1.861l-4.566 4.564a1.874 1.874 0 1 1-1.06-1.06l4.565-4.565V3.828a.94.94 0 0 1 .275-.664l1.73-1.73a.249.249 0 0 1 .25-.063c.089.026.155.1.173.191l.46 2.301 2.3.46c.09.018.164.084.19.173a.25.25 0 0 1-.062.249l-1.731 1.73a.937.937 0 0 1-.663.275Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.625 12A9.375 9.375 0 0 0 12 21.375 9.375 9.375 0 0 0 21.375 12c0-.898-.126-1.766-.361-2.587A.75.75 0 0 1 22.455 9c.274.954.42 1.96.42 3 0 6.006-4.869 10.875-10.875 10.875S1.125 18.006 1.125 12 5.994 1.125 12 1.125c1.015-.001 2.024.14 3 .419a.75.75 0 1 1-.413 1.442A9.39 9.39 0 0 0 12 2.625 9.375 9.375 0 0 0 2.625 12Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.125 12a4.874 4.874 0 1 0 9.717-.569.748.748 0 0 1 1.047-.798c.251.112.42.351.442.625a6.373 6.373 0 0 1-10.836 5.253 6.376 6.376 0 0 1 5.236-10.844.75.75 0 1 1-.17 1.49A4.876 4.876 0 0 0 7.125 12Z" }, "children": [] } ] } } } }, "grabber": { "name": "grabber", "keywords": [ "mover", "drag", "drop", "sort" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0-4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm-4 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5-9a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9 13a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm7-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM9 18a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm6 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } } } }, "graph": { "name": "graph", "keywords": [ "trend", "stats", "statistics" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 1.75V13.5h13.75a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75V1.75a.75.75 0 0 1 1.5 0Zm14.28 2.53-5.25 5.25a.75.75 0 0 1-1.06 0L7 7.06 4.28 9.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0L10 7.94l4.72-4.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 2.75a.75.75 0 0 0-1.5 0v18.5c0 .414.336.75.75.75H20a.75.75 0 0 0 0-1.5H2.5V2.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22.28 7.78a.75.75 0 0 0-1.06-1.06l-5.72 5.72-3.72-3.72a.75.75 0 0 0-1.06 0l-6 6a.75.75 0 1 0 1.06 1.06l5.47-5.47 3.72 3.72a.75.75 0 0 0 1.06 0l6.25-6.25Z" }, "children": [] } ] } } } }, "hash": { "name": "hash", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.368 1.01a.75.75 0 0 1 .623.859L6.57 4.5h3.98l.46-2.868a.75.75 0 0 1 1.48.237L12.07 4.5h2.18a.75.75 0 0 1 0 1.5h-2.42l-.64 4h2.56a.75.75 0 0 1 0 1.5h-2.8l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H5.45l-.46 2.869a.75.75 0 0 1-1.48-.237l.42-2.632H1.75a.75.75 0 0 1 0-1.5h2.42l.64-4H2.25a.75.75 0 0 1 0-1.5h2.8l.46-2.868a.75.75 0 0 1 .858-.622ZM9.67 10l.64-4H6.33l-.64 4Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.618 1.76a.75.75 0 0 1 .623.859L9.46 7.5h6.48l.82-5.118a.75.75 0 0 1 1.48.237L17.46 7.5h3.79a.75.75 0 0 1 0 1.5h-4.03l-.96 6h3.99a.75.75 0 0 1 0 1.5h-4.23l-.78 4.869a.75.75 0 0 1-1.48-.237l.74-4.632H8.02l-.78 4.869a.75.75 0 0 1-1.48-.237L6.5 16.5H2.745a.75.75 0 0 1 0-1.5H6.74l.96-6H3.75a.75.75 0 0 1 0-1.5h4.19l.82-5.118a.75.75 0 0 1 .858-.622ZM14.741 15l.96-6H9.22l-.96 6Z" }, "children": [] } ] } } } }, "heading": { "name": "heading", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2a.75.75 0 0 1 .75.75V7h7V2.75a.75.75 0 0 1 1.5 0v10.5a.75.75 0 0 1-1.5 0V8.5h-7v4.75a.75.75 0 0 1-1.5 0V2.75A.75.75 0 0 1 3.75 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.25 4a.75.75 0 0 1 .75.75V11h10V4.75a.75.75 0 0 1 1.5 0v14.5a.75.75 0 0 1-1.5 0V12.5H7v6.75a.75.75 0 0 1-1.5 0V4.75A.75.75 0 0 1 6.25 4Z" }, "children": [] } ] } } } }, "heart": { "name": "heart", "keywords": [ "love", "beat" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8 14.25.345.666a.75.75 0 0 1-.69 0l-.008-.004-.018-.01a7.152 7.152 0 0 1-.31-.17 22.055 22.055 0 0 1-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.066 22.066 0 0 1-3.744 2.584l-.018.01-.006.003h-.002ZM4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.58 20.58 0 0 0 8 13.393a20.58 20.58 0 0 0 3.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.749.749 0 0 1-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12 20.703.343.667a.748.748 0 0 1-.686 0l-.003-.002-.007-.003-.025-.013a31.138 31.138 0 0 1-5.233-3.576C3.8 15.573 1 12.332 1 8.514v-.001C1 5.053 3.829 2.5 6.736 2.5 9.03 2.5 10.881 3.726 12 5.605 13.12 3.726 14.97 2.5 17.264 2.5 20.17 2.5 23 5.052 23 8.514c0 3.818-2.801 7.06-5.389 9.262a31.148 31.148 0 0 1-5.233 3.576l-.025.013-.007.003-.002.001ZM6.736 4C4.657 4 2.5 5.88 2.5 8.514c0 3.107 2.324 5.96 4.861 8.12a29.655 29.655 0 0 0 4.566 3.175l.073.041.073-.04c.271-.153.661-.38 1.13-.674.94-.588 2.19-1.441 3.436-2.502 2.537-2.16 4.861-5.013 4.861-8.12C21.5 5.88 19.343 4 17.264 4c-2.106 0-3.801 1.389-4.553 3.643a.751.751 0 0 1-1.422 0C10.537 5.389 8.841 4 6.736 4Z" }, "children": [] } ] } } } }, "heart-fill": { "name": "heart-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.655 14.916v-.001h-.002l-.006-.003-.018-.01a22.066 22.066 0 0 1-3.744-2.584C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.044 5.231-3.886 6.818a22.094 22.094 0 0 1-3.433 2.414 7.152 7.152 0 0 1-.31.17l-.018.01-.008.004a.75.75 0 0 1-.69 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14 20.408c-.492.308-.903.546-1.192.709-.153.086-.308.17-.463.252h-.002a.75.75 0 0 1-.686 0 16.709 16.709 0 0 1-.465-.252 31.147 31.147 0 0 1-4.803-3.34C3.8 15.572 1 12.331 1 8.513 1 5.052 3.829 2.5 6.736 2.5 9.03 2.5 10.881 3.726 12 5.605 13.12 3.726 14.97 2.5 17.264 2.5 20.17 2.5 23 5.052 23 8.514c0 3.818-2.801 7.06-5.389 9.262A31.146 31.146 0 0 1 14 20.408Z" }, "children": [] } ] } } } }, "history": { "name": "history", "keywords": [ "time", "past", "revert", "back" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m.427 1.927 1.215 1.215a8.002 8.002 0 1 1-1.6 5.685.75.75 0 1 1 1.493-.154 6.5 6.5 0 1 0 1.18-4.458l1.358 1.358A.25.25 0 0 1 3.896 6H.25A.25.25 0 0 1 0 5.75V2.104a.25.25 0 0 1 .427-.177ZM7.75 4a.75.75 0 0 1 .75.75v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5A.75.75 0 0 1 7.75 4Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.998 2.5A9.503 9.503 0 0 0 3.378 8H5.75a.75.75 0 0 1 0 1.5H2a1 1 0 0 1-1-1V4.75a.75.75 0 0 1 1.5 0v1.697A10.997 10.997 0 0 1 11.998 1C18.074 1 23 5.925 23 12s-4.926 11-11.002 11C6.014 23 1.146 18.223 1 12.275a.75.75 0 0 1 1.5-.037 9.5 9.5 0 0 0 9.498 9.262c5.248 0 9.502-4.253 9.502-9.5s-4.254-9.5-9.502-9.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315V7.25Z" }, "children": [] } ] } } } }, "home": { "name": "home", "keywords": [ "welcome", "index", "house", "building" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.906.664a1.749 1.749 0 0 1 2.187 0l5.25 4.2c.415.332.657.835.657 1.367v7.019A1.75 1.75 0 0 1 13.25 15h-3.5a.75.75 0 0 1-.75-.75V9H7v5.25a.75.75 0 0 1-.75.75h-3.5A1.75 1.75 0 0 1 1 13.25V6.23c0-.531.242-1.034.657-1.366l5.25-4.2Zm1.25 1.171a.25.25 0 0 0-.312 0l-5.25 4.2a.25.25 0 0 0-.094.196v7.019c0 .138.112.25.25.25H5.5V8.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v5.25h2.75a.25.25 0 0 0 .25-.25V6.23a.25.25 0 0 0-.094-.195Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.03 2.59a1.501 1.501 0 0 1 1.94 0l7.5 6.363a1.5 1.5 0 0 1 .53 1.144V19.5a1.5 1.5 0 0 1-1.5 1.5h-5.75a.75.75 0 0 1-.75-.75V14h-2v6.25a.75.75 0 0 1-.75.75H4.5A1.5 1.5 0 0 1 3 19.5v-9.403c0-.44.194-.859.53-1.144ZM12 3.734l-7.5 6.363V19.5h5v-6.25a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 .75.75v6.25h5v-9.403Z" }, "children": [] } ] } } } }, "home-fill": { "name": "home-fill", "keywords": [], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.97 2.59a1.5 1.5 0 0 0-1.94 0l-7.5 6.363A1.5 1.5 0 0 0 3 10.097V19.5A1.5 1.5 0 0 0 4.5 21h4.75a.75.75 0 0 0 .75-.75V14h4v6.25c0 .414.336.75.75.75h4.75a1.5 1.5 0 0 0 1.5-1.5v-9.403a1.5 1.5 0 0 0-.53-1.144l-7.5-6.363Z" }, "children": [] } ] } } } }, "horizontal-rule": { "name": "horizontal-rule", "keywords": [ "hr" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 7.75A.75.75 0 0 1 .75 7h14.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 7.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 12.75a.75.75 0 0 1 .75-.75h18.5a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "hourglass": { "name": "hourglass", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 1h10.5a.75.75 0 0 1 0 1.5h-.75v1.25a4.75 4.75 0 0 1-1.9 3.8l-.333.25a.25.25 0 0 0 0 .4l.333.25a4.75 4.75 0 0 1 1.9 3.8v1.25h.75a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5h.75v-1.25a4.75 4.75 0 0 1 1.9-3.8l.333-.25a.25.25 0 0 0 0-.4L5.4 7.55a4.75 4.75 0 0 1-1.9-3.8V2.5h-.75a.75.75 0 0 1 0-1.5ZM11 2.5H5v1.25c0 1.023.482 1.986 1.3 2.6l.333.25c.934.7.934 2.1 0 2.8l-.333.25a3.251 3.251 0 0 0-1.3 2.6v1.25h6v-1.25a3.251 3.251 0 0 0-1.3-2.6l-.333-.25a1.748 1.748 0 0 1 0-2.8l.333-.25a3.251 3.251 0 0 0 1.3-2.6Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 2h14.5a.75.75 0 0 1 0 1.5h-.75v2.982a4.75 4.75 0 0 1-2.215 4.017l-2.044 1.29a.25.25 0 0 0 0 .422l2.044 1.29a4.75 4.75 0 0 1 2.215 4.017V20.5h.75a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5h.75v-2.982a4.75 4.75 0 0 1 2.215-4.017l2.044-1.29a.25.25 0 0 0 0-.422l-2.044-1.29A4.75 4.75 0 0 1 5.5 6.482V3.5h-.75a.75.75 0 0 1 0-1.5ZM17 3.5H7v2.982A3.25 3.25 0 0 0 8.516 9.23l2.044 1.29a1.75 1.75 0 0 1 0 2.96l-2.044 1.29A3.25 3.25 0 0 0 7 17.518V20.5h10v-2.982a3.25 3.25 0 0 0-1.516-2.748l-2.044-1.29a1.75 1.75 0 0 1 0-2.96l2.044-1.29A3.25 3.25 0 0 0 17 6.482Z" }, "children": [] } ] } } } }, "hubot": { "name": "hubot", "keywords": [ "robot", "bot" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 0 1 16 0v5.25a.75.75 0 0 1-1.5 0V8a6.5 6.5 0 1 0-13 0v5.25a.75.75 0 0 1-1.5 0Zm3-1.25C3 5.784 3.784 5 4.75 5h6.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0 1 11.25 10h-6.5A1.75 1.75 0 0 1 3 8.25Zm1.47-.53a.75.75 0 0 0 0 1.06l1.5 1.5a.75.75 0 0 0 1.06 0L8 7.81l.97.97a.75.75 0 0 0 1.06 0l1.5-1.5a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215l-.97.97-.97-.97a.75.75 0 0 0-1.06 0l-.97.97-.97-.97a.75.75 0 0 0-1.06 0Zm1.03 6.03a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 13C0 6.373 5.373 1 12 1s12 5.373 12 12v8.657a.75.75 0 0 1-1.5 0V13c0-5.799-4.701-10.5-10.5-10.5S1.5 7.201 1.5 13v8.657a.75.75 0 0 1-1.5 0V13Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 19.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75ZM5.25 9.5h13.5c.966 0 1.75.784 1.75 1.75v3.5a1.75 1.75 0 0 1-1.75 1.75H5.25a1.75 1.75 0 0 1-1.75-1.75v-3.5c0-.966.784-1.75 1.75-1.75Zm.22 1.47a.75.75 0 0 0 0 1.06l3 3a.75.75 0 0 0 1.06 0L12 12.56l2.47 2.47a.75.75 0 0 0 1.06 0l3-3a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215L15 13.44l-2.47-2.47a.75.75 0 0 0-1.06 0L9 13.44l-2.47-2.47a.75.75 0 0 0-1.06 0Z" }, "children": [] } ] } } } }, "id-badge": { "name": "id-badge", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 7.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-3Zm10 .25a.75.75 0 0 1-.75.75h-4.5a.75.75 0 0 1 0-1.5h4.5a.75.75 0 0 1 .75.75ZM10.25 11a.75.75 0 0 0 0-1.5h-2.5a.75.75 0 0 0 0 1.5h2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.25 0h1.5c.966 0 1.75.784 1.75 1.75V3h3.75c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-8.5C0 3.784.784 3 1.75 3H5.5V1.75C5.5.784 6.284 0 7.25 0Zm3.232 4.5A1.75 1.75 0 0 1 8.75 6h-1.5a1.75 1.75 0 0 1-1.732-1.5H1.75a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM7 1.75v2.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 9 4.25v-2.5a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "image": { "name": "image", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 13.25A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25V2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75ZM1.75 2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h.94l.03-.03 6.077-6.078a1.75 1.75 0 0 1 2.412-.06L14.5 10.31V2.75a.25.25 0 0 0-.25-.25Zm12.5 11a.25.25 0 0 0 .25-.25v-.917l-4.298-3.889a.25.25 0 0 0-.344.009L4.81 13.5ZM7 6a2 2 0 1 1-3.999.001A2 2 0 0 1 7 6ZM5.5 6a.5.5 0 1 0-1 0 .5.5 0 0 0 1 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 3h14.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 19.25 21H4.75A1.75 1.75 0 0 1 3 19.25V4.75C3 3.784 3.784 3 4.75 3Zm14.5 1.5H4.75a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h.19l9.823-9.823a1.75 1.75 0 0 1 2.475 0l2.262 2.262V4.75a.25.25 0 0 0-.25-.25Zm.25 9.56-3.323-3.323a.25.25 0 0 0-.354 0L7.061 19.5H19.25a.25.25 0 0 0 .25-.25ZM8.5 11a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm0-1.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] } ] } } } }, "inbox": { "name": "inbox", "keywords": [ "mail", "todo", "new", "messages" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.8 2.06A1.75 1.75 0 0 1 4.41 1h7.18c.7 0 1.333.417 1.61 1.06l2.74 6.395c.04.093.06.194.06.295v4.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-4.5c0-.101.02-.202.06-.295Zm1.61.44a.25.25 0 0 0-.23.152L1.887 8H4.75a.75.75 0 0 1 .6.3L6.625 10h2.75l1.275-1.7a.75.75 0 0 1 .6-.3h2.863L11.82 2.652a.25.25 0 0 0-.23-.152Zm10.09 7h-2.875l-1.275 1.7a.75.75 0 0 1-.6.3h-3.5a.75.75 0 0 1-.6-.3L4.375 9.5H1.5v3.75c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.801 3.57A1.75 1.75 0 0 1 6.414 2.5h11.174c.702 0 1.337.42 1.611 1.067l3.741 8.828c.04.092.06.192.06.293v7.562A1.75 1.75 0 0 1 21.25 22H2.75A1.75 1.75 0 0 1 1 20.25v-7.5c0-.1.02-.199.059-.291L4.8 3.571ZM6.414 4a.25.25 0 0 0-.23.153L2.88 12H8a.75.75 0 0 1 .648.372L10.18 15h3.638l1.533-2.628a.75.75 0 0 1 .64-.372l5.13-.051-3.304-7.797a.25.25 0 0 0-.23-.152ZM21.5 13.445l-5.067.05-1.535 2.633a.75.75 0 0 1-.648.372h-4.5a.75.75 0 0 1-.648-.372L7.57 13.5H2.5v6.75c0 .138.112.25.25.25h18.5a.25.25 0 0 0 .25-.25Z" }, "children": [] } ] } } } }, "infinity": { "name": "infinity", "keywords": [ "unlimited", "infinite" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 6.984c.59-.533 1.204-1.066 1.825-1.493.797-.548 1.7-.991 2.675-.991C14.414 4.5 16 6.086 16 8s-1.586 3.5-3.5 3.5c-.975 0-1.878-.444-2.675-.991-.621-.427-1.235-.96-1.825-1.493-.59.533-1.204 1.066-1.825 1.493-.797.547-1.7.991-2.675.991C1.586 11.5 0 9.914 0 8s1.586-3.5 3.5-3.5c.975 0 1.878.443 2.675.991.621.427 1.235.96 1.825 1.493ZM9.114 8c.536.483 1.052.922 1.56 1.273.704.483 1.3.727 1.826.727 1.086 0 2-.914 2-2 0-1.086-.914-2-2-2-.525 0-1.122.244-1.825.727-.51.35-1.025.79-1.561 1.273ZM3.5 6c-1.086 0-2 .914-2 2 0 1.086.914 2 2 2 .525 0 1.122-.244 1.825-.727.51-.35 1.025-.79 1.561-1.273-.536-.483-1.052-.922-1.56-1.273C4.621 6.244 4.025 6 3.5 6Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 11.16c.887-.933 1.813-1.865 2.78-2.6C15.952 7.668 17.267 7 18.75 7 21.657 7 24 9.615 24 12.25s-2.343 5.25-5.25 5.25c-1.483 0-2.798-.668-3.97-1.56-.967-.735-1.893-1.667-2.78-2.6-.887.933-1.813 1.865-2.78 2.6-1.172.892-2.487 1.56-3.97 1.56C2.343 17.5 0 14.885 0 12.25S2.343 7 5.25 7c1.483 0 2.798.667 3.97 1.56.967.735 1.893 1.667 2.78 2.6ZM5.25 8.5c-2.032 0-3.75 1.895-3.75 3.75S3.218 16 5.25 16c1.017 0 2.014-.457 3.062-1.253.89-.678 1.758-1.554 2.655-2.497-.897-.943-1.765-1.82-2.655-2.497C7.264 8.957 6.267 8.5 5.25 8.5Zm7.783 3.75c.897.943 1.765 1.82 2.655 2.497C16.736 15.543 17.733 16 18.75 16c2.032 0 3.75-1.895 3.75-3.75S20.782 8.5 18.75 8.5c-1.017 0-2.014.457-3.062 1.253-.89.678-1.758 1.554-2.655 2.497Z" }, "children": [] } ] } } } }, "info": { "name": "info", "keywords": [ "help" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13 7.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-3 3.75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v4.25h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5h.75V12h-.75a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "issue-closed": { "name": "issue-closed", "keywords": [ "done", "complete" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.28 6.78a.75.75 0 0 0-1.06-1.06L7.25 8.69 5.78 7.22a.75.75 0 0 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l3.5-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-1.5 0a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.28 9.28a.75.75 0 0 0-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l6.5-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "issue-draft": { "name": "issue-draft", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.307 11.655a.75.75 0 0 1 .165 1.048 8.05 8.05 0 0 1-1.769 1.77.75.75 0 0 1-.883-1.214 6.552 6.552 0 0 0 1.44-1.439.75.75 0 0 1 1.047-.165Zm-2.652-9.962a.75.75 0 0 1 1.048-.165 8.05 8.05 0 0 1 1.77 1.769.75.75 0 0 1-1.214.883 6.552 6.552 0 0 0-1.439-1.44.75.75 0 0 1-.165-1.047ZM6.749.097a8.074 8.074 0 0 1 2.502 0 .75.75 0 1 1-.233 1.482 6.558 6.558 0 0 0-2.036 0A.751.751 0 0 1 6.749.097ZM.955 6.125a.75.75 0 0 1 .624.857 6.558 6.558 0 0 0 0 2.036.75.75 0 1 1-1.482.233 8.074 8.074 0 0 1 0-2.502.75.75 0 0 1 .858-.624Zm14.09 0a.75.75 0 0 1 .858.624c.13.829.13 1.673 0 2.502a.75.75 0 1 1-1.482-.233 6.558 6.558 0 0 0 0-2.036.75.75 0 0 1 .624-.857Zm-8.92 8.92a.75.75 0 0 1 .857-.624 6.558 6.558 0 0 0 2.036 0 .75.75 0 1 1 .233 1.482c-.829.13-1.673.13-2.502 0a.75.75 0 0 1-.624-.858Zm-4.432-3.39a.75.75 0 0 1 1.048.165 6.552 6.552 0 0 0 1.439 1.44.751.751 0 0 1-.883 1.212 8.05 8.05 0 0 1-1.77-1.769.75.75 0 0 1 .166-1.048Zm2.652-9.962A.75.75 0 0 1 4.18 2.74a6.556 6.556 0 0 0-1.44 1.44.751.751 0 0 1-1.212-.883 8.05 8.05 0 0 1 1.769-1.77.75.75 0 0 1 1.048.166Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.32 3.205a.75.75 0 0 1 1.046-.177 11.056 11.056 0 0 1 2.605 2.606.75.75 0 1 1-1.222.869 9.554 9.554 0 0 0-2.252-2.252.75.75 0 0 1-.177-1.046Zm3.475 14.115a.75.75 0 0 1 .176 1.046 11.07 11.07 0 0 1-2.605 2.605.75.75 0 1 1-.869-1.222 9.554 9.554 0 0 0 2.252-2.252.75.75 0 0 1 1.046-.177ZM2.018 9.543a.75.75 0 0 1 .615.864 9.571 9.571 0 0 0 0 3.186.75.75 0 1 1-1.48.25 11.07 11.07 0 0 1 0-3.686.75.75 0 0 1 .865-.614Zm7.525 12.439a.75.75 0 0 1 .864-.615 9.571 9.571 0 0 0 3.186 0 .75.75 0 1 1 .25 1.48 11.07 11.07 0 0 1-3.686 0 .75.75 0 0 1-.614-.865ZM6.68 3.205a.75.75 0 0 1-.177 1.046A9.558 9.558 0 0 0 4.25 6.503a.75.75 0 1 1-1.223-.87 11.056 11.056 0 0 1 2.606-2.605.75.75 0 0 1 1.046.177ZM3.205 17.32a.75.75 0 0 1 1.046.177 9.554 9.554 0 0 0 2.252 2.252.75.75 0 1 1-.87 1.223 11.056 11.056 0 0 1-2.605-2.606.75.75 0 0 1 .177-1.046Zm6.952-16.166a11.07 11.07 0 0 1 3.686 0 .75.75 0 0 1-.25 1.479 9.571 9.571 0 0 0-3.186 0 .75.75 0 1 1-.25-1.48Zm11.825 8.389a.75.75 0 0 1 .864.614 11.07 11.07 0 0 1 0 3.686.75.75 0 0 1-1.479-.25 9.571 9.571 0 0 0 0-3.186.75.75 0 0 1 .615-.864Z" }, "children": [] } ] } } } }, "issue-opened": { "name": "issue-opened", "keywords": [ "new" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Zm9.5 2a2 2 0 1 1-.001-3.999A2 2 0 0 1 12 14Z" }, "children": [] } ] } } } }, "issue-reopened": { "name": "issue-reopened", "keywords": [ "regression" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.029 2.217a6.5 6.5 0 0 1 9.437 5.11.75.75 0 1 0 1.492-.154 8 8 0 0 0-14.315-4.03L.427 1.927A.25.25 0 0 0 0 2.104V5.75A.25.25 0 0 0 .25 6h3.646a.25.25 0 0 0 .177-.427L2.715 4.215a6.491 6.491 0 0 1 2.314-1.998ZM1.262 8.169a.75.75 0 0 0-1.22.658 8.001 8.001 0 0 0 14.315 4.03l1.216 1.216a.25.25 0 0 0 .427-.177V10.25a.25.25 0 0 0-.25-.25h-3.646a.25.25 0 0 0-.177.427l1.358 1.358a6.501 6.501 0 0 1-11.751-3.11.75.75 0 0 0-.272-.506Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.06 9.06a1.5 1.5 0 1 1-2.12-2.12 1.5 1.5 0 0 1 2.12 2.12Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.38 8A9.502 9.502 0 0 1 12 2.5a9.502 9.502 0 0 1 9.215 7.182.75.75 0 1 0 1.456-.364C21.473 4.539 17.15 1 12 1a10.995 10.995 0 0 0-9.5 5.452V4.75a.75.75 0 0 0-1.5 0V8.5a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5H3.38Zm-.595 6.318a.75.75 0 0 0-1.455.364C2.527 19.461 6.85 23 12 23c4.052 0 7.592-2.191 9.5-5.451v1.701a.75.75 0 0 0 1.5 0V15.5a1 1 0 0 0-1-1h-3.75a.75.75 0 0 0 0 1.5h2.37A9.502 9.502 0 0 1 12 21.5c-4.446 0-8.181-3.055-9.215-7.182Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.414 13.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828Z" }, "children": [] } ] } } } }, "issue-tracked-by": { "name": "issue-tracked-by", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 8a6.5 6.5 0 0 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm3.573 5.823-2.896-2.896a.25.25 0 0 1 0-.354l2.896-2.896a.25.25 0 0 1 .427.177V11.5h3.25a.75.75 0 0 1 0 1.5H12v2.146a.25.25 0 0 1-.427.177Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5a9.5 9.5 0 1 0 0 19 .75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23L13.76 17.02a.308.308 0 0 0 0 .46ZM12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" }, "children": [] } ] } } } }, "issue-tracks": { "name": "issue-tracks", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 8a6.5 6.5 0 0 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm1.5 1.75a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Zm2.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 12a9.5 9.5 0 1 1 19 0 .75.75 0 0 0 1.5 0c0-6.075-4.925-11-11-11S1 5.925 1 12s4.925 11 11 11a.75.75 0 0 0 0-1.5A9.5 9.5 0 0 1 2.5 12Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm2.5 2.75a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm3.75 2.75a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z" }, "children": [] } ] } } } }, "italic": { "name": "italic", "keywords": [ "font", "italic", "style" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 2.75A.75.75 0 0 1 6.75 2h6.5a.75.75 0 0 1 0 1.5h-2.505l-3.858 9H9.25a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.505l3.858-9H6.75A.75.75 0 0 1 6 2.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10 4.75a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-3.514l-5.828 13h3.342a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5h3.514l5.828-13H10.75a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "iterations": { "name": "iterations", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 7.25a4.75 4.75 0 0 1 9.5 0 .75.75 0 0 0 1.5 0 6.25 6.25 0 1 0-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 0 0 0-.354l-2.896-2.896a.25.25 0 0 0-.427.177V12H7.25A4.75 4.75 0 0 1 2.5 7.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 10.5a8 8 0 1 1 16 0 .75.75 0 0 0 1.5 0 9.5 9.5 0 1 0-9.5 9.5h10.94l-2.72 2.72a.75.75 0 1 0 1.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 0 0-1.06 1.06l2.72 2.72H10.5a8 8 0 0 1-8-8Z" }, "children": [] } ] } } } }, "kebab-horizontal": { "name": "kebab-horizontal", "keywords": [ "kebab", "dot", "menu", "more" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM1.5 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm13 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20 14a2 2 0 1 1-.001-3.999A2 2 0 0 1 20 14ZM6 12a2 2 0 1 1-3.999.001A2 2 0 0 1 6 12Zm8 0a2 2 0 1 1-3.999.001A2 2 0 0 1 14 12Z" }, "children": [] } ] } } } }, "key": { "name": "key", "keywords": [ "key", "lock", "secure", "safe" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.5 0a5.499 5.499 0 1 1-1.288 10.848l-.932.932a.749.749 0 0 1-.53.22H7v.75a.749.749 0 0 1-.22.53l-.5.5a.749.749 0 0 1-.53.22H5v.75a.749.749 0 0 1-.22.53l-.5.5a.749.749 0 0 1-.53.22h-2A1.75 1.75 0 0 1 0 14.25v-2c0-.199.079-.389.22-.53l4.932-4.932A5.5 5.5 0 0 1 10.5 0Zm-4 5.5c-.001.431.069.86.205 1.269a.75.75 0 0 1-.181.768L1.5 12.56v1.69c0 .138.112.25.25.25h1.69l.06-.06v-1.19a.75.75 0 0 1 .75-.75h1.19l.06-.06v-1.19a.75.75 0 0 1 .75-.75h1.19l1.023-1.025a.75.75 0 0 1 .768-.18A4 4 0 1 0 6.5 5.5ZM11 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.75 8.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.75 0a8.25 8.25 0 1 1-2.541 16.101l-1.636 1.636a1.744 1.744 0 0 1-1.237.513H9.25a.25.25 0 0 0-.25.25v1.448a.876.876 0 0 1-.256.619l-.214.213a.75.75 0 0 1-.545.22H5.25a.25.25 0 0 0-.25.25v1A1.75 1.75 0 0 1 3.25 24h-1.5A1.75 1.75 0 0 1 0 22.25v-2.836c0-.464.185-.908.513-1.236l7.386-7.388A8.249 8.249 0 0 1 15.75 0ZM9 8.25a6.733 6.733 0 0 0 .463 2.462.75.75 0 0 1-.168.804l-7.722 7.721a.25.25 0 0 0-.073.177v2.836c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-1c0-.966.784-1.75 1.75-1.75H7.5v-1c0-.966.784-1.75 1.75-1.75h1.086a.25.25 0 0 0 .177-.073l1.971-1.972a.75.75 0 0 1 .804-.168A6.75 6.75 0 1 0 9 8.25Z" }, "children": [] } ] } } } }, "key-asterisk": { "name": "key-asterisk", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75A2.75 2.75 0 0 1 2.75 0h10.5A2.75 2.75 0 0 1 16 2.75v10.5A2.75 2.75 0 0 1 13.25 16H2.75A2.75 2.75 0 0 1 0 13.25ZM2.75 1.5c-.69 0-1.25.56-1.25 1.25v10.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V2.75c0-.69-.56-1.25-1.25-1.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 4a.75.75 0 0 1 .75.75V6.7l1.69-.975a.75.75 0 0 1 .75 1.3L9.5 8l1.69.976a.75.75 0 0 1-.75 1.298L8.75 9.3v1.951a.75.75 0 0 1-1.5 0V9.299l-1.69.976a.75.75 0 0 1-.75-1.3L6.5 8l-1.69-.975a.75.75 0 0 1 .75-1.3l1.69.976V4.75A.75.75 0 0 1 8 4Z" }, "children": [] } ] } } } }, "law": { "name": "law", "keywords": [ "legal", "bill" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75.75V2h.985c.304 0 .603.08.867.231l1.29.736c.038.022.08.033.124.033h2.234a.75.75 0 0 1 0 1.5h-.427l2.111 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.006.005-.01.01-.045.04c-.21.176-.441.327-.686.45C14.556 10.78 13.88 11 13 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L12.178 4.5h-.162c-.305 0-.604-.079-.868-.231l-1.29-.736a.245.245 0 0 0-.124-.033H8.75V13h2.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5h2.5V3.5h-.984a.245.245 0 0 0-.124.033l-1.289.737c-.265.15-.564.23-.869.23h-.162l2.112 4.692a.75.75 0 0 1-.154.838l-.53-.53.529.531-.001.002-.002.002-.006.006-.016.015-.045.04c-.21.176-.441.327-.686.45C4.556 10.78 3.88 11 3 11a4.498 4.498 0 0 1-2.023-.454 3.544 3.544 0 0 1-.686-.45l-.045-.04-.016-.015-.006-.006-.004-.004v-.001a.75.75 0 0 1-.154-.838L2.178 4.5H1.75a.75.75 0 0 1 0-1.5h2.234a.249.249 0 0 0 .125-.033l1.288-.737c.265-.15.564-.23.869-.23h.984V.75a.75.75 0 0 1 1.5 0Zm2.945 8.477c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L13 6.327Zm-10 0c.285.135.718.273 1.305.273s1.02-.138 1.305-.273L3 6.327Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.75 2.75V4.5h1.975c.351 0 .694.106.984.303l1.697 1.154c.041.028.09.043.14.043h4.102a.75.75 0 0 1 0 1.5H20.07l3.366 7.68a.749.749 0 0 1-.23.896c-.1.074-.203.143-.31.206a6.296 6.296 0 0 1-.79.399 7.349 7.349 0 0 1-2.856.569 7.343 7.343 0 0 1-2.855-.568 6.205 6.205 0 0 1-.79-.4 3.205 3.205 0 0 1-.307-.202l-.005-.004a.749.749 0 0 1-.23-.896l3.368-7.68h-.886c-.351 0-.694-.106-.984-.303l-1.697-1.154a.246.246 0 0 0-.14-.043H12.75v14.5h4.487a.75.75 0 0 1 0 1.5H6.763a.75.75 0 0 1 0-1.5h4.487V6H9.275a.249.249 0 0 0-.14.043L7.439 7.197c-.29.197-.633.303-.984.303h-.886l3.368 7.68a.75.75 0 0 1-.209.878c-.08.065-.16.126-.31.223a6.077 6.077 0 0 1-.792.433 6.924 6.924 0 0 1-2.876.62 6.913 6.913 0 0 1-2.876-.62 6.077 6.077 0 0 1-.792-.433 3.483 3.483 0 0 1-.309-.221.762.762 0 0 1-.21-.88L3.93 7.5H2.353a.75.75 0 0 1 0-1.5h4.102c.05 0 .099-.015.141-.043l1.695-1.154c.29-.198.634-.303.985-.303h1.974V2.75a.75.75 0 0 1 1.5 0ZM2.193 15.198a5.414 5.414 0 0 0 2.557.635 5.414 5.414 0 0 0 2.557-.635L4.75 9.368Zm14.51-.024c.082.04.174.083.275.126.53.223 1.305.45 2.272.45a5.847 5.847 0 0 0 2.547-.576L19.25 9.367Z" }, "children": [] } ] } } } }, "light-bulb": { "name": "light-bulb", "keywords": [ "idea" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5c-3.81 0-6.5 2.743-6.5 6.119 0 1.536.632 2.572 1.425 3.56.172.215.347.422.527.635l.096.112c.21.25.427.508.63.774.404.531.783 1.128.995 1.834a.75.75 0 0 1-1.436.432c-.138-.46-.397-.89-.753-1.357a18.111 18.111 0 0 0-.582-.714l-.092-.11c-.18-.212-.37-.436-.555-.667C4.87 12.016 4 10.651 4 8.618 4 4.363 7.415 1 12 1s8 3.362 8 7.619c0 2.032-.87 3.397-1.755 4.5-.185.23-.375.454-.555.667l-.092.109c-.21.248-.405.481-.582.714-.356.467-.615.898-.753 1.357a.751.751 0 0 1-1.437-.432c.213-.706.592-1.303.997-1.834.202-.266.419-.524.63-.774l.095-.112c.18-.213.355-.42.527-.634.793-.99 1.425-2.025 1.425-3.561C18.5 5.243 15.81 2.5 12 2.5ZM8.75 18h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5Zm.75 3.75a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "link": { "name": "link", "keywords": [ "connect", "hyperlink" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.78 3.653a3.936 3.936 0 1 1 5.567 5.567l-3.627 3.627a3.936 3.936 0 0 1-5.88-.353.75.75 0 0 0-1.18.928 5.436 5.436 0 0 0 8.12.486l3.628-3.628a5.436 5.436 0 1 0-7.688-7.688l-3 3a.75.75 0 0 0 1.06 1.061l3-3Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.28 11.153a3.936 3.936 0 0 1 5.88.353.75.75 0 0 0 1.18-.928 5.436 5.436 0 0 0-8.12-.486L2.592 13.72a5.436 5.436 0 1 0 7.688 7.688l3-3a.75.75 0 1 0-1.06-1.06l-3 3a3.936 3.936 0 0 1-5.567-5.568l3.627-3.627Z" }, "children": [] } ] } } } }, "link-external": { "name": "link-external", "keywords": [ "out", "see", "more", "go", "to" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 1.5 0v3.5A1.75 1.75 0 0 1 12.25 14h-8.5A1.75 1.75 0 0 1 2 12.25v-8.5C2 2.784 2.784 2 3.75 2Zm6.854-1h4.146a.25.25 0 0 1 .25.25v4.146a.25.25 0 0 1-.427.177L13.03 4.03 9.28 7.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.75-3.75-1.543-1.543A.25.25 0 0 1 10.604 1Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.5 2.25a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V4.06l-6.22 6.22a.75.75 0 1 1-1.06-1.06L19.94 3h-3.69a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 4.25c0-.966.784-1.75 1.75-1.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.25.25 0 0 0-.25.25v15.5c0 .138.112.25.25.25h15.5a.25.25 0 0 0 .25-.25v-8.5a.75.75 0 0 1 1.5 0v8.5a1.75 1.75 0 0 1-1.75 1.75H4.25a1.75 1.75 0 0 1-1.75-1.75V4.25Z" }, "children": [] } ] } } } }, "list-ordered": { "name": "list-ordered", "keywords": [ "numbers", "tasks", "todo", "items" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 3.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 3.25Zm0 5a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 5 8.25Zm0 5a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1-.75-.75ZM.924 10.32a.5.5 0 0 1-.851-.525l.001-.001.001-.002.002-.004.007-.011c.097-.144.215-.273.348-.384.228-.19.588-.392 1.068-.392.468 0 .858.181 1.126.484.259.294.377.673.377 1.038 0 .987-.686 1.495-1.156 1.845l-.047.035c-.303.225-.522.4-.654.597h1.357a.5.5 0 0 1 0 1H.5a.5.5 0 0 1-.5-.5c0-1.005.692-1.52 1.167-1.875l.035-.025c.531-.396.8-.625.8-1.078a.57.57 0 0 0-.128-.376C1.806 10.068 1.695 10 1.5 10a.658.658 0 0 0-.429.163.835.835 0 0 0-.144.153ZM2.003 2.5V6h.503a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1h.503V3.308l-.28.14a.5.5 0 0 1-.446-.895l1.003-.5a.5.5 0 0 1 .723.447Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.604 3.089A.75.75 0 0 1 4 3.75V8.5h.75a.75.75 0 0 1 0 1.5h-3a.75.75 0 1 1 0-1.5h.75V5.151l-.334.223a.75.75 0 0 1-.832-1.248l1.5-1a.75.75 0 0 1 .77-.037ZM8.75 5.5a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5H8.75Zm0 6a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5H8.75Zm0 6a.75.75 0 0 0 0 1.5h11.5a.75.75 0 0 0 0-1.5H8.75ZM5.5 15.75c0-.704-.271-1.286-.72-1.686a2.302 2.302 0 0 0-1.53-.564c-.535 0-1.094.178-1.53.565-.449.399-.72.982-.72 1.685a.75.75 0 0 0 1.5 0c0-.296.104-.464.217-.564A.805.805 0 0 1 3.25 15c.215 0 .406.072.533.185.113.101.217.268.217.565 0 .332-.069.48-.21.657-.092.113-.216.24-.403.419l-.147.14c-.152.144-.33.313-.52.504l-1.5 1.5a.75.75 0 0 0-.22.53v.25c0 .414.336.75.75.75H5A.75.75 0 0 0 5 19H3.31l.47-.47c.176-.176.333-.324.48-.465l.165-.156a5.98 5.98 0 0 0 .536-.566c.358-.447.539-.925.539-1.593Z" }, "children": [] } ] } } } }, "list-unordered": { "name": "list-unordered", "keywords": [ "bullet", "point", "tasks", "todo", "items" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 2.5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5ZM2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM2 4a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 5.5h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5Zm0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5Zm0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5ZM5 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM4 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm0 12a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } } } }, "location": { "name": "location", "keywords": [ "here", "marker" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.596 11.596-3.535 3.536a1.5 1.5 0 0 1-2.122 0l-3.535-3.536a6.5 6.5 0 1 1 9.192-9.193 6.5 6.5 0 0 1 0 9.193Zm-1.06-8.132v-.001a5 5 0 1 0-7.072 7.072L8 14.07l3.536-3.534a5 5 0 0 0 0-7.072ZM8 9a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 9Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 13.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M19.071 3.429h.001c3.905 3.905 3.905 10.237 0 14.142l-5.403 5.403a2.36 2.36 0 0 1-3.336 0l-5.375-5.375-.028-.028c-3.905-3.905-3.905-10.237 0-14.142 3.904-3.905 10.236-3.905 14.141 0ZM5.99 4.489v.001a8.5 8.5 0 0 0 0 12.02l.023.024.002.002 5.378 5.378a.859.859 0 0 0 1.214 0l5.403-5.404a8.5 8.5 0 0 0-.043-11.977A8.5 8.5 0 0 0 5.99 4.489Z" }, "children": [] } ] } } } }, "lock": { "name": "lock", "keywords": [ "secure", "safe", "protected" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 4a4 4 0 0 1 8 0v2h.25c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-5.5C2 6.784 2.784 6 3.75 6H4Zm8.25 3.5h-8.5a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25ZM10.5 6V4a2.5 2.5 0 1 0-5 0v2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 9V7.25C6 3.845 8.503 1 12 1s6 2.845 6 6.25V9h.5a2.5 2.5 0 0 1 2.5 2.5v8a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-8A2.5 2.5 0 0 1 5.5 9Zm-1.5 2.5v8a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-13a1 1 0 0 0-1 1Zm3-4.25V9h9V7.25c0-2.67-1.922-4.75-4.5-4.75-2.578 0-4.5 2.08-4.5 4.75Z" }, "children": [] } ] } } } }, "log": { "name": "log", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 8.25a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4A.75.75 0 0 1 5 8.25ZM4 10.5A.75.75 0 0 0 4 12h4a.75.75 0 0 0 0-1.5H4Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13-.005c1.654 0 3 1.328 3 3 0 .982-.338 1.933-.783 2.818-.443.879-1.028 1.758-1.582 2.588l-.011.017c-.568.853-1.104 1.659-1.501 2.446-.398.789-.623 1.494-.623 2.136a1.5 1.5 0 1 0 2.333-1.248.75.75 0 0 1 .834-1.246A3 3 0 0 1 13 16H3a3 3 0 0 1-3-3c0-1.582.891-3.135 1.777-4.506.209-.322.418-.637.623-.946.473-.709.923-1.386 1.287-2.048H2.51c-.576 0-1.381-.133-1.907-.783A2.68 2.68 0 0 1 0 2.995a3 3 0 0 1 3-3Zm0 1.5a1.5 1.5 0 0 0-1.5 1.5c0 .476.223.834.667 1.132A.75.75 0 0 1 11.75 5.5H5.368c-.467 1.003-1.141 2.015-1.773 2.963-.192.289-.381.571-.558.845C2.13 10.711 1.5 11.916 1.5 13A1.5 1.5 0 0 0 3 14.5h7.401A2.989 2.989 0 0 1 10 13c0-.979.338-1.928.784-2.812.441-.874 1.023-1.748 1.575-2.576l.017-.026c.568-.853 1.103-1.658 1.501-2.448.398-.79.623-1.497.623-2.143 0-.838-.669-1.5-1.5-1.5Zm-10 0a1.5 1.5 0 0 0-1.5 1.5c0 .321.1.569.27.778.097.12.325.227.74.227h7.674A2.737 2.737 0 0 1 10 2.995c0-.546.146-1.059.401-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.197 10a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm-2.382 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Zm-1.581 4a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.125 0h15.75a4.11 4.11 0 0 1 2.92 1.205A4.11 4.11 0 0 1 24 4.125c0 1.384-.476 2.794-1.128 4.16-.652 1.365-1.515 2.757-2.352 4.104l-.008.013c-.849 1.368-1.669 2.691-2.28 3.97-.614 1.283-.982 2.45-.982 3.503a2.625 2.625 0 1 0 4.083-2.183.75.75 0 1 1 .834-1.247A4.126 4.126 0 0 1 19.875 24H4.5a4.125 4.125 0 0 1-4.125-4.125c0-2.234 1.258-4.656 2.59-6.902.348-.586.702-1.162 1.05-1.728.8-1.304 1.567-2.553 2.144-3.738H3.39c-.823 0-1.886-.193-2.567-1.035A3.647 3.647 0 0 1 0 4.125 4.125 4.125 0 0 1 4.125 0ZM15.75 19.875c0-1.38.476-2.786 1.128-4.15.649-1.358 1.509-2.743 2.343-4.086l.017-.028c.849-1.367 1.669-2.692 2.28-3.972.614-1.285.982-2.457.982-3.514A2.615 2.615 0 0 0 19.875 1.5a2.625 2.625 0 0 0-2.625 2.625c0 .865.421 1.509 1.167 2.009A.75.75 0 0 1 18 7.507H7.812c-.65 1.483-1.624 3.069-2.577 4.619-.334.544-.666 1.083-.98 1.612-1.355 2.287-2.38 4.371-2.38 6.137A2.625 2.625 0 0 0 4.5 22.5h12.193a4.108 4.108 0 0 1-.943-2.625ZM1.5 4.125c-.01.511.163 1.008.487 1.403.254.313.74.479 1.402.479h12.86a3.648 3.648 0 0 1-.499-1.882 4.11 4.11 0 0 1 .943-2.625H4.125A2.625 2.625 0 0 0 1.5 4.125Z" }, "children": [] } ] } } } }, "logo-gist": { "name": "logo-gist", "keywords": [ "brand", "github", "logo" ], "heights": { "16": { "width": 25, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "25", "height": "16", "viewBox": "0 0 25 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.7 8.73v-1h3.52v5.69c-.78.37-1.95.64-3.59.64C1.11 14.06 0 11.37 0 8.03 0 4.69 1.13 2 4.63 2c1.62 0 2.64.33 3.28.66v1.05c-1.22-.5-2-.73-3.28-.73-2.57 0-3.48 2.21-3.48 5.06 0 2.85.91 5.05 3.47 5.05.89 0 1.98-.07 2.53-.34V8.73Zm10.98.69h.03c2.22.2 2.75.95 2.75 2.23 0 1.21-.76 2.41-3.14 2.41-.75 0-1.83-.19-2.33-.39v-.94c.47.17 1.22.36 2.33.36 1.62 0 2.06-.69 2.06-1.42 0-.71-.22-1.21-1.77-1.34-2.26-.2-2.73-1-2.73-2.08 0-1.11.72-2.31 2.92-2.31.73 0 1.56.09 2.25.39v.94c-.61-.2-1.22-.36-2.27-.36-1.55 0-1.88.57-1.88 1.34 0 .69.28 1.04 1.78 1.17Zm8.58-3.33v.85h-2.42v4.87c0 .95.53 1.34 1.5 1.34.2 0 .42 0 .61-.03v.89c-.17.03-.5.05-.69.05-1.31 0-2.5-.6-2.5-2.13v-5H19.2v-.48l1.56-.44V3.9l1.08-.31v2.5h2.42Zm-13.17-.03v6.41c0 .54.19.7.67.7v.89c-1.14 0-1.72-.47-1.72-1.72V6.06h1.05Zm.25-2.33c0 .44-.34.78-.78.78a.76.76 0 0 1-.77-.78c0-.44.32-.78.77-.78s.78.34.78.78Z" }, "children": [] } ] } } } }, "logo-github": { "name": "logo-github", "keywords": [ "brand", "github", "logo" ], "heights": { "16": { "width": 45, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "45", "height": "16", "viewBox": "0 0 45 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.81 7.35v5.74c0 .04-.01.11-.06.13 0 0-1.25.89-3.31.89-2.49 0-5.44-.78-5.44-5.92S2.58 1.99 5.1 2c2.18 0 3.06.49 3.2.58.04.05.06.09.06.14L7.94 4.5c0 .09-.09.2-.2.17-.36-.11-.9-.33-2.17-.33-1.47 0-3.05.42-3.05 3.73s1.5 3.7 2.58 3.7c.92 0 1.25-.11 1.25-.11v-2.3H4.88c-.11 0-.19-.08-.19-.17V7.35c0-.09.08-.17.19-.17h3.74c.11 0 .19.08.19.17Zm35.85 2.33c0 3.43-1.11 4.41-3.05 4.41-1.64 0-2.52-.83-2.52-.83s-.04.46-.09.52c-.03.06-.08.08-.14.08h-1.48c-.1 0-.19-.08-.19-.17l.02-11.11c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v3.77s.82-.53 2.02-.53l-.01-.02c1.2 0 2.97.45 2.97 3.88ZM27.68 2.43c.09 0 .17.08.17.17v11.11c0 .09-.08.17-.17.17h-2.13c-.09 0-.17-.08-.17-.17l.02-4.75h-3.31v4.75c0 .09-.08.17-.17.17h-2.13c-.08 0-.17-.08-.17-.17V2.6c0-.09.08-.17.17-.17h2.13c.09 0 .17.08.17.17v4.09h3.31V2.6c0-.09.08-.17.17-.17Zm8.26 3.64c.11 0 .19.08.19.17l-.02 7.47c0 .09-.06.17-.17.17H34.6c-.07 0-.14-.04-.16-.09-.03-.06-.08-.45-.08-.45s-1.13.77-2.52.77c-1.69 0-2.92-.55-2.92-2.75V6.25c0-.09.08-.17.17-.17h2.14c.09 0 .17.08.17.17V11c0 .75.22 1.09.97 1.09s1.3-.39 1.3-.39V6.26c0-.11.06-.19.17-.19Zm-17.406 5.971h.005a.177.177 0 0 1 .141.179v1.5c0 .07-.03.14-.09.16-.1.05-.74.22-1.27.22-1.16 0-2.86-.25-2.86-2.69V8.13h-1.11c-.09 0-.17-.08-.17-.19V6.58c0-.08.05-.15.13-.17.07-.01 1.16-.28 1.16-.28V3.96c0-.08.05-.13.14-.13h2.16c.09 0 .14.05.14.13v2.11h1.59c.08 0 .16.08.16.17v1.7c0 .11-.07.19-.16.19h-1.59v3.131c0 .47.27.83 1.05.83.247 0 .481-.049.574-.05ZM12.24 6.06c.09 0 .17.08.17.17v7.37c0 .18-.05.27-.25.27h-1.92c-.17 0-.3-.07-.3-.27V6.26c0-.11.08-.2.17-.2Zm29.99 3.78c0-1.81-.73-2.05-1.5-1.97-.6.04-1.08.34-1.08.34v3.52s.49.34 1.22.36c1.03.03 1.36-.34 1.36-2.25ZM11.19 2.68c.75 0 1.36.61 1.36 1.38 0 .77-.61 1.38-1.36 1.38-.77 0-1.38-.61-1.38-1.38 0-.77.61-1.38 1.38-1.38Zm7.34 9.35v.001l.01.01h-.001l-.005-.001v.001c-.009-.001-.015-.011-.024-.011Z" }, "children": [] } ] } } } }, "mail": { "name": "mail", "keywords": [ "email", "unread" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25v-8.5C0 2.784.784 2 1.75 2ZM1.5 12.251c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V5.809L8.38 9.397a.75.75 0 0 1-.76 0L1.5 5.809v6.442Zm13-8.181v-.32a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25v.32L8 7.88Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14a1.75 1.75 0 0 1-1.75 1.75H1.75A1.75 1.75 0 0 1 0 18.75v-14C0 3.784.784 3 1.75 3ZM1.5 7.412V18.75c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V7.412l-9.52 6.433c-.592.4-1.368.4-1.96 0Zm0-2.662v.852l10.36 7a.25.25 0 0 0 .28 0l10.36-7V4.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "mark-github": { "name": "mark-github", "keywords": [ "octocat", "brand", "github", "logo" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z" }, "children": [] } ] } } } }, "markdown": { "name": "markdown", "keywords": [ "markup", "style" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.85 3c.63 0 1.15.52 1.14 1.15v7.7c0 .63-.51 1.15-1.15 1.15H1.15C.52 13 0 12.48 0 11.84V4.15C0 3.52.52 3 1.15 3ZM9 11V5H7L5.5 7 4 5H2v6h2V8l1.5 1.92L7 8v3Zm2.99.5L14.5 8H13V5h-2v3H9.5Z" }, "children": [] } ] } } } }, "megaphone": { "name": "megaphone", "keywords": [ "bullhorn", "loud", "shout", "broadcast" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 9a.75.75 0 0 1 .75.75c0 2.142.456 3.828.733 4.653a.122.122 0 0 0 .05.064.212.212 0 0 0 .117.033h1.31c.085 0 .18-.042.258-.152a.45.45 0 0 0 .075-.366A16.743 16.743 0 0 1 6 9.75a.75.75 0 0 1 1.5 0c0 1.588.25 2.926.494 3.85.293 1.113-.504 2.4-1.783 2.4H4.9c-.686 0-1.35-.41-1.589-1.12A16.4 16.4 0 0 1 2.5 9.75.75.75 0 0 1 3.25 9Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 6a4 4 0 0 1 4-4h2.75a.75.75 0 0 1 .75.75v6.5a.75.75 0 0 1-.75.75H4a4 4 0 0 1-4-4Zm4-2.5a2.5 2.5 0 1 0 0 5h2v-5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.59.082A.75.75 0 0 1 16 .75v10.5a.75.75 0 0 1-1.189.608l-.002-.001h.001l-.014-.01a5.775 5.775 0 0 0-.422-.25 10.63 10.63 0 0 0-1.469-.64C11.576 10.484 9.536 10 6.75 10a.75.75 0 0 1 0-1.5c2.964 0 5.174.516 6.658 1.043.423.151.787.302 1.092.443V2.014c-.305.14-.669.292-1.092.443C11.924 2.984 9.713 3.5 6.75 3.5a.75.75 0 0 1 0-1.5c2.786 0 4.826-.484 6.155-.957.665-.236 1.154-.47 1.47-.64.144-.077.284-.161.421-.25l.014-.01a.75.75 0 0 1 .78-.061Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22 1.75v14.5a.75.75 0 0 1-.399.662c-.384.204-.783-.035-1.139-.248l-.003-.002c-.09-.054-.177-.107-.261-.15a15.53 15.53 0 0 0-2-.849c-1.738-.607-4.321-1.223-7.703-1.251a.833.833 0 0 1 .005.088c0 2.279.494 4.279.906 5.547.368 1.131-.438 2.453-1.732 2.453H7.661c-.696 0-1.36-.42-1.6-1.129C5.684 20.255 5 17.811 5 14.75v-.457A5.5 5.5 0 0 1 6.5 3.5h3.75c3.505 0 6.175-.61 7.955-1.21a15.88 15.88 0 0 0 2.002-.82 9.21 9.21 0 0 0 .49-.262c.048-.028.095-.055.142-.085A.751.751 0 0 1 22 1.75ZM10.5 12.912c3.564.029 6.313.678 8.193 1.335.737.258 1.34.517 1.807.74V2.993c-.467.216-1.073.467-1.815.718-1.878.634-4.624 1.26-8.185 1.288ZM6.5 5a4 4 0 0 0 0 8H9V5Zm0 9.75c0 2.847.638 5.123.982 6.141.018.051.074.109.179.109h2.013c.087 0 .179-.043.249-.147a.396.396 0 0 0 .057-.343C9.537 19.148 9 16.986 9 14.5H6.5Z" }, "children": [] } ] } } } }, "mention": { "name": "mention", "keywords": [ "at", "ping" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 2.37a6.501 6.501 0 0 0 6.5 11.26.75.75 0 0 1 .75 1.298A7.999 7.999 0 0 1 .989 4.148 8 8 0 0 1 16 7.75v1.5a2.75 2.75 0 0 1-5.072 1.475 3.999 3.999 0 0 1-6.65-4.19A4 4 0 0 1 12 8v1.25a1.25 1.25 0 0 0 2.5 0V7.867a6.5 6.5 0 0 0-9.75-5.496ZM10.5 8a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20.226 7.25c-2.623-4.542-8.432-6.098-12.974-3.475-4.543 2.622-6.099 8.431-3.477 12.974 2.623 4.542 8.431 6.099 12.974 3.477a.75.75 0 0 1 .75 1.299c-5.26 3.037-11.987 1.235-15.024-4.026C-.562 12.24 1.24 5.512 6.501 2.475 11.76-.562 18.488 1.24 21.525 6.501a10.959 10.959 0 0 1 1.455 4.826c.013.056.02.113.02.173v2.25a3.5 3.5 0 0 1-6.623 1.581 5.5 5.5 0 1 1 1.112-3.682.802.802 0 0 1 .011.129v1.972a2 2 0 1 0 4 0v-1.766a9.456 9.456 0 0 0-1.274-4.733ZM16 12a4 4 0 1 0-8 0 4 4 0 0 0 8 0Z" }, "children": [] } ] } } } }, "meter": { "name": "meter", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 1.5a6.5 6.5 0 1 0 6.016 4.035.75.75 0 0 1 1.388-.57 8 8 0 1 1-4.37-4.37.75.75 0 1 1-.569 1.389A6.473 6.473 0 0 0 8 1.5Zm6.28.22a.75.75 0 0 1 0 1.06l-4.063 4.064a2.5 2.5 0 1 1-1.06-1.06L13.22 1.72a.75.75 0 0 1 1.06 0ZM7 8a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z" }, "children": [] } ] } } } }, "milestone": { "name": "milestone", "keywords": [ "marker" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.75 0a.75.75 0 0 1 .75.75V3h3.634c.414 0 .814.147 1.13.414l2.07 1.75a1.75 1.75 0 0 1 0 2.672l-2.07 1.75a1.75 1.75 0 0 1-1.13.414H8.5v5.25a.75.75 0 0 1-1.5 0V10H2.75A1.75 1.75 0 0 1 1 8.25v-3.5C1 3.784 1.784 3 2.75 3H7V.75A.75.75 0 0 1 7.75 0Zm4.384 8.5a.25.25 0 0 0 .161-.06l2.07-1.75a.248.248 0 0 0 0-.38l-2.07-1.75a.25.25 0 0 0-.161-.06H2.75a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h9.384Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.75 1a.75.75 0 0 1 .75.75V4h6.532c.42 0 .826.15 1.143.425l3.187 2.75a1.75 1.75 0 0 1 0 2.65l-3.187 2.75a1.75 1.75 0 0 1-1.143.425H12.5v9.25a.75.75 0 0 1-1.5 0V13H3.75A1.75 1.75 0 0 1 2 11.25v-5.5C2 4.783 2.784 4 3.75 4H11V1.75a.75.75 0 0 1 .75-.75Zm7.282 4.5H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h15.282c.06 0 .118-.021.163-.06l3.188-2.75a.248.248 0 0 0 0-.38l-3.188-2.75a.249.249 0 0 0-.163-.06Z" }, "children": [] } ] } } } }, "mirror": { "name": "mirror", "keywords": [ "reflect" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.547 3.061A.75.75 0 0 1 16 3.75v8.5a.751.751 0 0 1-1.265.545l-4.5-4.25a.75.75 0 0 1 0-1.09l4.5-4.25a.75.75 0 0 1 .812-.144ZM0 12.25v-8.5a.751.751 0 0 1 1.265-.545l4.5 4.25a.75.75 0 0 1 0 1.09l-4.5 4.25A.75.75 0 0 1 0 12.25Zm1.5-6.76v5.02L4.158 8ZM11.842 8l2.658 2.51V5.49ZM8 4a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 4Zm.75-2.25v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 1.5 0Zm0 6v.5a.75.75 0 0 1-1.5 0v-.5a.75.75 0 0 1 1.5 0ZM8 10a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 10Zm0 3a.75.75 0 0 1 .75.75v.5a.75.75 0 0 1-1.5 0v-.5A.75.75 0 0 1 8 13Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M21.553 6.064A.75.75 0 0 1 22 6.75v10.5a.75.75 0 0 1-1.256.554l-5.75-5.25a.748.748 0 0 1 0-1.108l5.75-5.25a.75.75 0 0 1 .809-.132ZM2.447 17.936A.75.75 0 0 1 2 17.25V6.75a.75.75 0 0 1 1.256-.554l5.75 5.25a.748.748 0 0 1 0 1.108l-5.75 5.25a.75.75 0 0 1-.809.132ZM7.387 12 3.5 8.45v7.1L7.388 12Zm9.226 0 3.887 3.55v-7.1L16.612 12ZM12 2.75a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm0 4a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm0 8a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm0 4a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm0-8a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "moon": { "name": "moon", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.598 1.591a.749.749 0 0 1 .785-.175 7.001 7.001 0 1 1-8.967 8.967.75.75 0 0 1 .961-.96 5.5 5.5 0 0 0 7.046-7.046.75.75 0 0 1 .175-.786Zm1.616 1.945a7 7 0 0 1-7.678 7.678 5.499 5.499 0 1 0 7.678-7.678Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.768 3.96v.001l-.002-.005a9.08 9.08 0 0 0-.218-.779c-.13-.394.21-.8.602-.67.29.096.575.205.855.328l.01.005A10.002 10.002 0 0 1 12 22a10.002 10.002 0 0 1-9.162-5.985l-.004-.01a9.722 9.722 0 0 1-.329-.855c-.13-.392.277-.732.67-.602.257.084.517.157.78.218l.004.002A9 9 0 0 0 14.999 6a9.09 9.09 0 0 0-.231-2.04ZM16.5 6c0 5.799-4.701 10.5-10.5 10.5-.426 0-.847-.026-1.26-.075A8.5 8.5 0 1 0 16.425 4.74c.05.413.075.833.075 1.259Z" }, "children": [] } ] } } } }, "mortar-board": { "name": "mortar-board", "keywords": [ "education", "learn", "teach" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.693 1.066a.747.747 0 0 1 .614 0l7.25 3.25a.75.75 0 0 1 0 1.368L13 6.831v2.794c0 1.024-.81 1.749-1.66 2.173-.893.447-2.075.702-3.34.702-.278 0-.55-.012-.816-.036a.75.75 0 0 1 .133-1.494c.22.02.45.03.683.03 1.082 0 2.025-.221 2.67-.543.69-.345.83-.682.83-.832V7.503L8.307 8.934a.747.747 0 0 1-.614 0L4 7.28v1.663c.296.105.575.275.812.512.438.438.688 1.059.688 1.796v3a.75.75 0 0 1-.75.75h-3a.75.75 0 0 1-.75-.75v-3c0-.737.25-1.358.688-1.796.237-.237.516-.407.812-.512V6.606L.443 5.684a.75.75 0 0 1 0-1.368ZM2.583 5 8 7.428 13.416 5 8 2.572ZM2.5 11.25v2.25H4v-2.25c0-.388-.125-.611-.25-.735a.697.697 0 0 0-.5-.203.707.707 0 0 0-.5.203c-.125.124-.25.347-.25.735Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.292 2.06v-.001l11.25 4.75a.749.749 0 0 1 0 1.382L19 10.108V15a.75.75 0 0 1-.11.391h-.001a2.84 2.84 0 0 1-.392.482c-.249.256-.625.58-1.163.896-1.08.638-2.776 1.23-5.334 1.23-.673 0-1.286-.041-1.846-.113a.75.75 0 0 1 .192-1.487c.492.063 1.042.1 1.654.1 2.317 0 3.746-.533 4.572-1.021.31-.178.596-.397.849-.65l.079-.085V10.74l-5.208 2.2a.75.75 0 0 1-.584 0L5.75 10.424v3.17c.502.129.96.391 1.327.758.579.578.923 1.41.923 2.428v4.5a.761.761 0 0 1-.345.634 2.157 2.157 0 0 1-.21.117 3.923 3.923 0 0 1-.52.213A6.121 6.121 0 0 1 5 22.532a6.092 6.092 0 0 1-1.925-.288 4.065 4.065 0 0 1-.52-.213 1.816 1.816 0 0 1-.22-.124.757.757 0 0 1-.335-.624v-4.5c0-1.02.344-1.85.923-2.43a2.904 2.904 0 0 1 1.327-.757V9.793L.458 8.19a.75.75 0 0 1 0-1.38l11.25-4.75a.75.75 0 0 1 .584 0ZM12 11.436 21.322 7.5 12 3.564 2.678 7.5ZM5 15c-.377 0-.745.141-1.017.413-.265.265-.483.7-.483 1.368v4.022c.299.105.797.228 1.5.228s1.201-.123 1.5-.228V16.78c0-.669-.218-1.103-.483-1.368A1.433 1.433 0 0 0 5 15Z" }, "children": [] } ] } } } }, "move-to-bottom": { "name": "move-to-bottom", "keywords": [ "terminal", "end", "down", "end" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.47 10.78a.749.749 0 0 0 1.06 0l3.75-3.75a.749.749 0 1 0-1.06-1.06L8.75 8.439V1.75a.75.75 0 0 0-1.5 0v6.689L4.78 5.97a.749.749 0 1 0-1.06 1.06l3.75 3.75ZM3.75 13a.75.75 0 0 0 0 1.5h8.5a.75.75 0 0 0 0-1.5h-8.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 21.25a.75.75 0 0 1 .75-.75h14.5a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1-.75-.75ZM5.22 9.97a.749.749 0 0 1 1.06 0l4.97 4.969V2.75a.75.75 0 0 1 1.5 0v12.189l4.97-4.969a.749.749 0 1 1 1.06 1.06l-6.25 6.25a.749.749 0 0 1-1.06 0l-6.25-6.25a.749.749 0 0 1 0-1.06Z" }, "children": [] } ] } } } }, "move-to-end": { "name": "move-to-end", "keywords": [ "terminal", "right", "finish" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m10.78 8.53-3.75 3.75a.749.749 0 1 1-1.06-1.06l2.469-2.47H1.75a.75.75 0 0 1 0-1.5h6.689L5.97 4.78a.749.749 0 1 1 1.06-1.06l3.75 3.75a.749.749 0 0 1 0 1.06ZM13 12.25v-8.5a.75.75 0 0 1 1.5 0v8.5a.75.75 0 0 1-1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.22 5.22a.749.749 0 0 1 1.06 0l6.25 6.25a.749.749 0 0 1 0 1.06l-6.25 6.25a.749.749 0 1 1-1.06-1.06l4.969-4.97H1.75a.75.75 0 0 1 0-1.5h14.439L11.22 6.28a.749.749 0 0 1 0-1.06Zm10.03-1.47a.75.75 0 0 1 .75.75v15a.75.75 0 0 1-1.5 0v-15a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "move-to-start": { "name": "move-to-start", "keywords": [ "terminal", "left", "beginning" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.22 7.47a.749.749 0 0 0 0 1.06l3.75 3.75a.749.749 0 1 0 1.06-1.06L7.561 8.75h6.689a.75.75 0 0 0 0-1.5H7.561l2.469-2.47a.749.749 0 1 0-1.06-1.06L5.22 7.47ZM3 3.75a.75.75 0 0 0-1.5 0v8.5a.75.75 0 0 0 1.5 0v-8.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.78 18.78a.749.749 0 0 1-1.06 0l-6.25-6.25a.749.749 0 0 1 0-1.06l6.25-6.25a.749.749 0 1 1 1.06 1.06l-4.969 4.97H22.25a.75.75 0 0 1 0 1.5H7.811l4.969 4.97a.749.749 0 0 1 0 1.06ZM2.75 3.75a.75.75 0 0 1 .75.75v15a.75.75 0 0 1-1.5 0v-15a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "move-to-top": { "name": "move-to-top", "keywords": [ "terminal", "up", "start", "beginning" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 2.25a.75.75 0 0 1 .75-.75h8.5a.75.75 0 0 1 0 1.5h-8.5A.75.75 0 0 1 3 2.25Zm5.53 2.97 3.75 3.75a.749.749 0 1 1-1.06 1.06L8.75 7.561v6.689a.75.75 0 0 1-1.5 0V7.561L4.78 10.03a.749.749 0 1 1-1.06-1.06l3.75-3.75a.749.749 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 3.5a.75.75 0 0 1 0-1.5h14.5a.75.75 0 0 1 0 1.5H4.75Zm.47 9.47a.749.749 0 1 0 1.06 1.06l4.97-4.969V21.25a.75.75 0 0 0 1.5 0V9.061l4.97 4.969a.749.749 0 1 0 1.06-1.06l-6.25-6.25a.749.749 0 0 0-1.06 0l-6.25 6.25Z" }, "children": [] } ] } } } }, "multi-select": { "name": "multi-select", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 7.5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5Zm0 5h7.5a.75.75 0 0 1 0 1.5h-7.5a.75.75 0 0 1 0-1.5Zm-4-10h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1 0-1.5ZM2 14a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm1-6a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm10.314-3.082L11.07 2.417A.25.25 0 0 1 11.256 2h4.488a.25.25 0 0 1 .186.417l-2.244 2.5a.25.25 0 0 1-.372 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 11.5h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5Zm0 6h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1 0-1.5Zm-5-12h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1 0-1.5ZM5 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 7a1 1 0 1 1 0-2 1 1 0 0 1 0 2ZM19.309 7.918l-2.245-2.501A.25.25 0 0 1 17.25 5h4.49a.25.25 0 0 1 .185.417l-2.244 2.5a.25.25 0 0 1-.372 0Z" }, "children": [] } ] } } } }, "mute": { "name": "mute", "keywords": [ "quiet", "sound", "audio", "turn", "off" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 2.75v10.5a.751.751 0 0 1-1.238.57L3.473 11H1.75A1.75 1.75 0 0 1 0 9.25v-2.5C0 5.784.784 5 1.75 5h1.722l3.29-2.82A.75.75 0 0 1 8 2.75Zm3.28 2.47L13 6.94l1.72-1.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042L14.06 8l1.72 1.72a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L13 9.06l-1.72 1.72a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L11.94 8l-1.72-1.72a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Zm-7.042 1.1a.752.752 0 0 1-.488.18h-2a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2c.179 0 .352.064.488.18L6.5 11.62V4.38Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 3.75v16.5a.75.75 0 0 1-1.255.555L5.46 16H2.75A1.75 1.75 0 0 1 1 14.25v-4.5C1 8.784 1.784 8 2.75 8h2.71l5.285-4.805A.75.75 0 0 1 12 3.75ZM6.255 9.305a.748.748 0 0 1-.505.195h-3a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h3c.187 0 .367.069.505.195l4.245 3.86V5.445ZM16.28 8.22a.75.75 0 1 0-1.06 1.06L17.94 12l-2.72 2.72a.75.75 0 1 0 1.06 1.06L19 13.06l2.72 2.72a.75.75 0 1 0 1.06-1.06L20.06 12l2.72-2.72a.75.75 0 0 0-1.06-1.06L19 10.94l-2.72-2.72Z" }, "children": [] } ] } } } }, "no-entry": { "name": "no-entry", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.25 7.25a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0Zm-1.5 0a6.5 6.5 0 1 0-13 0 6.5 6.5 0 0 0 13 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Zm15.75.75H5.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5Z" }, "children": [] } ] } } } }, "no-entry-fill": { "name": "no-entry-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 0a6 6 0 1 1 0 12A6 6 0 0 1 6 0Zm3 5H3v2h6Z" }, "children": [] } ] } } } }, "north-star": { "name": "north-star", "keywords": [ "star", "snowflake", "asterisk" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.5.75a.75.75 0 0 0-1.5 0v5.19L4.391 3.33a.75.75 0 1 0-1.06 1.061L5.939 7H.75a.75.75 0 0 0 0 1.5h5.19l-2.61 2.609a.75.75 0 1 0 1.061 1.06L7 9.561v5.189a.75.75 0 0 0 1.5 0V9.56l2.609 2.61a.75.75 0 1 0 1.06-1.061L9.561 8.5h5.189a.75.75 0 0 0 0-1.5H9.56l2.61-2.609a.75.75 0 0 0-1.061-1.06L8.5 5.939V.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.5 1.25a.75.75 0 0 0-1.5 0v8.69L6.447 5.385a.75.75 0 1 0-1.061 1.06L9.94 11H1.25a.75.75 0 0 0 0 1.5h8.69l-4.554 4.553a.75.75 0 0 0 1.06 1.061L11 13.561v8.689a.75.75 0 0 0 1.5 0v-8.69l4.553 4.554a.75.75 0 0 0 1.061-1.06L13.561 12.5h8.689a.75.75 0 0 0 0-1.5h-8.69l4.554-4.553a.75.75 0 1 0-1.06-1.061L12.5 9.939V1.25Z" }, "children": [] } ] } } } }, "note": { "name": "note", "keywords": [ "card", "paper", "ticket" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25ZM3.5 6.25a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 2.25h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 8.75A.75.75 0 0 1 5.75 8h11.5a.75.75 0 0 1 0 1.5H5.75A.75.75 0 0 1 5 8.75Zm0 4a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "number": { "name": "number", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9 4.75A.75.75 0 0 1 9.75 4h4a.75.75 0 0 1 .53 1.28l-1.89 1.892c.312.076.604.18.867.319.742.391 1.244 1.063 1.244 2.005 0 .653-.231 1.208-.629 1.627-.386.408-.894.653-1.408.777-1.01.243-2.225.063-3.124-.527a.751.751 0 0 1 .822-1.254c.534.35 1.32.474 1.951.322.306-.073.53-.201.67-.349.129-.136.218-.32.218-.596 0-.308-.123-.509-.444-.678-.373-.197-.98-.318-1.806-.318a.75.75 0 0 1-.53-1.28l1.72-1.72H9.75A.75.75 0 0 1 9 4.75Zm-3.587 5.763c-.35-.05-.77.113-.983.572a.75.75 0 1 1-1.36-.632c.508-1.094 1.589-1.565 2.558-1.425 1 .145 1.872.945 1.872 2.222 0 1.433-1.088 2.192-1.79 2.681-.308.216-.571.397-.772.573H7a.75.75 0 0 1 0 1.5H3.75a.75.75 0 0 1-.75-.75c0-.69.3-1.211.67-1.61.348-.372.8-.676 1.15-.92.8-.56 1.18-.904 1.18-1.474 0-.473-.267-.69-.587-.737ZM5.604.089A.75.75 0 0 1 6 .75v4.77h.711a.75.75 0 0 1 0 1.5H3.759a.75.75 0 0 1 0-1.5H4.5V2.15l-.334.223a.75.75 0 0 1-.832-1.248l1.5-1a.75.75 0 0 1 .77-.037Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.003 7.754a.75.75 0 0 1 .75-.75h5.232a.75.75 0 0 1 .53 1.28l-2.776 2.777c.55.097 1.057.253 1.492.483.905.477 1.504 1.284 1.504 2.418 0 .966-.471 1.75-1.172 2.27-.687.511-1.587.77-2.521.77-1.367 0-2.274-.528-2.667-.756a.75.75 0 0 1 .755-1.297c.331.193.953.553 1.912.553.673 0 1.243-.188 1.627-.473.37-.275.566-.635.566-1.067 0-.5-.219-.836-.703-1.091-.538-.284-1.375-.443-2.471-.443a.75.75 0 0 1-.53-1.28l2.643-2.644h-3.421a.75.75 0 0 1-.75-.75ZM7.88 15.215a1.4 1.4 0 0 0-1.446.83.75.75 0 0 1-1.37-.61 2.899 2.899 0 0 1 2.986-1.71c.589.06 1.139.323 1.557.743.434.446.685 1.058.685 1.778 0 1.641-1.254 2.437-2.12 2.986-.538.341-1.18.694-1.495 1.273H9.75a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75c0-1.799 1.337-2.63 2.243-3.21 1.032-.659 1.55-1.031 1.55-1.8 0-.355-.116-.584-.26-.732a1.071 1.071 0 0 0-.652-.298Zm.234-13.121a.75.75 0 0 1 .386.656V9h1.252a.75.75 0 0 1 0 1.5H5.75a.75.75 0 0 1 0-1.5H7V4.103l-.853.533a.749.749 0 1 1-.795-1.272l2-1.25a.749.749 0 0 1 .762-.02Z" }, "children": [] } ] } } } }, "organization": { "name": "organization", "keywords": [ "people", "group", "team" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 16A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0h8.5C11.216 0 12 .784 12 1.75v12.5c0 .085-.006.168-.018.25h2.268a.25.25 0 0 0 .25-.25V8.285a.25.25 0 0 0-.111-.208l-1.055-.703a.749.749 0 1 1 .832-1.248l1.055.703c.487.325.779.871.779 1.456v5.965A1.75 1.75 0 0 1 14.25 16h-3.5a.766.766 0 0 1-.197-.026c-.099.017-.2.026-.303.026h-3a.75.75 0 0 1-.75-.75V14h-1v1.25a.75.75 0 0 1-.75.75Zm-.25-1.75c0 .138.112.25.25.25H4v-1.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 .75.75v1.25h2.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25ZM3.75 6h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 3.75A.75.75 0 0 1 3.75 3h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 3.75Zm4 3A.75.75 0 0 1 7.75 6h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 7 6.75ZM7.75 3h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5ZM3 9.75A.75.75 0 0 1 3.75 9h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 9.75ZM7.75 9h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.25 12a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5ZM5.5 9.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75ZM6.25 5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5ZM9 12.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75Zm.75-4.25a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5ZM9 5.75A.75.75 0 0 1 9.75 5h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 9 5.75ZM13.25 12a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5Zm-.75-2.75a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1-.75-.75ZM13.25 5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 20V3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v17c0 .173-.022.34-.063.5H20a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.2-.4l-.5-.375a.75.75 0 0 1 .9-1.2l.5.375c.504.378.8.97.8 1.6v8a2 2 0 0 1-2 2h-3.562a.767.767 0 0 1-.166-.018c-.089.012-.18.018-.272.018h-3.75a.75.75 0 0 1-.75-.75V19h-3v2.25a.75.75 0 0 1-.75.75H4a2 2 0 0 1-2-2Zm2 .5h3v-2.25a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 .75.75v2.25h3a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5H4a.5.5 0 0 0-.5.5v17a.5.5 0 0 0 .5.5Z" }, "children": [] } ] } } } }, "package": { "name": "package", "keywords": [ "box", "ship" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.878.392 5.25 3.045c.54.314.872.89.872 1.514v6.098a1.75 1.75 0 0 1-.872 1.514l-5.25 3.045a1.75 1.75 0 0 1-1.756 0l-5.25-3.045A1.75 1.75 0 0 1 1 11.049V4.951c0-.624.332-1.201.872-1.514L7.122.392a1.75 1.75 0 0 1 1.756 0ZM7.875 1.69l-4.63 2.685L8 7.133l4.755-2.758-4.63-2.685a.248.248 0 0 0-.25 0ZM2.5 5.677v5.372c0 .09.047.171.125.216l4.625 2.683V8.432Zm6.25 8.271 4.625-2.683a.25.25 0 0 0 .125-.216V5.677L8.75 8.432Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.876.64V.639l8.25 4.763c.541.313.875.89.875 1.515v9.525a1.75 1.75 0 0 1-.875 1.516l-8.25 4.762a1.748 1.748 0 0 1-1.75 0l-8.25-4.763a1.75 1.75 0 0 1-.875-1.515V6.917c0-.625.334-1.202.875-1.515L11.126.64a1.748 1.748 0 0 1 1.75 0Zm-1 1.298L4.251 6.34l7.75 4.474 7.75-4.474-7.625-4.402a.248.248 0 0 0-.25 0Zm.875 19.123 7.625-4.402a.25.25 0 0 0 .125-.216V7.639l-7.75 4.474ZM3.501 7.64v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z" }, "children": [] } ] } } } }, "package-dependencies": { "name": "package-dependencies", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.122.392a1.75 1.75 0 0 1 1.756 0l5.25 3.045c.54.313.872.89.872 1.514V7.25a.75.75 0 0 1-1.5 0V5.677L7.75 8.432v6.384a1 1 0 0 1-1.502.865L.872 12.563A1.75 1.75 0 0 1 0 11.049V4.951c0-.624.332-1.2.872-1.514ZM7.125 1.69a.248.248 0 0 0-.25 0l-4.63 2.685L7 7.133l4.755-2.758ZM1.5 11.049a.25.25 0 0 0 .125.216l4.625 2.683V8.432L1.5 5.677Zm11.672-.282L11.999 12h3.251a.75.75 0 0 1 0 1.5h-3.251l1.173 1.233a.75.75 0 1 1-1.087 1.034l-2.378-2.5a.75.75 0 0 1 0-1.034l2.378-2.5a.75.75 0 0 1 1.087 1.034Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.126.64a1.748 1.748 0 0 1 1.75 0l8.25 4.762c.103.06.199.128.286.206a.75.75 0 0 1 .554.96c.023.113.035.23.035.35v3.332a.75.75 0 0 1-1.5 0V7.64l-7.75 4.474V22.36a.75.75 0 0 1-1.125.65l-8.75-5.052a1.75 1.75 0 0 1-.875-1.515V6.917c0-.119.012-.236.035-.35a.749.749 0 0 1 .554-.96c.088-.078.184-.146.286-.205L9.126.639Zm.875 10.173v.001l7.75-4.474-7.625-4.402a.248.248 0 0 0-.25 0L2.251 6.34Zm-8.5-3.175v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m16.617 17.5 2.895-2.702a.75.75 0 0 0-1.024-1.096l-4.285 4a.75.75 0 0 0 0 1.096l4.285 4a.75.75 0 1 0 1.024-1.096L16.617 19h6.633a.75.75 0 0 0 0-1.5h-6.633Z" }, "children": [] } ] } } } }, "package-dependents": { "name": "package-dependents", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.122.392a1.75 1.75 0 0 1 1.756 0l5.25 3.045c.54.313.872.89.872 1.514V7.25a.75.75 0 0 1-1.5 0V5.677L7.75 8.432v6.384a1 1 0 0 1-1.502.865L.872 12.563A1.75 1.75 0 0 1 0 11.049V4.951c0-.624.332-1.2.872-1.514ZM7.125 1.69a.248.248 0 0 0-.25 0l-4.63 2.685L7 7.133l4.755-2.758ZM1.5 11.049a.25.25 0 0 0 .125.216l4.625 2.683V8.432L1.5 5.677Zm10.828 3.684 1.173-1.233H10.25a.75.75 0 0 1 0-1.5h3.251l-1.173-1.233a.75.75 0 1 1 1.087-1.034l2.378 2.5a.75.75 0 0 1 0 1.034l-2.378 2.5a.75.75 0 0 1-1.087-1.034Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.126.64a1.748 1.748 0 0 1 1.75 0l8.25 4.762c.103.06.199.128.286.206a.75.75 0 0 1 .554.96c.023.113.035.23.035.35v3.332a.75.75 0 0 1-1.5 0V7.64l-7.75 4.474V22.36a.75.75 0 0 1-1.125.65l-8.75-5.052a1.75 1.75 0 0 1-.875-1.515V6.917c0-.119.012-.236.035-.35a.749.749 0 0 1 .554-.96c.088-.078.184-.146.286-.205L9.126.639Zm.875 10.173v.001l7.75-4.474-7.625-4.402a.248.248 0 0 0-.25 0L2.251 6.34Zm-8.5-3.175v8.803c0 .09.048.172.125.216l7.625 4.402v-8.947Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m21.347 17.5-2.894-2.702a.75.75 0 1 1 1.023-1.096l4.286 4a.75.75 0 0 1 0 1.096l-4.286 4a.75.75 0 1 1-1.023-1.096L21.347 19h-6.633a.75.75 0 0 1 0-1.5h6.633Z" }, "children": [] } ] } } } }, "paintbrush": { "name": "paintbrush", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.134 1.535c.7-.509 1.416-.942 2.076-1.155.649-.21 1.463-.267 2.069.34.603.601.568 1.411.368 2.07-.202.668-.624 1.39-1.125 2.096-1.011 1.424-2.496 2.987-3.775 4.249-1.098 1.084-2.132 1.839-3.04 2.3a3.744 3.744 0 0 1-1.055 3.217c-.431.431-1.065.691-1.657.861-.614.177-1.294.287-1.914.357A21.151 21.151 0 0 1 .797 16H.743l.007-.75H.749L.742 16a.75.75 0 0 1-.743-.742l.743-.008-.742.007v-.054a21.25 21.25 0 0 1 .13-2.284c.067-.647.187-1.287.358-1.914.17-.591.43-1.226.86-1.657a3.746 3.746 0 0 1 3.227-1.054c.466-.893 1.225-1.907 2.314-2.982 1.271-1.255 2.833-2.75 4.245-3.777ZM1.62 13.089c-.051.464-.086.929-.104 1.395.466-.018.932-.053 1.396-.104a10.511 10.511 0 0 0 1.668-.309c.526-.151.856-.325 1.011-.48a2.25 2.25 0 1 0-3.182-3.182c-.155.155-.329.485-.48 1.01a10.515 10.515 0 0 0-.309 1.67Zm10.396-10.34c-1.224.89-2.605 2.189-3.822 3.384l1.718 1.718c1.21-1.205 2.51-2.597 3.387-3.833.47-.662.78-1.227.912-1.662.134-.444.032-.551.009-.575h-.001V1.78c-.014-.014-.113-.113-.548.027-.432.14-.995.462-1.655.942Zm-4.832 7.266-.001.001a9.859 9.859 0 0 0 1.63-1.142L7.155 7.216a9.7 9.7 0 0 0-1.161 1.607c.482.302.889.71 1.19 1.192Z" }, "children": [] } ] } } } }, "paper-airplane": { "name": "paper-airplane", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.989 8 .064 2.68a1.342 1.342 0 0 1 1.85-1.462l13.402 5.744a1.13 1.13 0 0 1 0 2.076L1.913 14.782a1.343 1.343 0 0 1-1.85-1.463L.99 8Zm.603-5.288L2.38 7.25h4.87a.75.75 0 0 1 0 1.5H2.38l-.788 4.538L13.929 8Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.513 1.96a1.374 1.374 0 0 1 1.499-.21l19.335 9.215a1.147 1.147 0 0 1 0 2.07L3.012 22.25a1.374 1.374 0 0 1-1.947-1.46L2.49 12 1.065 3.21a1.375 1.375 0 0 1 .448-1.25Zm2.375 10.79-1.304 8.042L21.031 12 2.584 3.208l1.304 8.042h7.362a.75.75 0 0 1 0 1.5Z" }, "children": [] } ] } } } }, "paperclip": { "name": "paperclip", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.212 3.02a1.753 1.753 0 0 0-2.478.003l-5.83 5.83a3.007 3.007 0 0 0-.88 2.127c0 .795.315 1.551.88 2.116.567.567 1.333.89 2.126.89.79 0 1.548-.321 2.116-.89l5.48-5.48a.75.75 0 0 1 1.061 1.06l-5.48 5.48a4.492 4.492 0 0 1-3.177 1.33c-1.2 0-2.345-.487-3.187-1.33a4.483 4.483 0 0 1-1.32-3.177c0-1.195.475-2.341 1.32-3.186l5.83-5.83a3.25 3.25 0 0 1 5.553 2.297c0 .863-.343 1.691-.953 2.301L7.439 12.39c-.375.377-.884.59-1.416.593a1.998 1.998 0 0 1-1.412-.593 1.992 1.992 0 0 1 0-2.828l5.48-5.48a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-5.48 5.48a.492.492 0 0 0 0 .707.499.499 0 0 0 .352.154.51.51 0 0 0 .356-.154l5.833-5.827a1.755 1.755 0 0 0 0-2.481Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M19.187 3.588a2.75 2.75 0 0 0-3.889 0L5.575 13.31a4.5 4.5 0 0 0 6.364 6.364l8.662-8.662a.75.75 0 0 1 1.061 1.06L13 20.735a6 6 0 0 1-8.485-8.485l9.723-9.723a4.247 4.247 0 0 1 4.124-1.139 4.247 4.247 0 0 1 3.025 3.025 4.247 4.247 0 0 1-1.139 4.124l-9.193 9.193a2.64 2.64 0 0 1-1.858.779 2.626 2.626 0 0 1-1.854-.779c-.196-.196-.338-.47-.43-.726a2.822 2.822 0 0 1-.168-.946c0-.7.284-1.373.775-1.864l8.132-8.131a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-8.131 8.132a1.148 1.148 0 0 0-.336.803c.003.204.053.405.146.587.01.018.018.028.02.032.22.215.501.332.786.332.29 0 .58-.121.798-.34l9.192-9.192a2.75 2.75 0 0 0 0-3.89Z" }, "children": [] } ] } } } }, "passkey-fill": { "name": "passkey-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.743 4.757a3.757 3.757 0 1 1 5.851 3.119 5.991 5.991 0 0 1 2.15 1.383c.17.17.257.405.258.646.003.598.001 1.197 0 1.795L11 12.778v.721a.5.5 0 0 1-.5.5H1.221a.749.749 0 0 1-.714-.784 6.004 6.004 0 0 1 3.899-5.339 3.754 3.754 0 0 1-1.663-3.119Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.75 6.875c0 .874-.448 1.643-1.127 2.09a.265.265 0 0 0-.123.22v.59c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.176v.231c0 .067-.026.13-.073.177l-.356.356a.125.125 0 0 0 0 .177l.356.356c.047.047.073.11.073.177v.287a.247.247 0 0 1-.065.168l-.8.88a.52.52 0 0 1-.77 0l-.8-.88a.247.247 0 0 1-.065-.168V9.185a.264.264 0 0 0-.123-.22 2.5 2.5 0 1 1 3.873-2.09ZM14 6.5a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.496 2a5.25 5.25 0 0 0-2.519 9.857A9.006 9.006 0 0 0 .5 20.228a.751.751 0 0 0 .728.772h5.257c3.338.001 6.677.002 10.015 0a.5.5 0 0 0 .5-.5v-4.669a.95.95 0 0 0-.171-.551 9.02 9.02 0 0 0-4.814-3.423A5.25 5.25 0 0 0 9.496 2Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M23.625 10.313c0 1.31-.672 2.464-1.691 3.134a.398.398 0 0 0-.184.33v.886a.372.372 0 0 1-.11.265l-.534.534a.188.188 0 0 0 0 .265l.534.534c.071.07.11.166.11.265v.347a.374.374 0 0 1-.11.265l-.534.534a.188.188 0 0 0 0 .265l.534.534a.37.37 0 0 1 .11.265v.431a.379.379 0 0 1-.097.253l-1.2 1.319a.781.781 0 0 1-1.156 0l-1.2-1.319a.379.379 0 0 1-.097-.253v-5.39a.398.398 0 0 0-.184-.33 3.75 3.75 0 1 1 5.809-3.134ZM21 9.75a1.125 1.125 0 1 0-2.25 0 1.125 1.125 0 0 0 2.25 0Z" }, "children": [] } ] } } } }, "paste": { "name": "paste", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.626 3.533a.249.249 0 0 0-.126.217v9.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-9.5a.249.249 0 0 0-.126-.217.75.75 0 0 1 .752-1.298c.541.313.874.89.874 1.515v9.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-9.5c0-.625.333-1.202.874-1.515a.75.75 0 0 1 .752 1.298ZM5.75 1h4.5a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-.75.75h-4.5A.75.75 0 0 1 5 4.75v-3A.75.75 0 0 1 5.75 1Zm.75 3h3V2.5h-3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.962 2.513a.75.75 0 0 1-.475.949l-.816.272a.25.25 0 0 0-.171.237V21.25c0 .138.112.25.25.25h14.5a.25.25 0 0 0 .25-.25V3.97a.25.25 0 0 0-.17-.236l-.817-.272a.75.75 0 0 1 .474-1.424l.816.273A1.751 1.751 0 0 1 21 3.97v17.28A1.75 1.75 0 0 1 19.25 23H4.75A1.75 1.75 0 0 1 3 21.25V3.97a1.75 1.75 0 0 1 1.197-1.66l.816-.272a.75.75 0 0 1 .949.475Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7 1.75C7 .784 7.784 0 8.75 0h6.5C16.216 0 17 .784 17 1.75v1.5A1.75 1.75 0 0 1 15.25 5h-6.5A1.75 1.75 0 0 1 7 3.25Zm1.75-.25a.25.25 0 0 0-.25.25v1.5c0 .138.112.25.25.25h6.5a.25.25 0 0 0 .25-.25v-1.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "pencil": { "name": "pencil", "keywords": [ "edit", "change", "update", "write" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.013 1.427a1.75 1.75 0 0 1 2.474 0l1.086 1.086a1.75 1.75 0 0 1 0 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 0 1-.927-.928l.929-3.25c.081-.286.235-.547.445-.758l8.61-8.61Zm.176 4.823L9.75 4.81l-6.286 6.287a.253.253 0 0 0-.064.108l-.558 1.953 1.953-.558a.253.253 0 0 0 .108-.064Zm1.238-3.763a.25.25 0 0 0-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 0 0 0-.354Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.263 2.177a1.75 1.75 0 0 1 2.474 0l2.586 2.586a1.75 1.75 0 0 1 0 2.474L19.53 10.03l-.012.013L8.69 20.378a1.753 1.753 0 0 1-.699.409l-5.523 1.68a.748.748 0 0 1-.747-.188.748.748 0 0 1-.188-.747l1.673-5.5a1.75 1.75 0 0 1 .466-.756L14.476 4.963ZM4.708 16.361a.26.26 0 0 0-.067.108l-1.264 4.154 4.177-1.271a.253.253 0 0 0 .1-.059l10.273-9.806-2.94-2.939-10.279 9.813ZM19 8.44l2.263-2.262a.25.25 0 0 0 0-.354l-2.586-2.586a.25.25 0 0 0-.354 0L16.061 5.5Z" }, "children": [] } ] } } } }, "people": { "name": "people", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 5.5a3.5 3.5 0 1 1 5.898 2.549 5.508 5.508 0 0 1 3.034 4.084.75.75 0 1 1-1.482.235 4 4 0 0 0-7.9 0 .75.75 0 0 1-1.482-.236A5.507 5.507 0 0 1 3.102 8.05 3.493 3.493 0 0 1 2 5.5ZM11 4a3.001 3.001 0 0 1 2.22 5.018 5.01 5.01 0 0 1 2.56 3.012.749.749 0 0 1-.885.954.752.752 0 0 1-.549-.514 3.507 3.507 0 0 0-2.522-2.372.75.75 0 0 1-.574-.73v-.352a.75.75 0 0 1 .416-.672A1.5 1.5 0 0 0 11 5.5.75.75 0 0 1 11 4Zm-5.5-.5a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 3.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 8a5.5 5.5 0 1 1 8.596 4.547 9.005 9.005 0 0 1 5.9 8.18.751.751 0 0 1-1.5.045 7.5 7.5 0 0 0-14.993 0 .75.75 0 0 1-1.499-.044 9.005 9.005 0 0 1 5.9-8.181A5.496 5.496 0 0 1 3.5 8ZM9 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm8.29 4c-.148 0-.292.01-.434.03a.75.75 0 1 1-.212-1.484 4.53 4.53 0 0 1 3.38 8.097 6.69 6.69 0 0 1 3.956 6.107.75.75 0 0 1-1.5 0 5.193 5.193 0 0 0-3.696-4.972l-.534-.16v-1.676l.41-.209A3.03 3.03 0 0 0 17.29 8Z" }, "children": [] } ] } } } }, "person": { "name": "person", "keywords": [ "people", "man", "woman", "human" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.561 8.073a6.005 6.005 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6.004 6.004 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0ZM10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5a5.5 5.5 0 0 1 3.096 10.047 9.005 9.005 0 0 1 5.9 8.181.75.75 0 1 1-1.499.044 7.5 7.5 0 0 0-14.993 0 .75.75 0 0 1-1.5-.045 9.005 9.005 0 0 1 5.9-8.18A5.5 5.5 0 0 1 12 2.5ZM8 8a4 4 0 1 0 8 0 4 4 0 0 0-8 0Z" }, "children": [] } ] } } } }, "person-add": { "name": "person-add", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.9 8.548h-.001a5.528 5.528 0 0 1 3.1 4.659.75.75 0 1 1-1.498.086A4.01 4.01 0 0 0 5.5 9.5a4.01 4.01 0 0 0-4.001 3.793.75.75 0 1 1-1.498-.085 5.527 5.527 0 0 1 3.1-4.66 3.5 3.5 0 1 1 4.799 0ZM13.25 0a.75.75 0 0 1 .75.75V2h1.25a.75.75 0 0 1 0 1.5H14v1.25a.75.75 0 0 1-1.5 0V3.5h-1.25a.75.75 0 0 1 0-1.5h1.25V.75a.75.75 0 0 1 .75-.75ZM5.5 4a2 2 0 1 0-.001 3.999A2 2 0 0 0 5.5 4Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 9.5a5 5 0 1 1 7.916 4.062 7.973 7.973 0 0 1 5.018 7.166.75.75 0 1 1-1.499.044 6.469 6.469 0 0 0-12.932 0 .75.75 0 0 1-1.499-.044 7.972 7.972 0 0 1 5.059-7.181A4.994 4.994 0 0 1 4 9.5ZM9 6a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7Zm10.25-5a.75.75 0 0 1 .75.75V4h2.25a.75.75 0 0 1 0 1.5H20v2.25a.75.75 0 0 1-1.5 0V5.5h-2.25a.75.75 0 0 1 0-1.5h2.25V1.75a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "person-fill": { "name": "person-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.243 4.757a3.757 3.757 0 1 1 5.851 3.119 6.006 6.006 0 0 1 3.9 5.339.75.75 0 0 1-.715.784H2.721a.75.75 0 0 1-.714-.784 6.006 6.006 0 0 1 3.9-5.34 3.753 3.753 0 0 1-1.664-3.118Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5a5.25 5.25 0 0 0-2.519 9.857 9.005 9.005 0 0 0-6.477 8.37.75.75 0 0 0 .727.773H20.27a.75.75 0 0 0 .727-.772 9.005 9.005 0 0 0-6.477-8.37A5.25 5.25 0 0 0 12 2.5Z" }, "children": [] } ] } } } }, "pin": { "name": "pin", "keywords": [ "save", "star", "bookmark" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m11.294.984 3.722 3.722a1.75 1.75 0 0 1-.504 2.826l-1.327.613a3.089 3.089 0 0 0-1.707 2.084l-.584 2.454c-.317 1.332-1.972 1.8-2.94.832L5.75 11.311 1.78 15.28a.749.749 0 1 1-1.06-1.06l3.969-3.97-2.204-2.204c-.968-.968-.5-2.623.832-2.94l2.454-.584a3.08 3.08 0 0 0 2.084-1.707l.613-1.327a1.75 1.75 0 0 1 2.826-.504ZM6.283 9.723l2.732 2.731a.25.25 0 0 0 .42-.119l.584-2.454a4.586 4.586 0 0 1 2.537-3.098l1.328-.613a.25.25 0 0 0 .072-.404l-3.722-3.722a.25.25 0 0 0-.404.072l-.613 1.328a4.584 4.584 0 0 1-3.098 2.537l-2.454.584a.25.25 0 0 0-.119.42l2.731 2.732Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m16.114 1.553 6.333 6.333a1.75 1.75 0 0 1-.603 2.869l-1.63.633a5.67 5.67 0 0 0-3.395 3.725l-1.131 3.959a1.75 1.75 0 0 1-2.92.757L9 16.061l-5.595 5.594a.749.749 0 1 1-1.06-1.06L7.939 15l-3.768-3.768a1.75 1.75 0 0 1 .757-2.92l3.959-1.131a5.666 5.666 0 0 0 3.725-3.395l.633-1.63a1.75 1.75 0 0 1 2.869-.603ZM5.232 10.171l8.597 8.597a.25.25 0 0 0 .417-.108l1.131-3.959A7.17 7.17 0 0 1 19.67 9.99l1.63-.634a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.634 1.63a7.17 7.17 0 0 1-4.711 4.293L5.34 9.754a.25.25 0 0 0-.108.417Z" }, "children": [] } ] } } } }, "pin-slash": { "name": "pin-slash", "keywords": [ "unpin", "unsave", "unstar", "unbookmark" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m1.655.595 13.75 13.75q.22.219.22.53 0 .311-.22.53-.219.22-.53.22-.311 0-.53-.22L.595 1.655q-.22-.219-.22-.53 0-.311.22-.53.219-.22.53-.22.311 0 .53.22ZM.72 14.22l4.5-4.5q.219-.22.53-.22.311 0 .53.22.22.219.22.53 0 .311-.22.53l-4.5 4.5q-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m5.424 6.146-1.759.419q-.143.034-.183.175-.04.141.064.245l5.469 5.469q.104.104.245.064.141-.04.175-.183l.359-1.509q.072-.302.337-.465.264-.163.567-.091.302.072.465.337.162.264.09.567l-.359 1.509q-.238.999-1.226 1.278-.988.28-1.714-.446L2.485 8.046q-.726-.726-.446-1.714.279-.988 1.278-1.226l1.759-.419q.303-.072.567.091.265.163.337.465.072.302-.091.567-.163.264-.465.336ZM7.47 3.47q.155-.156.247-.355l.751-1.627Q8.851.659 9.75.498q.899-.16 1.544.486l3.722 3.722q.646.645.486 1.544-.161.899-.99 1.282l-1.627.751q-.199.092-.355.247-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53.344-.345.787-.549l1.627-.751q.118-.055.141-.183.023-.128-.069-.221l-3.722-3.722q-.092-.092-.221-.069-.128.023-.183.141l-.751 1.627q-.204.443-.549.787-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.345 20.595 8.47 14.47q.219-.22.53-.22.311 0 .53.22.22.219.22.53 0 .311-.22.53l-6.125 6.125q-.219.22-.53.22-.311 0-.53-.22-.22-.219-.22-.53 0-.311.22-.53Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m16.72 11.97.358-.358a6.738 6.738 0 0 1 2.326-1.518l1.896-.738a.25.25 0 0 0 .086-.409l-6.333-6.333a.25.25 0 0 0-.409.086l-.521 1.34a8.663 8.663 0 0 1-2.243 3.265.75.75 0 0 1-1.01-1.11 7.132 7.132 0 0 0 1.854-2.699l.521-1.34a1.75 1.75 0 0 1 2.869-.603l6.333 6.333a1.75 1.75 0 0 1-.603 2.869l-1.896.737a5.26 5.26 0 0 0-1.81 1.18l-.358.358a.749.749 0 1 1-1.06-1.06Zm-12.549-.738a1.75 1.75 0 0 1 .757-2.92l3.366-.962.412 1.443-3.366.961a.25.25 0 0 0-.108.417l8.597 8.597a.25.25 0 0 0 .417-.108l.961-3.366 1.443.412-.962 3.366a1.75 1.75 0 0 1-2.92.757Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m3.405 2.095 18.75 18.75q.22.219.22.53 0 .311-.22.53-.219.22-.53.22-.311 0-.53-.22L2.345 3.155q-.22-.219-.22-.53 0-.311.22-.53.219-.22.53-.22.311 0 .53.22Z" }, "children": [] } ] } } } }, "pivot-column": { "name": "pivot-column", "keywords": [ "pivot", "column", "table", "project", "filter" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.217 0 16 .784 16 1.75v5.5a.75.75 0 0 1-1.5 0V6.5h-8v8h.75a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 0 14.25ZM1.5 6.5v7.75c0 .138.112.25.25.25H5v-8Zm5-1.5h8V1.75a.25.25 0 0 0-.25-.25H6.5ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m11.017 9.89-2.882 2.677a.249.249 0 0 0 0 .366l2.882 2.677a.25.25 0 0 0 .421-.183V13.5H12.5A3.5 3.5 0 0 0 16 10a.75.75 0 0 0-1.5 0 2 2 0 0 1-2 2h-1.062v-1.927a.25.25 0 0 0-.421-.183Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.783 2.783 2 3.75 2h16.5c.966 0 1.75.783 1.75 1.75V10a.75.75 0 0 1-1.5 0V8.75H8.75V20.5H10a.75.75 0 0 1 0 1.5H3.75A1.75 1.75 0 0 1 2 20.25Zm6.75-.25v3.75H20.5v-3.5a.25.25 0 0 0-.25-.25Zm-1.5 17V8.75H3.5v11.5c0 .138.112.25.25.25ZM3.5 7.25h3.75V3.5h-3.5a.25.25 0 0 0-.25.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M21.25 12.312a.75.75 0 0 1 .75.75v2.626a3.75 3.75 0 0 1-3.75 3.75h-3.502l2.032 2.032a.749.749 0 1 1-1.06 1.06l-3.25-3.25a.749.749 0 0 1 0-1.06l3.25-3.25a.749.749 0 1 1 1.06 1.06l-1.907 1.908h3.377a2.25 2.25 0 0 0 2.25-2.25v-2.626a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "play": { "name": "play", "keywords": [ "play", "start", "begin", "action" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.5 15.584V8.416a.5.5 0 0 1 .77-.42l5.576 3.583a.5.5 0 0 1 0 .842l-5.576 3.584a.5.5 0 0 1-.77-.42Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm11-9.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5Z" }, "children": [] } ] } } } }, "plug": { "name": "plug", "keywords": [ "hook", "webhook" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 8H2.5a1 1 0 0 0-1 1v5.25a.75.75 0 0 1-1.5 0V9a2.5 2.5 0 0 1 2.5-2.5H4V5.133a1.75 1.75 0 0 1 1.533-1.737l2.831-.353.76-.913c.332-.4.825-.63 1.344-.63h.782c.966 0 1.75.784 1.75 1.75V4h2.25a.75.75 0 0 1 0 1.5H13v4h2.25a.75.75 0 0 1 0 1.5H13v.75a1.75 1.75 0 0 1-1.75 1.75h-.782c-.519 0-1.012-.23-1.344-.63l-.761-.912-2.83-.354A1.75 1.75 0 0 1 4 9.867Zm6.276-4.91-.95 1.14a.753.753 0 0 1-.483.265l-3.124.39a.25.25 0 0 0-.219.248v4.734c0 .126.094.233.219.249l3.124.39a.752.752 0 0 1 .483.264l.95 1.14a.25.25 0 0 0 .192.09h.782a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-.782a.25.25 0 0 0-.192.09Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7 11.5H2.938c-.794 0-1.438.644-1.438 1.437v8.313a.75.75 0 0 1-1.5 0v-8.312A2.939 2.939 0 0 1 2.937 10H7V6.151c0-.897.678-1.648 1.57-1.74l6.055-.626 1.006-1.174A1.752 1.752 0 0 1 16.96 2h1.29c.966 0 1.75.784 1.75 1.75V6h3.25a.75.75 0 0 1 0 1.5H20V14h3.25a.75.75 0 0 1 0 1.5H20v2.25a1.75 1.75 0 0 1-1.75 1.75h-1.29a1.75 1.75 0 0 1-1.329-.611l-1.006-1.174-6.055-.627A1.749 1.749 0 0 1 7 15.348Zm9.77-7.913v.001l-1.201 1.4a.75.75 0 0 1-.492.258l-6.353.657a.25.25 0 0 0-.224.249v9.196a.25.25 0 0 0 .224.249l6.353.657c.191.02.368.112.493.258l1.2 1.401a.252.252 0 0 0 .19.087h1.29a.25.25 0 0 0 .25-.25v-14a.25.25 0 0 0-.25-.25h-1.29a.252.252 0 0 0-.19.087Z" }, "children": [] } ] } } } }, "plus": { "name": "plus", "keywords": [ "add", "new", "more" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.75 2a.75.75 0 0 1 .75.75V7h4.25a.75.75 0 0 1 0 1.5H8.5v4.25a.75.75 0 0 1-1.5 0V8.5H2.75a.75.75 0 0 1 0-1.5H7V2.75A.75.75 0 0 1 7.75 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.75 4.5a.75.75 0 0 1 .75.75V11h5.75a.75.75 0 0 1 0 1.5H12.5v5.75a.75.75 0 0 1-1.5 0V12.5H5.25a.75.75 0 0 1 0-1.5H11V5.25a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "plus-circle": { "name": "plus-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm7.25-3.25v2.5h2.5a.75.75 0 0 1 0 1.5h-2.5v2.5a.75.75 0 0 1-1.5 0v-2.5h-2.5a.75.75 0 0 1 0-1.5h2.5v-2.5a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.75 7.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5v-3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "project": { "name": "project", "keywords": [ "board", "kanban", "columns", "scrum" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0ZM1.5 1.75v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25ZM11.75 3a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0v-7.5a.75.75 0 0 1 .75-.75Zm-8.25.75a.75.75 0 0 1 1.5 0v5.5a.75.75 0 0 1-1.5 0ZM8 3a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.25 6a.75.75 0 0 0-.75.75v7.5a.75.75 0 0 0 1.5 0v-7.5A.75.75 0 0 0 7.25 6ZM12 6a.75.75 0 0 0-.75.75v4.5a.75.75 0 0 0 1.5 0v-4.5A.75.75 0 0 0 12 6Zm4 .75a.75.75 0 0 1 1.5 0v9.5a.75.75 0 0 1-1.5 0v-9.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2ZM3.5 3.75v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H3.75a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } } } }, "project-roadmap": { "name": "project-roadmap", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 7a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5ZM5 4.75A.75.75 0 0 1 5.75 4h5.5a.75.75 0 0 1 0 1.5h-5.5A.75.75 0 0 1 5 4.75ZM6.75 10a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 7a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5ZM7 11.75a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75ZM9.75 15a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "project-symlink": { "name": "project-symlink", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16h-8.5a.75.75 0 0 1 0-1.5h8.5a.25.25 0 0 0 .25-.25V6.5h-13v1.75a.75.75 0 0 1-1.5 0ZM6.5 5h8V1.75a.25.25 0 0 0-.25-.25H6.5Zm-5 0H5V1.5H1.75a.25.25 0 0 0-.25.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 13.737a2.25 2.25 0 0 1 2.262-2.25L4 11.49v1.938c0 .218.26.331.42.183l2.883-2.677a.25.25 0 0 0 0-.366L4.42 7.89a.25.25 0 0 0-.42.183V9.99l-.23-.001A3.75 3.75 0 0 0 0 13.738v1.012a.75.75 0 0 0 1.5 0v-1.013Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H9.75a.75.75 0 0 1 0-1.5h10.5a.25.25 0 0 0 .25-.25V9h-17v3A.75.75 0 0 1 2 12ZM9 7.5h11.5V3.75a.25.25 0 0 0-.25-.25H9Zm-5.5 0h4v-4H3.75a.25.25 0 0 0-.25.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m9.308 14.5-2.104-2.236a.75.75 0 1 1 1.092-1.028l3.294 3.5a.75.75 0 0 1 0 1.028l-3.294 3.5a.75.75 0 1 1-1.092-1.028L9.308 16H6.09a2.59 2.59 0 0 0-2.59 2.59v2.66a.75.75 0 0 1-1.5 0v-2.66a4.09 4.09 0 0 1 4.09-4.09h3.218Z" }, "children": [] } ] } } } }, "project-template": { "name": "project-template", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 1.75v1.562a.75.75 0 1 1-1.5 0V1.75C0 .784.784 0 1.75 0h1.562a.75.75 0 1 1 0 1.5H1.75a.25.25 0 0 0-.25.25ZM6.438 0h3.124a.75.75 0 1 1 0 1.5H6.438a.75.75 0 1 1 0-1.5Zm6.25 0h1.562C15.217 0 16 .784 16 1.75v1.562a.75.75 0 1 1-1.5 0V1.75a.25.25 0 0 0-.25-.25h-1.562a.75.75 0 1 1 0-1.5ZM1.5 6.438v3.124a.75.75 0 1 1-1.5 0V6.438a.75.75 0 1 1 1.5 0Zm14.5 0v3.124a.75.75 0 1 1-1.5 0V6.438a.75.75 0 1 1 1.5 0Zm-14.5 6.25v1.562c0 .138.112.25.25.25h1.562a.75.75 0 1 1 0 1.5H1.75A1.75 1.75 0 0 1 0 14.25v-1.562a.75.75 0 1 1 1.5 0Zm14.5 0v1.562A1.75 1.75 0 0 1 14.25 16h-1.562a.75.75 0 1 1 0-1.5h1.562a.25.25 0 0 0 .25-.25v-1.562a.75.75 0 1 1 1.5 0ZM6.438 14.5h3.124a.75.75 0 1 1 0 1.5H6.438a.75.75 0 1 1 0-1.5ZM6.5 3v1A.75.75 0 0 1 5 4V3a.75.75 0 0 1 1.5 0ZM2.25 5.75A.75.75 0 0 1 3 5h1a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Zm4.5 0A.75.75 0 0 1 7.5 5h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm-1 1a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Zm.75 4v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0Zm3.5-5a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 3.5a.25.25 0 0 0-.25.25v2.062a.75.75 0 1 1-1.5 0V3.75C2 2.783 2.783 2 3.75 2h2.062a.75.75 0 1 1 0 1.5Zm13.688-.75a.75.75 0 0 1 .75-.75h2.062c.966 0 1.75.783 1.75 1.75v2.062a.75.75 0 1 1-1.5 0V3.75a.25.25 0 0 0-.25-.25h-2.062a.75.75 0 0 1-.75-.75ZM2.75 17.438a.75.75 0 0 1 .75.75v2.062c0 .138.112.25.25.25h2.062a.75.75 0 1 1 0 1.5H3.75A1.75 1.75 0 0 1 2 20.25v-2.062a.75.75 0 0 1 .75-.75Zm18.5 0a.75.75 0 0 1 .75.75v2.062A1.75 1.75 0 0 1 20.25 22h-2.062a.75.75 0 1 1 0-1.5h2.062a.25.25 0 0 0 .25-.25v-2.062a.75.75 0 0 1 .75-.75Zm-18.5-8.25a.75.75 0 0 1 .75.75v4.124a.75.75 0 1 1-1.5 0V9.938a.75.75 0 0 1 .75-.75ZM9.188 2.75a.75.75 0 0 1 .75-.75h4.124a.75.75 0 1 1 0 1.5H9.938a.75.75 0 0 1-.75-.75Zm0 18.5a.75.75 0 0 1 .75-.75h4.124a.75.75 0 1 1 0 1.5H9.938a.75.75 0 0 1-.75-.75ZM21.25 9.188a.75.75 0 0 1 .75.75v4.124a.75.75 0 1 1-1.5 0V9.938a.75.75 0 0 1 .75-.75ZM3.75 8.25a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm5.5 0A.75.75 0 0 1 10 7.5h2A.75.75 0 0 1 12 9h-2a.75.75 0 0 1-.75-.75Zm-1-4.5A.75.75 0 0 1 9 4.5v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm0 5.5A.75.75 0 0 1 9 10v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm0 4.75a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75ZM14 8.25a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "pulse": { "name": "pulse", "keywords": [ "graph", "trend", "line", "activity" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 2c.306 0 .582.187.696.471L10 10.731l1.304-3.26A.751.751 0 0 1 12 7h3.25a.75.75 0 0 1 0 1.5h-2.742l-1.812 4.528a.751.751 0 0 1-1.392 0L6 4.77 4.696 8.03A.75.75 0 0 1 4 8.5H.75a.75.75 0 0 1 0-1.5h2.742l1.812-4.529A.751.751 0 0 1 6 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.002 2.5a.75.75 0 0 1 .691.464l6.302 15.305 2.56-6.301a.75.75 0 0 1 .695-.468h4a.75.75 0 0 1 0 1.5h-3.495l-3.06 7.532a.75.75 0 0 1-1.389.004L8.997 5.21l-3.054 7.329A.75.75 0 0 1 5.25 13H.75a.75.75 0 0 1 0-1.5h4l3.558-8.538a.75.75 0 0 1 .694-.462Z" }, "children": [] } ] } } } }, "question": { "name": "question", "keywords": [ "help", "explain" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.92 6.085h.001a.749.749 0 1 1-1.342-.67c.169-.339.436-.701.849-.977C6.845 4.16 7.369 4 8 4a2.756 2.756 0 0 1 1.637.525c.503.377.863.965.863 1.725 0 .448-.115.83-.329 1.15-.205.307-.47.513-.692.662-.109.072-.22.138-.313.195l-.006.004a6.24 6.24 0 0 0-.26.16.952.952 0 0 0-.276.245.75.75 0 0 1-1.248-.832c.184-.264.42-.489.692-.661.103-.067.207-.132.313-.195l.007-.004c.1-.061.182-.11.258-.161a.969.969 0 0 0 .277-.245C8.96 6.514 9 6.427 9 6.25a.612.612 0 0 0-.262-.525A1.27 1.27 0 0 0 8 5.5c-.369 0-.595.09-.74.187a1.01 1.01 0 0 0-.34.398ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.97 8.265a1.45 1.45 0 0 0-.487.57.75.75 0 0 1-1.341-.67c.2-.402.513-.826.997-1.148C10.627 6.69 11.244 6.5 12 6.5c.658 0 1.369.195 1.934.619a2.45 2.45 0 0 1 1.004 2.006c0 1.033-.513 1.72-1.027 2.215-.19.183-.399.358-.579.508l-.147.123a4.329 4.329 0 0 0-.435.409v1.37a.75.75 0 1 1-1.5 0v-1.473c0-.237.067-.504.247-.736.22-.28.486-.517.718-.714l.183-.153.001-.001c.172-.143.324-.27.47-.412.368-.355.569-.676.569-1.136a.953.953 0 0 0-.404-.806C12.766 8.118 12.384 8 12 8c-.494 0-.814.121-1.03.265ZM13 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "quote": { "name": "quote", "keywords": [ "quotation" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 2.5h10.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5Zm4 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Zm0 5h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5ZM2.5 7.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 6.25a.75.75 0 0 1 .75-.75h13.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 6.25Zm5 6.063a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1-.75-.75Zm0 5.937a.75.75 0 0 1 .75-.75h11.5a.75.75 0 0 1 0 1.5H8.75a.75.75 0 0 1-.75-.75ZM3.75 11a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } } } }, "read": { "name": "read", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.115.65a1.752 1.752 0 0 1 1.77 0l6.25 3.663c.536.314.865.889.865 1.51v6.427A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25V5.823c0-.621.33-1.196.865-1.51Zm1.011 1.293a.252.252 0 0 0-.252 0l-5.72 3.353L6.468 7.76a2.748 2.748 0 0 1 3.066 0l4.312-2.464-5.719-3.353ZM13.15 12.5 8.772 9.06a1.25 1.25 0 0 0-1.544 0L2.85 12.5Zm1.35-5.85-3.687 2.106 3.687 2.897ZM5.187 8.756 1.5 6.65v5.003Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.89 1.767a2.252 2.252 0 0 1 2.22 0l9.75 5.525A2.25 2.25 0 0 1 24 9.249v9.501A2.25 2.25 0 0 1 21.75 21H2.25A2.25 2.25 0 0 1 0 18.75v-9.5c0-.81.435-1.558 1.14-1.958Zm1.48 1.305a.75.75 0 0 0-.74 0l-9.316 5.28 7.41 4.233a3.75 3.75 0 0 1 4.553 0l7.41-4.234-9.317-5.28ZM20.65 19.5l-7.26-5.704a2.25 2.25 0 0 0-2.78 0L3.35 19.5Zm1.85-9.886-6.95 3.971 6.663 5.236c.089.07.161.159.21.26a.745.745 0 0 0 .077-.331ZM8.45 13.585 1.5 9.614v9.136c0 .119.028.23.076.33a.744.744 0 0 1 .21-.259Z" }, "children": [] } ] } } } }, "redo": { "name": "redo", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.78 6.28a.749.749 0 0 0 0-1.06l-3.5-3.5a.749.749 0 1 0-1.06 1.06L12.439 5H5.251l-.001.007L5.251 5a.8.8 0 0 0-.171.019A4.501 4.501 0 0 0 5.5 14h1.704a.75.75 0 0 0 0-1.5H5.5a3 3 0 1 1 0-6h6.939L10.22 8.72a.749.749 0 1 0 1.06 1.06l3.5-3.5Z" }, "children": [] } ] } } } }, "rel-file-path": { "name": "rel-file-path", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.94 3.045a.75.75 0 0 0-1.38-.59l-4.5 10.5a.75.75 0 1 0 1.38.59l4.5-10.5ZM5 11.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M19.564 4.42a.75.75 0 0 0-1.378-.59l-6.75 15.75a.75.75 0 0 0 1.378.59l6.75-15.75ZM7 18.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z" }, "children": [] } ] } } } }, "reply": { "name": "reply", "keywords": [ "reply all", "back" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.78 1.97a.75.75 0 0 1 0 1.06L3.81 6h6.44A4.75 4.75 0 0 1 15 10.75v2.5a.75.75 0 0 1-1.5 0v-2.5a3.25 3.25 0 0 0-3.25-3.25H3.81l2.97 2.97a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L1.47 7.28a.75.75 0 0 1 0-1.06l4.25-4.25a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.53 5.03a.75.75 0 1 0-1.06-1.06l-6.25 6.25a.75.75 0 0 0 0 1.06l6.25 6.25a.75.75 0 1 0 1.06-1.06L5.56 11.5H17a3.248 3.248 0 0 1 3.25 3.248v4.502a.75.75 0 0 0 1.5 0v-4.502A4.748 4.748 0 0 0 17 10H5.56l4.97-4.97Z" }, "children": [] } ] } } } }, "repo": { "name": "repo", "keywords": [ "book", "journal", "repository" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2.5A2.5 2.5 0 0 1 4.5 0h8.75a.75.75 0 0 1 .75.75v12.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-8a1 1 0 0 0-.714 1.7.75.75 0 1 1-1.072 1.05A2.495 2.495 0 0 1 2 11.5Zm10.5-1h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 4.5 9h8ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 2.75A2.75 2.75 0 0 1 5.75 0h14.5a.75.75 0 0 1 .75.75v20.5a.75.75 0 0 1-.75.75h-6a.75.75 0 0 1 0-1.5h5.25v-4H6A1.5 1.5 0 0 0 4.5 18v.75c0 .716.43 1.334 1.05 1.605a.75.75 0 0 1-.6 1.374A3.251 3.251 0 0 1 3 18.75ZM19.5 1.5H5.75c-.69 0-1.25.56-1.25 1.25v12.651A2.989 2.989 0 0 1 6 15h13.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7 18.25a.25.25 0 0 1 .25-.25h5a.25.25 0 0 1 .25.25v5.01a.25.25 0 0 1-.397.201l-2.206-1.604a.25.25 0 0 0-.294 0L7.397 23.46a.25.25 0 0 1-.397-.2v-5.01Z" }, "children": [] } ] } } } }, "repo-clone": { "name": "repo-clone", "keywords": [ "book", "journal", "repository" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 0A2.5 2.5 0 0 0 1 2.5v9A2.5 2.5 0 0 0 3.5 14h2.75a.75.75 0 0 0 0-1.5H3.5a1 1 0 0 1 0-2h2.75a.75.75 0 0 0 0-1.5H3.5c-.356 0-.694.074-1 .208V2.5a1 1 0 0 1 1-1h8v2.75a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-.75-.75H3.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 8.058C8 7.023 8.75 6 9.887 6h5.363a.75.75 0 0 1 .75.75v8.5a.75.75 0 0 1-.75.75h-5A2.25 2.25 0 0 1 8 13.75Zm6.5 3.442v-4H9.887c-.07 0-.156.031-.238.125a.663.663 0 0 0-.149.433v3.57c.235-.083.487-.128.75-.128Zm-5 2.25c0 .414.336.75.75.75h4.25V13h-4.25a.75.75 0 0 0-.75.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.375.375a2.5 2.5 0 0 0-2.5 2.5v15.25a2.5 2.5 0 0 0 2.5 2.5h5.187a.75.75 0 1 0 0-1.5H4.375a1 1 0 0 1-1-1v-1.75a1 1 0 0 1 1-1h5.687a.75.75 0 1 0 0-1.5H4.375c-.356 0-.694.074-1 .208V2.875a1 1 0 0 1 1-1h13.25v5.25a.75.75 0 0 0 1.5 0v-6a.75.75 0 0 0-.75-.75h-14Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.375 12.087c0-1.396 1.005-2.712 2.456-2.712h8.044a.75.75 0 0 1 .75.75v12.75a.75.75 0 0 1-.75.75h-7.5a3 3 0 0 1-3-3Zm9.75 5.538v-6.75h-7.294c-.433 0-.956.441-.956 1.212v5.939a2.989 2.989 0 0 1 1.5-.401Zm-8.25 3a1.5 1.5 0 0 0 1.5 1.5h6.75v-3h-6.75a1.5 1.5 0 0 0-1.5 1.5Z" }, "children": [] } ] } } } }, "repo-deleted": { "name": "repo-deleted", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.492 2.492 0 0 1 3.5 9h4.75a.75.75 0 0 1 0 1.5H3.5a1 1 0 1 0 0 2h4.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5v-9Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.28 10.22a.75.75 0 1 0-1.06 1.06L11.94 13l-1.72 1.72a.75.75 0 1 0 1.06 1.06L13 14.06l1.72 1.72a.75.75 0 1 0 1.06-1.06L14.06 13l1.72-1.72a.75.75 0 1 0-1.06-1.06L13 11.94l-1.72-1.72Z" }, "children": [] } ] } } } }, "repo-forked": { "name": "repo-forked", "keywords": [ "book", "journal", "copy" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.75 19.25a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM15 4.75a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm-12.5 0a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM5.75 6.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 5.75 6.5ZM12 21a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 12 21Zm6.25-14.5a1.75 1.75 0 1 0-.001-3.501A1.75 1.75 0 0 0 18.25 6.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.5 7.75v1A2.25 2.25 0 0 0 8.75 11h6.5a2.25 2.25 0 0 0 2.25-2.25v-1H19v1a3.75 3.75 0 0 1-3.75 3.75h-6.5A3.75 3.75 0 0 1 5 8.75v-1Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.25 16.25v-5h1.5v5h-1.5Z" }, "children": [] } ] } } } }, "repo-locked": { "name": "repo-locked", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.492 2.492 0 0 1 3.5 9h2.75a.75.75 0 0 1 0 1.5H3.5a1 1 0 1 0 0 2h2.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5v-9Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9 10.168V9a3 3 0 1 1 6 0v1.168c.591.281 1 .884 1 1.582v2.5A1.75 1.75 0 0 1 14.25 16h-4.5A1.75 1.75 0 0 1 8 14.25v-2.5c0-.698.409-1.3 1-1.582ZM13.5 10V9a1.5 1.5 0 0 0-3 0v1Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2.75A2.75 2.75 0 0 1 4.75 0h14.5a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0V1.5H4.75c-.69 0-1.25.56-1.25 1.25v12.651A2.987 2.987 0 0 1 5 15h6.25a.75.75 0 0 1 0 1.5H5A1.5 1.5 0 0 0 3.5 18v1.25c0 .69.56 1.25 1.25 1.25h6a.75.75 0 0 1 0 1.5h-6A2.75 2.75 0 0 1 2 19.25V2.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 14.5a3.5 3.5 0 1 1 7 0V16h.25c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 22.25 24h-7.5A1.75 1.75 0 0 1 13 22.25v-4.5c0-.966.784-1.75 1.75-1.75H15Zm3.5-2a2 2 0 0 0-2 2V16h4v-1.5a2 2 0 0 0-2-2Z" }, "children": [] } ] } } } }, "repo-pull": { "name": "repo-pull", "keywords": [ "book", "journal", "get" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75V6a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.486 2.486 0 0 1 3.5 9h3a.75.75 0 0 1 0 1.5h-3a1 1 0 0 0 0 2h3a.75.75 0 0 1 0 1.5h-3A2.5 2.5 0 0 1 1 11.5v-9Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.21 13.479a.75.75 0 1 0 1.061 1.061l2.504-2.505a.75.75 0 0 0 0-1.061L13.271 8.47a.75.75 0 0 0-1.061 1.06l1.224 1.225H8.75a.75.75 0 1 0 0 1.5h4.685l-1.225 1.224Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.875 2.875a2.5 2.5 0 0 1 2.5-2.5h14a.75.75 0 0 1 .75.75v9.125a.75.75 0 0 1-1.5 0V1.875H4.375a1 1 0 0 0-1 1v11.208a2.486 2.486 0 0 1 1-.208h5.937a.75.75 0 1 1 0 1.5H4.375a1 1 0 0 0-1 1v1.75a1 1 0 0 0 1 1h6a.75.75 0 0 1 0 1.5h-6a2.5 2.5 0 0 1-2.5-2.5V2.875Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.643 20.484a.749.749 0 1 0 1.061 1.06l3.757-3.757a.75.75 0 0 0 0-1.06l-3.757-3.757a.75.75 0 0 0-1.061 1.06l2.476 2.477H13a.75.75 0 0 0 0 1.5h8.12l-2.477 2.477Z" }, "children": [] } ] } } } }, "repo-push": { "name": "repo-push", "keywords": [ "book", "journal", "repository", "put" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.5A2.5 2.5 0 0 1 3.5 0h8.75a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0V1.5h-8a1 1 0 0 0-1 1v6.708A2.493 2.493 0 0 1 3.5 9h3.25a.75.75 0 0 1 0 1.5H3.5a1 1 0 0 0 0 2h5.75a.75.75 0 0 1 0 1.5H3.5A2.5 2.5 0 0 1 1 11.5Zm13.23 7.79h-.001l-1.224-1.224v6.184a.75.75 0 0 1-1.5 0V9.066L10.28 10.29a.75.75 0 0 1-1.06-1.061l2.505-2.504a.75.75 0 0 1 1.06 0L15.29 9.23a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.75 0A2.75 2.75 0 0 0 2 2.75v16.5A2.75 2.75 0 0 0 4.75 22h11a.75.75 0 0 0 0-1.5h-11c-.69 0-1.25-.56-1.25-1.25V18A1.5 1.5 0 0 1 5 16.5h7.25a.75.75 0 0 0 0-1.5H5c-.546 0-1.059.146-1.5.401V2.75c0-.69.56-1.25 1.25-1.25H18.5v7a.75.75 0 0 0 1.5 0V.75a.75.75 0 0 0-.75-.75H4.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m20 13.903 2.202 2.359a.75.75 0 0 0 1.096-1.024l-3.5-3.75a.75.75 0 0 0-1.096 0l-3.5 3.75a.75.75 0 1 0 1.096 1.024l2.202-2.36v9.348a.75.75 0 0 0 1.5 0v-9.347Z" }, "children": [] } ] } } } }, "repo-template": { "name": "repo-template", "keywords": [ "book", "new", "add", "template" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13.25 8a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-.75a.75.75 0 0 1 0-1.5h.75v-.25a.75.75 0 0 1 .75-.75ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2ZM2.75 8a.75.75 0 0 1 .75.75v.268c.083-.012.166-.018.25-.018h.5a.75.75 0 0 1 0 1.5h-.5a.25.25 0 0 0-.25.25v.75c0 .28.114.532.3.714a.75.75 0 1 1-1.05 1.072A2.495 2.495 0 0 1 2 11.5V8.75A.75.75 0 0 1 2.75 8ZM11 .75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V1.5h-.75A.75.75 0 0 1 11 .75Zm-5 0A.75.75 0 0 1 6.75 0h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 .75Zm0 9A.75.75 0 0 1 6.75 9h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 9.75ZM4.992.662a.75.75 0 0 1-.636.848c-.436.063-.783.41-.846.846a.751.751 0 0 1-1.485-.212A2.501 2.501 0 0 1 4.144.025a.75.75 0 0 1 .848.637ZM2.75 4a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 2.75 4Zm10.5 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 0A2.75 2.75 0 0 0 3 2.75v1a.75.75 0 0 0 1.5 0v-1c0-.69.56-1.25 1.25-1.25h1a.75.75 0 0 0 0-1.5h-1Zm4 0a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm7.5 0a.75.75 0 0 0 0 1.5h2.25v2.25a.75.75 0 0 0 1.5 0v-3a.75.75 0 0 0-.75-.75h-3ZM4.5 6.5a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0V6.5Zm16.5 0a.75.75 0 0 0-1.5 0v3.75a.75.75 0 0 0 1.5 0V6.5ZM4.5 13.25a.75.75 0 0 0-1.5 0v5.5a3.25 3.25 0 0 0 1.95 2.98.75.75 0 1 0 .6-1.375A1.75 1.75 0 0 1 4.5 18.75V18A1.5 1.5 0 0 1 6 16.5h.75a.75.75 0 0 0 0-1.5H6c-.546 0-1.059.146-1.5.401V13.25Zm16.5 0a.75.75 0 0 0-1.5 0V15h-2.25a.75.75 0 0 0 0 1.5h2.25v4h-5.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 .75-.75v-8ZM9.75 15a.75.75 0 0 0 0 1.5h4.5a.75.75 0 0 0 0-1.5h-4.5Zm-2.353 8.461A.25.25 0 0 1 7 23.26v-5.01a.25.25 0 0 1 .25-.25h5a.25.25 0 0 1 .25.25v5.01a.25.25 0 0 1-.397.201l-2.206-1.604a.25.25 0 0 0-.294 0L7.397 23.46Z" }, "children": [] } ] } } } }, "report": { "name": "report", "keywords": [ "report", "abuse", "flag" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 0 1-1.75 1.75h-9.586a.25.25 0 0 0-.177.073l-3.5 3.5A1.458 1.458 0 0 1 5 21.043V18.5H3.25a1.75 1.75 0 0 1-1.75-1.75ZM3.25 4a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 .75.75v3.19l3.427-3.427A1.75 1.75 0 0 1 11.164 17h9.586a.25.25 0 0 0 .25-.25V4.25a.25.25 0 0 0-.25-.25ZM12 6a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4A.75.75 0 0 1 12 6Zm0 9a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } } } }, "rocket": { "name": "rocket", "keywords": [ "staff", "stafftools", "blast", "off", "space", "launch", "ship" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.064 0h.186C15.216 0 16 .784 16 1.75v.186a8.752 8.752 0 0 1-2.564 6.186l-.458.459c-.314.314-.641.616-.979.904v3.207c0 .608-.315 1.172-.833 1.49l-2.774 1.707a.749.749 0 0 1-1.11-.418l-.954-3.102a1.214 1.214 0 0 1-.145-.125L3.754 9.816a1.218 1.218 0 0 1-.124-.145L.528 8.717a.749.749 0 0 1-.418-1.11l1.71-2.774A1.748 1.748 0 0 1 3.31 4h3.204c.288-.338.59-.665.904-.979l.459-.458A8.749 8.749 0 0 1 14.064 0ZM8.938 3.623h-.002l-.458.458c-.76.76-1.437 1.598-2.02 2.5l-1.5 2.317 2.143 2.143 2.317-1.5c.902-.583 1.74-1.26 2.499-2.02l.459-.458a7.25 7.25 0 0 0 2.123-5.127V1.75a.25.25 0 0 0-.25-.25h-.186a7.249 7.249 0 0 0-5.125 2.123ZM3.56 14.56c-.732.732-2.334 1.045-3.005 1.148a.234.234 0 0 1-.201-.064.234.234 0 0 1-.064-.201c.103-.671.416-2.273 1.15-3.003a1.502 1.502 0 1 1 2.12 2.12Zm6.94-3.935c-.088.06-.177.118-.266.175l-2.35 1.521.548 1.783 1.949-1.2a.25.25 0 0 0 .119-.213ZM3.678 8.116 5.2 5.766c.058-.09.117-.178.176-.266H3.309a.25.25 0 0 0-.213.119l-1.2 1.95ZM12 5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20.322.75h1.176a1.75 1.75 0 0 1 1.75 1.749v1.177a10.75 10.75 0 0 1-2.925 7.374l-1.228 1.304a23.699 23.699 0 0 1-1.596 1.542v5.038c0 .615-.323 1.184-.85 1.5l-4.514 2.709a.75.75 0 0 1-1.12-.488l-.963-4.572a1.305 1.305 0 0 1-.14-.129L8.04 15.96l-1.994-1.873a1.305 1.305 0 0 1-.129-.14l-4.571-.963a.75.75 0 0 1-.49-1.12l2.71-4.514c.316-.527.885-.85 1.5-.85h5.037a23.668 23.668 0 0 1 1.542-1.594l1.304-1.23A10.753 10.753 0 0 1 20.321.75Zm-6.344 4.018v-.001l-1.304 1.23a22.275 22.275 0 0 0-3.255 3.851l-2.193 3.29 1.859 1.744a.545.545 0 0 1 .034.034l1.743 1.858 3.288-2.192a22.263 22.263 0 0 0 3.854-3.257l1.228-1.303a9.251 9.251 0 0 0 2.517-6.346V2.5a.25.25 0 0 0-.25-.25h-1.177a9.252 9.252 0 0 0-6.344 2.518ZM6.5 21c-1.209 1.209-3.901 1.445-4.743 1.49a.236.236 0 0 1-.18-.067.236.236 0 0 1-.067-.18c.045-.842.281-3.534 1.49-4.743.9-.9 2.6-.9 3.5 0 .9.9.9 2.6 0 3.5Zm-.592-8.588L8.17 9.017c.23-.346.47-.685.717-1.017H5.066a.25.25 0 0 0-.214.121l-2.167 3.612ZM16 15.112c-.333.248-.672.487-1.018.718l-3.393 2.262.678 3.223 3.612-2.167a.25.25 0 0 0 .121-.214ZM17.5 8a1.5 1.5 0 1 1-3.001-.001A1.5 1.5 0 0 1 17.5 8Z" }, "children": [] } ] } } } }, "rows": { "name": "rows", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 10.75v2.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25v-2.5C0 9.784.784 9 1.75 9h12.5c.966 0 1.75.784 1.75 1.75Zm0-8v2.5A1.75 1.75 0 0 1 14.25 7H1.75A1.75 1.75 0 0 1 0 5.25v-2.5C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75Zm-1.75-.25H1.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Zm0 8H1.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22 3.75v5.5A1.75 1.75 0 0 1 20.25 11H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75Zm0 11v5.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h16.5c.966 0 1.75.784 1.75 1.75ZM20.25 3.5H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Zm0 11H3.75a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "rss": { "name": "rss", "keywords": [ "broadcast", "feed", "atom" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.002 2.725a.75.75 0 0 1 .797-.699C8.79 2.42 13.58 7.21 13.974 13.201a.75.75 0 0 1-1.497.098 10.502 10.502 0 0 0-9.776-9.776.747.747 0 0 1-.7-.798ZM2.84 7.05h-.002a7.002 7.002 0 0 1 6.113 6.111.75.75 0 0 1-1.49.178 5.503 5.503 0 0 0-4.8-4.8.75.75 0 0 1 .179-1.489ZM2 13a1 1 0 1 1 2 0 1 1 0 0 1-2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.5 3.25a.75.75 0 0 1 .75-.75C14.053 2.5 22 10.447 22 20.25a.75.75 0 0 1-1.5 0C20.5 11.275 13.225 4 4.25 4a.75.75 0 0 1-.75-.75Zm.75 6.25C10.187 9.5 15 14.313 15 20.25a.75.75 0 0 1-1.5 0A9.25 9.25 0 0 0 4.25 11a.75.75 0 0 1 0-1.5ZM3.5 19a2 2 0 1 1 3.999-.001A2 2 0 0 1 3.5 19Z" }, "children": [] } ] } } } }, "ruby": { "name": "ruby", "keywords": [ "code", "language" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.637 2.291A.748.748 0 0 1 4.23 2h7.54c.232 0 .451.107.593.291l3.48 4.5a.75.75 0 0 1-.072.999l-7.25 7a.75.75 0 0 1-1.042 0l-7.25-7a.75.75 0 0 1-.072-.999ZM4.598 3.5 1.754 7.177 8 13.207l6.246-6.03L11.402 3.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.873 3.26A.748.748 0 0 1 6.44 3h11.31c.223 0 .434.099.576.27l5 6a.75.75 0 0 1-.028.992l-10.75 11.5a.75.75 0 0 1-1.096 0l-10.75-11.5a.75.75 0 0 1-.02-1.003l5.19-6Zm.91 1.24L2.258 9.73 12 20.153l9.75-10.43L17.399 4.5Z" }, "children": [] } ] } } } }, "screen-full": { "name": "screen-full", "keywords": [ "fullscreen", "expand" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 10a.75.75 0 0 1 .75.75v2.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 1 13.25v-2.5a.75.75 0 0 1 .75-.75Zm12.5 0a.75.75 0 0 1 .75.75v2.5A1.75 1.75 0 0 1 13.25 15h-2.5a.75.75 0 0 1 0-1.5h2.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 .75-.75ZM2.75 2.5a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0v-2.5C1 1.784 1.784 1 2.75 1h2.5a.75.75 0 0 1 0 1.5ZM10 1.75a.75.75 0 0 1 .75-.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a.75.75 0 0 1-1.5 0v-2.5a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 15a.75.75 0 0 1 .75.75v3.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 3 19.25v-3.5a.75.75 0 0 1 .75-.75Zm16.5 0a.75.75 0 0 1 .75.75v3.5A1.75 1.75 0 0 1 19.25 21h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 .75-.75ZM4.75 4.5a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0v-3.5C3 3.784 3.784 3 4.75 3h3.5a.75.75 0 0 1 0 1.5ZM15 3.75a.75.75 0 0 1 .75-.75h3.5c.966 0 1.75.784 1.75 1.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "screen-normal": { "name": "screen-normal", "keywords": [ "fullscreen", "expand", "exit" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.75 1a.75.75 0 0 1 .75.75v2.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 10 4.25v-2.5a.75.75 0 0 1 .75-.75Zm-5.5 0a.75.75 0 0 1 .75.75v2.5A1.75 1.75 0 0 1 4.25 6h-2.5a.75.75 0 0 1 0-1.5h2.5a.25.25 0 0 0 .25-.25v-2.5A.75.75 0 0 1 5.25 1ZM1 10.75a.75.75 0 0 1 .75-.75h2.5c.966 0 1.75.784 1.75 1.75v2.5a.75.75 0 0 1-1.5 0v-2.5a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1-.75-.75Zm9 1c0-.966.784-1.75 1.75-1.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v2.5a.75.75 0 0 1-1.5 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.75 3a.75.75 0 0 1 .75.75v3.5c0 .138.112.25.25.25h3.5a.75.75 0 0 1 0 1.5h-3.5A1.75 1.75 0 0 1 15 7.25v-3.5a.75.75 0 0 1 .75-.75Zm-7.5 0a.75.75 0 0 1 .75.75v3.5A1.75 1.75 0 0 1 7.25 9h-3.5a.75.75 0 0 1 0-1.5h3.5a.25.25 0 0 0 .25-.25v-3.5A.75.75 0 0 1 8.25 3ZM3 15.75a.75.75 0 0 1 .75-.75h3.5c.966 0 1.75.784 1.75 1.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.25.25 0 0 0-.25-.25h-3.5a.75.75 0 0 1-.75-.75Zm12 1c0-.966.784-1.75 1.75-1.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v3.5a.75.75 0 0 1-1.5 0Z" }, "children": [] } ] } } } }, "search": { "name": "search", "keywords": [ "magnifying", "glass" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.68 11.74a6 6 0 0 1-7.922-8.982 6 6 0 0 1 8.982 7.922l3.04 3.04a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215ZM11.5 7a4.499 4.499 0 1 0-8.997 0A4.499 4.499 0 0 0 11.5 7Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.25 2a8.25 8.25 0 0 1 6.34 13.53l5.69 5.69a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-5.69-5.69A8.25 8.25 0 1 1 10.25 2ZM3.5 10.25a6.75 6.75 0 1 0 13.5 0 6.75 6.75 0 0 0-13.5 0Z" }, "children": [] } ] } } } }, "server": { "name": "server", "keywords": [ "computers", "racks", "ops" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 1h12.5c.966 0 1.75.784 1.75 1.75v4c0 .372-.116.717-.314 1 .198.283.314.628.314 1v4a1.75 1.75 0 0 1-1.75 1.75H1.75A1.75 1.75 0 0 1 0 12.75v-4c0-.358.109-.707.314-1a1.739 1.739 0 0 1-.314-1v-4C0 1.784.784 1 1.75 1ZM1.5 2.75v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25H1.75a.25.25 0 0 0-.25.25Zm.25 5.75a.25.25 0 0 0-.25.25v4c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4a.25.25 0 0 0-.25-.25ZM7 4.75A.75.75 0 0 1 7.75 4h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 7 4.75ZM7.75 10h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM3 4.75A.75.75 0 0 1 3.75 4h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 3 4.75ZM3.75 10h.5a.75.75 0 0 1 0 1.5h-.5a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.75 6.5a.75.75 0 0 0 0 1.5h6.5a.75.75 0 0 0 0-1.5h-6.5ZM6 7.25a.75.75 0 0 1 .75-.75h.5a.75.75 0 0 1 0 1.5h-.5A.75.75 0 0 1 6 7.25Zm4 9a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75Zm-3.25-.75a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5h-.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 2h17.5c.966 0 1.75.784 1.75 1.75v7c0 .372-.116.716-.314 1 .198.284.314.628.314 1v7a1.75 1.75 0 0 1-1.75 1.75H3.25a1.75 1.75 0 0 1-1.75-1.75v-7c0-.358.109-.707.314-1a1.741 1.741 0 0 1-.314-1v-7C1.5 2.784 2.284 2 3.25 2Zm0 10.5a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25h17.5a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25Zm0-1.5h17.5a.25.25 0 0 0 .25-.25v-7a.25.25 0 0 0-.25-.25H3.25a.25.25 0 0 0-.25.25v7c0 .138.112.25.25.25Z" }, "children": [] } ] } } } }, "share": { "name": "share", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 6.5a.25.25 0 0 0-.25.25v6.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-6.5a.25.25 0 0 0-.25-.25h-1a.75.75 0 0 1 0-1.5h1c.966 0 1.75.784 1.75 1.75v6.5A1.75 1.75 0 0 1 12.25 15h-8.5A1.75 1.75 0 0 1 2 13.25v-6.5C2 5.784 2.784 5 3.75 5h1a.75.75 0 0 1 0 1.5ZM7.823.177a.25.25 0 0 1 .354 0l2.896 2.896a.25.25 0 0 1-.177.427H8.75v5.75a.75.75 0 0 1-1.5 0V3.5H5.104a.25.25 0 0 1-.177-.427Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.5 9.75v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V9.75a.25.25 0 0 0-.25-.25h-2.5a.75.75 0 0 1 0-1.5h2.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25V9.75C4 8.784 4.784 8 5.75 8h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25Zm7.03-8.53 3.25 3.25a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-1.97-1.97v10.69a.75.75 0 0 1-1.5 0V3.56L9.28 5.53a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.25-3.25a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } } } }, "share-android": { "name": "share-android", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 3a3 3 0 0 1-5.175 2.066l-3.92 2.179a2.994 2.994 0 0 1 0 1.51l3.92 2.179a3 3 0 1 1-.73 1.31l-3.92-2.178a3 3 0 1 1 0-4.133l3.92-2.178A3 3 0 1 1 15 3Zm-1.5 10a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 13.5 13Zm-9-5a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 4.5 8Zm9-5a1.5 1.5 0 1 0-3.001.001A1.5 1.5 0 0 0 13.5 3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20 5.5a3.498 3.498 0 0 1-6.062 2.385l-5.112 3.021a3.498 3.498 0 0 1 0 2.188l5.112 3.021a3.5 3.5 0 1 1-.764 1.29l-5.112-3.02a3.499 3.499 0 1 1-3.843-5.642 3.499 3.499 0 0 1 3.843.872l5.112-3.021A3.5 3.5 0 1 1 20 5.5Zm-1.5 13a2 2 0 1 0-3.999-.001 2 2 0 0 0 3.999.001Zm0-13a2 2 0 1 0-3.999-.001A2 2 0 0 0 18.5 5.5ZM5.5 14a2 2 0 1 0 .001-3.999A2 2 0 0 0 5.5 14Z" }, "children": [] } ] } } } }, "shield": { "name": "shield", "keywords": [ "security", "shield", "protection" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.467.133a1.748 1.748 0 0 1 1.066 0l5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667Zm.61 1.429a.25.25 0 0 0-.153 0l-5.25 1.68a.25.25 0 0 0-.174.238V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297a.196.196 0 0 0 .154 0c2.245-.956 3.582-2.104 4.366-3.298C13.225 9.666 13.5 8.36 13.5 7V3.48a.251.251 0 0 0-.174-.237l-5.25-1.68ZM8.75 4.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 1.5 0ZM9 10.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13 15.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-.25-8.25a.75.75 0 0 0-1.5 0v4.5a.75.75 0 0 0 1.5 0v-4.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.46.637a1.748 1.748 0 0 1 1.08 0l8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.77 10.705-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.771 20.704 2 16.19 2 10V4.976c0-.76.49-1.43 1.21-1.664Zm.617 1.426a.253.253 0 0 0-.154 0L3.673 4.74a.25.25 0 0 0-.173.237V10c0 5.461 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.46 20.5 10V4.976a.25.25 0 0 0-.173-.237Z" }, "children": [] } ] } } } }, "shield-check": { "name": "shield-check", "keywords": [ "security", "shield", "protection", "check", "success" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.97-2.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.53 9.78a.75.75 0 0 0-1.06-1.06L11 13.19l-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5-5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.748 1.748 0 0 1 1.08 0Zm-.617 1.426-8.25 2.676a.249.249 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.253.253 0 0 0-.154 0Z" }, "children": [] } ] } } } }, "shield-lock": { "name": "shield-lock", "keywords": [ "protect", "shield", "lock" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM9.5 6.5c0 .536-.286 1.032-.75 1.3v2.45a.75.75 0 0 1-1.5 0V7.8A1.5 1.5 0 1 1 9.5 6.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.46 1.137a1.748 1.748 0 0 1 1.08 0l8.25 2.675A1.75 1.75 0 0 1 22 5.476V10.5c0 6.19-3.77 10.705-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.771 21.204 2 16.69 2 10.5V5.476c0-.76.49-1.43 1.21-1.664Zm.617 1.426a.253.253 0 0 0-.154 0L3.673 5.24a.25.25 0 0 0-.173.237V10.5c0 5.461 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0c5.15-1.943 8.43-5.965 8.43-11.426V5.476a.25.25 0 0 0-.173-.237ZM13 12.232V15a1 1 0 0 1-2 0v-2.768a2 2 0 1 1 2 0Z" }, "children": [] } ] } } } }, "shield-slash": { "name": "shield-slash", "keywords": [ "shield", "slash", "protect", "unsafe", "unprotected", "security" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.533.133a1.75 1.75 0 0 0-1.066 0l-2.091.67a.75.75 0 0 0 .457 1.428l2.09-.67a.25.25 0 0 1 .153 0l5.25 1.68a.25.25 0 0 1 .174.239V7c0 .233-.008.464-.025.694a.75.75 0 1 0 1.495.112c.02-.27.03-.538.03-.806V3.48a1.75 1.75 0 0 0-1.217-1.667L8.533.133ZM1 2.857l-.69-.5a.75.75 0 1 1 .88-1.214l14.5 10.5a.75.75 0 1 1-.88 1.214l-1.282-.928c-.995 1.397-2.553 2.624-4.864 3.608-.425.181-.905.18-1.329 0-2.447-1.042-4.049-2.356-5.032-3.855C1.32 10.182 1 8.566 1 7Zm1.5 1.086V7c0 1.358.275 2.666 1.057 3.86.784 1.194 2.121 2.34 4.366 3.297.05.02.106.02.153 0 2.127-.905 3.439-1.982 4.237-3.108Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.54 1.137a1.748 1.748 0 0 0-1.08 0L6.018 2.905a.75.75 0 1 0 .464 1.427l5.441-1.768a.239.239 0 0 1 .154 0l8.25 2.675a.249.249 0 0 1 .173.237V10.5c0 1.284-.24 2.83-.696 3.971a.75.75 0 1 0 1.392.557C21.74 13.67 22 11.927 22 10.5V5.476a1.75 1.75 0 0 0-1.21-1.664l-8.25-2.675ZM2.017 4.843l-.974-.748a.751.751 0 0 1 .914-1.19l20.5 15.75a.751.751 0 0 1-.914 1.19l-2.012-1.546-.702.852-.008.009a.07.07 0 0 1-.008.01c-1.603 1.821-3.731 3.223-6.214 4.16a1.699 1.699 0 0 1-1.198-.001C5.771 21.205 2 16.689 2 10.5V5c0-.054.006-.107.017-.157ZM3.5 5.982V10.5c0 5.461 3.281 9.483 8.431 11.426a.193.193 0 0 0 .138 0c2.283-.861 4.192-2.131 5.61-3.738l.662-.803Z" }, "children": [] } ] } } } }, "shield-x": { "name": "shield-x", "keywords": [ "security", "shield", "protection", "fail" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM6.78 5.22 8 6.44l1.22-1.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 7.5l1.22 1.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 8.56 6.78 9.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 7.5 5.72 6.28a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.28 7.72a.75.75 0 0 0-1.06 1.06l2.72 2.72-2.72 2.72a.75.75 0 1 0 1.06 1.06L12 12.56l2.72 2.72a.75.75 0 1 0 1.06-1.06l-2.72-2.72 2.72-2.72a.75.75 0 0 0-1.06-1.06L12 10.44 9.28 7.72Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.748 1.748 0 0 1 1.08 0Zm-.617 1.426-8.25 2.676a.249.249 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.253.253 0 0 0-.154 0Z" }, "children": [] } ] } } } }, "sidebar-collapse": { "name": "sidebar-collapse", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.823 7.823a.25.25 0 0 1 0 .354l-2.396 2.396A.25.25 0 0 1 4 10.396V5.604a.25.25 0 0 1 .427-.177Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25V1.75C0 .784.784 0 1.75 0ZM1.5 1.75v12.5c0 .138.112.25.25.25H9.5v-13H1.75a.25.25 0 0 0-.25.25ZM11 14.5h3.25a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H11Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.22 14.47 9.69 12 7.22 9.53a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l3 3a.75.75 0 0 1 0 1.06l-3 3a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2ZM3.5 3.75v16.5c0 .138.112.25.25.25H15v-17H3.75a.25.25 0 0 0-.25.25Zm13 16.75h3.75a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H16.5Z" }, "children": [] } ] } } } }, "sidebar-expand": { "name": "sidebar-expand", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m4.177 7.823 2.396-2.396A.25.25 0 0 1 7 5.604v4.792a.25.25 0 0 1-.427.177L4.177 8.177a.25.25 0 0 1 0-.354Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25Zm1.75-.25a.25.25 0 0 0-.25.25v12.5c0 .138.112.25.25.25H9.5v-13Zm12.5 13a.25.25 0 0 0 .25-.25V1.75a.25.25 0 0 0-.25-.25H11v13Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.28 9.53 8.81 12l2.47 2.47a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215l-3-3a.75.75 0 0 1 0-1.06l3-3a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25V3.75C2 2.784 2.784 2 3.75 2ZM3.5 3.75v16.5c0 .138.112.25.25.25H15v-17H3.75a.25.25 0 0 0-.25.25Zm13 16.75h3.75a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25H16.5Z" }, "children": [] } ] } } } }, "sign-in": { "name": "sign-in", "keywords": [ "door", "arrow", "direction", "enter", "log in" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 2 13.25Zm6.56 4.5h5.69a.75.75 0 0 1 0 1.5H8.56l1.97 1.97a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L6.22 8.53a.75.75 0 0 1 0-1.06l3.25-3.25a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3.25c0-.966.784-1.75 1.75-1.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25v17.5c0 .138.112.25.25.25h5.5a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 3 20.75Zm9.994 9.5 3.3 3.484a.75.75 0 0 1-1.088 1.032l-4.5-4.75a.75.75 0 0 1 0-1.032l4.5-4.75a.75.75 0 0 1 1.088 1.032l-3.3 3.484h8.256a.75.75 0 0 1 0 1.5Z" }, "children": [] } ] } } } }, "sign-out": { "name": "sign-out", "keywords": [ "door", "arrow", "direction", "leave", "log out" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2.75C2 1.784 2.784 1 3.75 1h2.5a.75.75 0 0 1 0 1.5h-2.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h2.5a.75.75 0 0 1 0 1.5h-2.5A1.75 1.75 0 0 1 2 13.25Zm10.44 4.5-1.97-1.97a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l3.25 3.25a.75.75 0 0 1 0 1.06l-3.25 3.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.97-1.97H6.75a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 3.25c0-.966.784-1.75 1.75-1.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.25.25 0 0 0-.25.25v17.5c0 .138.112.25.25.25h5.5a.75.75 0 0 1 0 1.5h-5.5A1.75 1.75 0 0 1 3 20.75Zm16.006 9.5H10.75a.75.75 0 0 1 0-1.5h8.256l-3.3-3.484a.75.75 0 0 1 1.088-1.032l4.5 4.75a.75.75 0 0 1 0 1.032l-4.5 4.75a.75.75 0 0 1-1.088-1.032Z" }, "children": [] } ] } } } }, "single-select": { "name": "single-select", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m5.06 7.356 2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m7.854 10.854 3.792 3.792a.5.5 0 0 0 .708 0l3.793-3.792a.5.5 0 0 0-.354-.854H8.207a.5.5 0 0 0-.353.854Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25Zm1.75-.25a.25.25 0 0 0-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "skip": { "name": "skip", "keywords": [ "skip", "slash" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm9.78-2.22-5.5 5.5a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l5.5-5.5a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.28 7.78a.75.75 0 0 0-1.06-1.06l-9.5 9.5a.75.75 0 1 0 1.06 1.06l9.5-9.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "skip-fill": { "name": "skip-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm11.333-2.167a.825.825 0 0 0-1.166-1.166l-5.5 5.5a.825.825 0 0 0 1.166 1.166Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm16.333-4.167a.825.825 0 0 0-1.166-1.166l-9.5 9.5a.825.825 0 0 0 1.166 1.166Z" }, "children": [] } ] } } } }, "sliders": { "name": "sliders", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15 2.75a.75.75 0 0 1-.75.75h-4a.75.75 0 0 1 0-1.5h4a.75.75 0 0 1 .75.75Zm-8.5.75v1.25a.75.75 0 0 0 1.5 0v-4a.75.75 0 0 0-1.5 0V2H1.75a.75.75 0 0 0 0 1.5H6.5Zm1.25 5.25a.75.75 0 0 0 0-1.5h-6a.75.75 0 0 0 0 1.5h6ZM15 8a.75.75 0 0 1-.75.75H11.5V10a.75.75 0 1 1-1.5 0V6a.75.75 0 0 1 1.5 0v1.25h2.75A.75.75 0 0 1 15 8Zm-9 5.25v-2a.75.75 0 0 0-1.5 0v1.25H1.75a.75.75 0 0 0 0 1.5H4.5v1.25a.75.75 0 0 0 1.5 0v-2Zm9 0a.75.75 0 0 1-.75.75h-6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 .75.75Z" }, "children": [] } ] } } } }, "smiley": { "name": "smiley", "keywords": [ "emoji", "smile", "mood", "emotion" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm3.82 1.636a.75.75 0 0 1 1.038.175l.007.009c.103.118.22.222.35.31.264.178.683.37 1.285.37.602 0 1.02-.192 1.285-.371.13-.088.247-.192.35-.31l.007-.008a.75.75 0 0 1 1.222.87l-.022-.015c.02.013.021.015.021.015v.001l-.001.002-.002.003-.005.007-.014.019a2.066 2.066 0 0 1-.184.213c-.16.166-.338.316-.53.445-.63.418-1.37.638-2.127.629-.946 0-1.652-.308-2.126-.63a3.331 3.331 0 0 1-.715-.657l-.014-.02-.005-.006-.002-.003v-.002h-.001l.613-.432-.614.43a.75.75 0 0 1 .183-1.044ZM12 7a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM5 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Zm5.25 2.25.592.416a97.71 97.71 0 0 0-.592-.416Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.456 14.494a.75.75 0 0 1 1.068.17 3.08 3.08 0 0 0 .572.492A3.381 3.381 0 0 0 12 15.72c.855 0 1.487-.283 1.904-.562a3.081 3.081 0 0 0 .572-.492l.021-.026a.75.75 0 0 1 1.197.905l-.027.034c-.013.016-.03.038-.052.063-.044.05-.105.119-.184.198a4.569 4.569 0 0 1-.695.566A4.88 4.88 0 0 1 12 17.22a4.88 4.88 0 0 1-2.736-.814 4.57 4.57 0 0 1-.695-.566 3.253 3.253 0 0 1-.236-.261c-.259-.332-.223-.824.123-1.084Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9 10.75a1.25 1.25 0 1 1-2.5 0 1.25 1.25 0 0 1 2.5 0ZM16.25 12a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z" }, "children": [] } ] } } } }, "sort-asc": { "name": "sort-asc", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.927 2.573 3 3A.25.25 0 0 1 15.75 6H13.5v6.75a.75.75 0 0 1-1.5 0V6H9.75a.25.25 0 0 1-.177-.427l3-3a.25.25 0 0 1 .354 0ZM0 12.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75Zm0-4a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 8.25Zm0-4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 4.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.5 17.25a.75.75 0 0 1-1.5 0V7.56l-2.22 2.22a.75.75 0 1 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 0 1-1.06 1.06L18.5 7.56v9.69Zm-15.75.25a.75.75 0 0 1 0-1.5h9.5a.75.75 0 0 1 0 1.5h-9.5Zm0-5a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 0 1.5h-5.5Zm0-5a.75.75 0 0 1 0-1.5h3.5a.75.75 0 0 1 0 1.5h-3.5Z" }, "children": [] } ] } } } }, "sort-desc": { "name": "sort-desc", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 4.25a.75.75 0 0 1 .75-.75h7.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 4.25Zm0 4a.75.75 0 0 1 .75-.75h4.5a.75.75 0 0 1 0 1.5H.75A.75.75 0 0 1 0 8.25Zm0 4a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H.75a.75.75 0 0 1-.75-.75ZM13.5 10h2.25a.25.25 0 0 1 .177.427l-3 3a.25.25 0 0 1-.354 0l-3-3A.25.25 0 0 1 9.75 10H12V3.75a.75.75 0 0 1 1.5 0V10Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.5 16.44V6.75a.75.75 0 0 0-1.5 0v9.69l-2.22-2.22a.75.75 0 1 0-1.06 1.06l3.5 3.5a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 1 0-1.06-1.06l-2.22 2.22ZM2 7.25a.75.75 0 0 1 .75-.75h9.5a.75.75 0 0 1 0 1.5h-9.5A.75.75 0 0 1 2 7.25Zm0 5a.75.75 0 0 1 .75-.75h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1-.75-.75Zm0 5a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z" }, "children": [] } ] } } } }, "sparkle-fill": { "name": "sparkle-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.53 1.282a.5.5 0 0 1 .94 0l.478 1.306a7.492 7.492 0 0 0 4.464 4.464l1.305.478a.5.5 0 0 1 0 .94l-1.305.478a7.492 7.492 0 0 0-4.464 4.464l-.478 1.305a.5.5 0 0 1-.94 0l-.478-1.305a7.492 7.492 0 0 0-4.464-4.464L1.282 8.47a.5.5 0 0 1 0-.94l1.306-.478a7.492 7.492 0 0 0 4.464-4.464Z" }, "children": [] } ] } } } }, "sponsor-tiers": { "name": "sponsor-tiers", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.586 1C12.268 1 13.5 2.37 13.5 4.25c0 1.745-.996 3.359-2.622 4.831-.166.15-.336.297-.509.438l1.116 5.584a.75.75 0 0 1-.991.852l-2.409-.876a.25.25 0 0 0-.17 0l-2.409.876a.75.75 0 0 1-.991-.852L5.63 9.519a13.78 13.78 0 0 1-.51-.438C3.497 7.609 2.5 5.995 2.5 4.25 2.5 2.37 3.732 1 5.414 1c.963 0 1.843.403 2.474 1.073L8 2.198l.112-.125a3.385 3.385 0 0 1 2.283-1.068L10.586 1Zm-3.621 9.495-.718 3.594 1.155-.42a1.75 1.75 0 0 1 1.028-.051l.168.051 1.154.42-.718-3.592c-.199.13-.37.235-.505.314l-.169.097a.75.75 0 0 1-.72 0 9.54 9.54 0 0 1-.515-.308l-.16-.105ZM10.586 2.5c-.863 0-1.611.58-1.866 1.459-.209.721-1.231.721-1.44 0C7.025 3.08 6.277 2.5 5.414 2.5 4.598 2.5 4 3.165 4 4.25c0 1.23.786 2.504 2.128 3.719.49.443 1.018.846 1.546 1.198l.325.21.076-.047.251-.163a13.341 13.341 0 0 0 1.546-1.198C11.214 6.754 12 5.479 12 4.25c0-1.085-.598-1.75-1.414-1.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.004 1.25C18.311 1.25 20 3.128 20 5.75c0 2.292-1.23 4.464-3.295 6.485-.481.47-.98.909-1.482 1.31l.265 1.32 1.375 7.5a.75.75 0 0 1-.982.844l-3.512-1.207a.75.75 0 0 0-.488 0L8.37 23.209a.75.75 0 0 1-.982-.844l1.378-7.512.261-1.309c-.5-.4-1-.838-1.481-1.31C5.479 10.215 4.25 8.043 4.25 5.75c0-2.622 1.689-4.5 3.996-4.5 1.55 0 2.947.752 3.832 1.967l.047.067.047-.067a4.726 4.726 0 0 1 3.612-1.962l.22-.005ZM13.89 14.531c-.418.285-.828.542-1.218.77l-.18.103a.75.75 0 0 1-.734 0l-.071-.04-.46-.272c-.282-.173-.573-.36-.868-.562l-.121.605-1.145 6.239 2.3-.79a2.248 2.248 0 0 1 1.284-.054l.18.053 2.299.79-1.141-6.226-.125-.616ZM16.004 2.75c-1.464 0-2.731.983-3.159 2.459-.209.721-1.231.721-1.44 0-.428-1.476-1.695-2.459-3.16-2.459-1.44 0-2.495 1.173-2.495 3 0 1.811 1.039 3.647 2.844 5.412a19.624 19.624 0 0 0 3.734 2.84l-.019-.011-.184-.111.147-.088a19.81 19.81 0 0 0 3.015-2.278l.37-.352C17.46 9.397 18.5 7.561 18.5 5.75c0-1.827-1.055-3-2.496-3Z" }, "children": [] } ] } } } }, "square": { "name": "square", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 5.75C4 4.784 4.784 4 5.75 4h4.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 10.25 12h-4.5A1.75 1.75 0 0 1 4 10.25Zm1.75-.25a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h4.5a.25.25 0 0 0 .25-.25v-4.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 7.75C6 6.784 6.784 6 7.75 6h8.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 18h-8.5A1.75 1.75 0 0 1 6 16.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "square-fill": { "name": "square-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75 4h4.5c.966 0 1.75.784 1.75 1.75v4.5A1.75 1.75 0 0 1 10.25 12h-4.5A1.75 1.75 0 0 1 4 10.25v-4.5C4 4.784 4.784 4 5.75 4Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.75 6h8.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 16.25 18h-8.5A1.75 1.75 0 0 1 6 16.25v-8.5C6 6.784 6.784 6 7.75 6Z" }, "children": [] } ] } } } }, "squirrel": { "name": "squirrel", "keywords": [ "ship", "shipit", "launch" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.499.75a.75.75 0 0 1 1.5 0v.996C5.9 2.903 6.793 3.65 7.662 4.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873 10.794-.045 12.622.26 14.408.558 16 1.94 16 4.25c0 1.278-.954 2.575-2.44 2.734l.146.508.065.22c.203.701.412 1.455.476 2.226.142 1.707-.4 3.03-1.487 3.898C11.714 14.671 10.27 15 8.75 15h-6a.75.75 0 0 1 0-1.5h1.376a4.484 4.484 0 0 1-.563-1.191 3.835 3.835 0 0 1-.05-2.063 4.647 4.647 0 0 1-2.025-.293.75.75 0 0 1 .525-1.406c1.357.507 2.376-.006 2.698-.318l.009-.01a.747.747 0 0 1 1.06 0 .748.748 0 0 1-.012 1.074c-.912.92-.992 1.835-.768 2.586.221.74.745 1.337 1.196 1.621H8.75c1.343 0 2.398-.296 3.074-.836.635-.507 1.036-1.31.928-2.602-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.425 2.425 0 0 1-.507-.441 3.075 3.075 0 0 1-.633-1.248.75.75 0 0 1 1.455-.364c.046.185.144.436.31.627.146.168.353.305.712.305.738 0 1.25-.615 1.25-1.25 0-1.47-.95-2.315-2.123-2.51-1.172-.196-2.227.387-2.706 1.345-.46.92-.27 1.774.019 3.062l.042.19a.884.884 0 0 1 .01.05c.348.443.666.949.94 1.553a.75.75 0 1 1-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7 5.527c-.814-.68-1.75-1.462-2.692-2.619a3.737 3.737 0 0 0-1.023.88c-.406.495-.663 1.036-.722 1.508.116.122.306.21.591.239.388.038.797-.06 1.032-.19a.75.75 0 0 1 .728 1.31c-.515.287-1.23.439-1.906.373-.682-.067-1.473-.38-1.879-1.193L.75 5.677V5.5c0-.984.48-1.94 1.077-2.664.46-.559 1.05-1.055 1.673-1.353V.75Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M18.377 3.49c-1.862-.31-3.718.62-4.456 2.095-.428.857-.691 1.624-.728 2.361-.035.71.138 1.444.67 2.252.644.854 1.199 1.913 1.608 3.346a.75.75 0 1 1-1.442.412c-.353-1.236-.82-2.135-1.372-2.865l-.008-.01c-.53-.698-1.14-1.242-1.807-1.778a50.724 50.724 0 0 0-.667-.524C9.024 7.884 7.71 6.863 6.471 5.16c-.59.287-1.248.798-1.806 1.454-.665.78-1.097 1.66-1.158 2.446.246.36.685.61 1.246.715.643.12 1.278.015 1.633-.182a.75.75 0 1 1 .728 1.311c-.723.402-1.728.516-2.637.346-.916-.172-1.898-.667-2.398-1.666L2 9.427V9.25c0-1.323.678-2.615 1.523-3.607.7-.824 1.59-1.528 2.477-1.917V2.75a.75.75 0 1 1 1.5 0v1.27c1.154 1.67 2.363 2.612 3.568 3.551.207.162.415.323.621.489.001-.063.003-.126.006-.188.052-1.034.414-2.017.884-2.958 1.06-2.118 3.594-3.313 6.044-2.904 1.225.204 2.329.795 3.125 1.748C22.546 4.713 23 5.988 23 7.5c0 1.496-.913 3.255-2.688 3.652.838 1.699 1.438 3.768 1.181 5.697-.269 2.017-1.04 3.615-2.582 4.675C17.409 22.558 15.288 23 12.5 23H4.75a.75.75 0 0 1 0-1.5h2.322c-.58-.701-.998-1.578-1.223-2.471-.327-1.3-.297-2.786.265-4.131-.92.091-1.985-.02-3.126-.445a.75.75 0 1 1 .524-1.406c1.964.733 3.428.266 4.045-.19.068-.06.137-.12.208-.18a.745.745 0 0 1 .861-.076.746.746 0 0 1 .32.368.752.752 0 0 1-.173.819c-.077.076-.16.15-.252.221-1.322 1.234-1.62 3.055-1.218 4.654.438 1.737 1.574 2.833 2.69 2.837H12.5c2.674 0 4.429-.433 5.56-1.212 1.094-.752 1.715-1.904 1.946-3.637.236-1.768-.445-3.845-1.407-5.529a.576.576 0 0 1-.012-.02 3.557 3.557 0 0 1-1.553-.94c-.556-.565-.89-1.243-1.012-1.73a.75.75 0 0 1 1.456-.364c.057.231.26.67.626 1.043.35.357.822.623 1.443.623 1.172 0 1.953-1.058 1.953-2.234 0-1.205-.357-2.127-.903-2.78-.547-.654-1.318-1.08-2.22-1.23Z" }, "children": [] } ] } } } }, "stack": { "name": "stack", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.122.392a1.75 1.75 0 0 1 1.756 0l5.003 2.902c.83.481.83 1.68 0 2.162L8.878 8.358a1.75 1.75 0 0 1-1.756 0L2.119 5.456a1.251 1.251 0 0 1 0-2.162ZM8.125 1.69a.248.248 0 0 0-.25 0l-4.63 2.685 4.63 2.685a.248.248 0 0 0 .25 0l4.63-2.685ZM1.601 7.789a.75.75 0 0 1 1.025-.273l5.249 3.044a.248.248 0 0 0 .25 0l5.249-3.044a.75.75 0 0 1 .752 1.298l-5.248 3.044a1.75 1.75 0 0 1-1.756 0L1.874 8.814A.75.75 0 0 1 1.6 7.789Zm0 3.5a.75.75 0 0 1 1.025-.273l5.249 3.044a.248.248 0 0 0 .25 0l5.249-3.044a.75.75 0 0 1 .752 1.298l-5.248 3.044a1.75 1.75 0 0 1-1.756 0l-5.248-3.044a.75.75 0 0 1-.273-1.025Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.063 1.456a1.749 1.749 0 0 1 1.874 0l8.383 5.316a1.751 1.751 0 0 1 0 2.956l-8.383 5.316a1.749 1.749 0 0 1-1.874 0L2.68 9.728a1.751 1.751 0 0 1 0-2.956Zm1.071 1.267a.25.25 0 0 0-.268 0L3.483 8.039a.25.25 0 0 0 0 .422l8.383 5.316a.25.25 0 0 0 .268 0l8.383-5.316a.25.25 0 0 0 0-.422Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.867 12.324a.75.75 0 0 1 1.035-.232l8.964 5.685a.25.25 0 0 0 .268 0l8.964-5.685a.75.75 0 0 1 .804 1.267l-8.965 5.685a1.749 1.749 0 0 1-1.874 0l-8.965-5.685a.75.75 0 0 1-.231-1.035Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.867 16.324a.75.75 0 0 1 1.035-.232l8.964 5.685a.25.25 0 0 0 .268 0l8.964-5.685a.75.75 0 0 1 .804 1.267l-8.965 5.685a1.749 1.749 0 0 1-1.874 0l-8.965-5.685a.75.75 0 0 1-.231-1.035Z" }, "children": [] } ] } } } }, "star": { "name": "star", "keywords": [ "save", "remember", "like" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 .25a.75.75 0 0 1 .673.418l3.058 6.197 6.839.994a.75.75 0 0 1 .415 1.279l-4.948 4.823 1.168 6.811a.751.751 0 0 1-1.088.791L12 18.347l-6.117 3.216a.75.75 0 0 1-1.088-.79l1.168-6.812-4.948-4.823a.75.75 0 0 1 .416-1.28l6.838-.993L11.328.668A.75.75 0 0 1 12 .25Zm0 2.445L9.44 7.882a.75.75 0 0 1-.565.41l-5.725.832 4.143 4.038a.748.748 0 0 1 .215.664l-.978 5.702 5.121-2.692a.75.75 0 0 1 .698 0l5.12 2.692-.977-5.702a.748.748 0 0 1 .215-.664l4.143-4.038-5.725-.831a.75.75 0 0 1-.565-.41L12 2.694Z" }, "children": [] } ] } } } }, "star-fill": { "name": "star-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.672.668 3.059 6.197 6.838.993a.75.75 0 0 1 .416 1.28l-4.948 4.823 1.168 6.812a.75.75 0 0 1-1.088.79L12 18.347l-6.116 3.216a.75.75 0 0 1-1.088-.791l1.168-6.811-4.948-4.823a.749.749 0 0 1 .416-1.279l6.838-.994L11.327.668a.75.75 0 0 1 1.345 0Z" }, "children": [] } ] } } } }, "stop": { "name": "stop", "keywords": [ "block", "spam", "report" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 7a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-1.5 0v-4.5A.75.75 0 0 1 12 7Zm0 10a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.328 1.47a.749.749 0 0 1 .53-.22h8.284c.199 0 .389.079.53.22l5.858 5.858c.141.14.22.33.22.53v8.284a.749.749 0 0 1-.22.53l-5.858 5.858a.749.749 0 0 1-.53.22H7.858a.749.749 0 0 1-.53-.22L1.47 16.672a.749.749 0 0 1-.22-.53V7.858c0-.199.079-.389.22-.53Zm.84 1.28L2.75 8.169v7.662l5.419 5.419h7.662l5.419-5.418V8.168L15.832 2.75Z" }, "children": [] } ] } } } }, "stopwatch": { "name": "stopwatch", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.75.75A.75.75 0 0 1 6.5 0h3a.75.75 0 0 1 0 1.5h-.75v1l-.001.041a6.724 6.724 0 0 1 3.464 1.435l.007-.006.75-.75a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-.75.75-.006.007a6.75 6.75 0 1 1-10.548 0L2.72 5.03l-.75-.75a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l.75.75.007.006A6.72 6.72 0 0 1 7.25 2.541V1.5H6.5a.75.75 0 0 1-.75-.75ZM8 14.5a5.25 5.25 0 1 0-.001-10.501A5.25 5.25 0 0 0 8 14.5Zm.389-6.7 1.33-1.33a.75.75 0 1 1 1.061 1.06L9.45 8.861A1.503 1.503 0 0 1 8 10.75a1.499 1.499 0 1 1 .389-2.95Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.25 0h3.5a.75.75 0 0 1 0 1.5h-1v1.278a9.954 9.954 0 0 1 5.636 2.276L19.72 3.72a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.315 1.316A9.959 9.959 0 0 1 22 12.75c0 5.523-4.477 10-10 10s-10-4.477-10-10a9.959 9.959 0 0 1 2.535-6.654L3.22 4.78a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l1.335 1.334a9.958 9.958 0 0 1 5.635-2.276V1.5h-1a.75.75 0 0 1 0-1.5ZM12 21.25a8.5 8.5 0 1 0-.001-17.001A8.5 8.5 0 0 0 12 21.25Zm4.03-12.53a.75.75 0 0 1 0 1.06l-2.381 2.382a1.75 1.75 0 1 1-1.06-1.06l2.38-2.382a.75.75 0 0 1 1.061 0Z" }, "children": [] } ] } } } }, "strikethrough": { "name": "strikethrough", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.055 8.5c.524.536.815 1.257.811 2.007a3.133 3.133 0 0 1-1.12 2.408C9.948 13.597 8.748 14 7.096 14c-1.706 0-3.104-.607-3.902-1.377a.751.751 0 0 1 1.042-1.079c.48.463 1.487.956 2.86.956 1.422 0 2.232-.346 2.676-.726.435-.372.594-.839.594-1.267 0-.472-.208-.857-.647-1.197-.448-.346-1.116-.623-1.951-.81H1.75a.75.75 0 0 1 0-1.5h12.5a.75.75 0 0 1 0 1.5ZM7.581 3.25c-2.036 0-2.778 1.082-2.778 1.786 0 .055.002.107.006.157a.75.75 0 0 1-1.496.114 3.506 3.506 0 0 1-.01-.271c0-1.832 1.75-3.286 4.278-3.286 1.418 0 2.721.58 3.514 1.093a.75.75 0 1 1-.814 1.26c-.64-.414-1.662-.853-2.7-.853Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m16.533 12.5.054.043c.93.75 1.538 1.77 1.538 3.066a4.13 4.13 0 0 1-1.479 3.177c-1.058.904-2.679 1.464-4.974 1.464-2.35 0-4.252-.837-5.318-1.865a.75.75 0 1 1 1.042-1.08c.747.722 2.258 1.445 4.276 1.445 2.065 0 3.296-.504 3.999-1.105a2.63 2.63 0 0 0 .954-2.036c0-.764-.337-1.38-.979-1.898-.649-.523-1.598-.931-2.76-1.211H3.75a.75.75 0 0 1 0-1.5h16.5a.75.75 0 0 1 0 1.5ZM12.36 5C9.37 5 8.105 6.613 8.105 7.848c0 .411.072.744.193 1.02a.75.75 0 0 1-1.373.603 3.988 3.988 0 0 1-.32-1.623c0-2.363 2.271-4.348 5.755-4.348 1.931 0 3.722.794 4.814 1.5a.75.75 0 1 1-.814 1.26c-.94-.607-2.448-1.26-4-1.26Z" }, "children": [] } ] } } } }, "sun": { "name": "sun", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8 12a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0-1.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Zm5.657-8.157a.75.75 0 0 1 0 1.061l-1.061 1.06a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.06-1.06a.75.75 0 0 1 1.06 0Zm-9.193 9.193a.75.75 0 0 1 0 1.06l-1.06 1.061a.75.75 0 1 1-1.061-1.06l1.06-1.061a.75.75 0 0 1 1.061 0ZM8 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 8 0ZM3 8a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 3 8Zm13 0a.75.75 0 0 1-.75.75h-1.5a.75.75 0 0 1 0-1.5h1.5A.75.75 0 0 1 16 8Zm-8 5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 8 13Zm3.536-1.464a.75.75 0 0 1 1.06 0l1.061 1.06a.75.75 0 0 1-1.06 1.061l-1.061-1.06a.75.75 0 0 1 0-1.061ZM2.343 2.343a.75.75 0 0 1 1.061 0l1.06 1.061a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-1.06-1.06a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 19a7 7 0 1 1 0-14 7 7 0 0 1 0 14Zm0-1.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 1 0 0 11Zm-5.657.157a.75.75 0 0 1 0 1.06l-1.768 1.768a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734l1.767-1.768a.75.75 0 0 1 1.061 0ZM3.515 3.515a.75.75 0 0 1 1.06 0l1.768 1.768a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L3.515 4.575a.75.75 0 0 1 0-1.06ZM12 0a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0V.75A.75.75 0 0 1 12 0ZM4 12a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h2.5A.75.75 0 0 1 4 12Zm8 8a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 12 20Zm12-8a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h2.5A.75.75 0 0 1 24 12Zm-6.343 5.657a.75.75 0 0 1 1.06 0l1.768 1.768a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018l-1.768-1.767a.75.75 0 0 1 0-1.061Zm2.828-14.142a.75.75 0 0 1 0 1.06l-1.768 1.768a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l1.767-1.768a.75.75 0 0 1 1.061 0Z" }, "children": [] } ] } } } }, "sync": { "name": "sync", "keywords": [ "cycle", "refresh", "loop" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.705 8.005a.75.75 0 0 1 .834.656 5.5 5.5 0 0 0 9.592 2.97l-1.204-1.204a.25.25 0 0 1 .177-.427h3.646a.25.25 0 0 1 .25.25v3.646a.25.25 0 0 1-.427.177l-1.38-1.38A7.002 7.002 0 0 1 1.05 8.84a.75.75 0 0 1 .656-.834ZM8 2.5a5.487 5.487 0 0 0-4.131 1.869l1.204 1.204A.25.25 0 0 1 4.896 6H1.25A.25.25 0 0 1 1 5.75V2.104a.25.25 0 0 1 .427-.177l1.38 1.38A7.002 7.002 0 0 1 14.95 7.16a.75.75 0 0 1-1.49.178A5.5 5.5 0 0 0 8 2.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.38 8A9.502 9.502 0 0 1 12 2.5a9.502 9.502 0 0 1 9.215 7.182.75.75 0 1 0 1.456-.364C21.473 4.539 17.15 1 12 1a10.995 10.995 0 0 0-9.5 5.452V4.75a.75.75 0 0 0-1.5 0V8.5a1 1 0 0 0 1 1h3.75a.75.75 0 0 0 0-1.5H3.38Zm-.595 6.318a.75.75 0 0 0-1.455.364C2.527 19.461 6.85 23 12 23c4.052 0 7.592-2.191 9.5-5.451v1.701a.75.75 0 0 0 1.5 0V15.5a1 1 0 0 0-1-1h-3.75a.75.75 0 0 0 0 1.5h2.37A9.502 9.502 0 0 1 12 21.5c-4.446 0-8.181-3.055-9.215-7.182Z" }, "children": [] } ] } } } }, "tab": { "name": "tab", "keywords": [], "heights": { "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M22 4.25a.75.75 0 0 0-1.5 0v15a.75.75 0 0 0 1.5 0v-15Zm-9.72 14.28a.75.75 0 1 1-1.06-1.06l4.97-4.97H1.75a.75.75 0 0 1 0-1.5h14.44l-4.97-4.97a.75.75 0 0 1 1.06-1.06l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25Z" }, "children": [] } ] } } } }, "tab-external": { "name": "tab-external", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.25 4a.25.25 0 0 0-.25.25v9a.75.75 0 0 1-.75.75H.75a.75.75 0 0 1 0-1.5h.75V4.25c0-.966.784-1.75 1.75-1.75h9.5c.966 0 1.75.784 1.75 1.75v8.25h.75a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75v-9a.25.25 0 0 0-.25-.25h-9.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m7.97 7.97-2.75 2.75a.75.75 0 1 0 1.06 1.06l2.75-2.75 1.543 1.543a.25.25 0 0 0 .427-.177V6.25a.25.25 0 0 0-.25-.25H6.604a.25.25 0 0 0-.177.427L7.97 7.97Z" }, "children": [] } ] } } } }, "table": { "name": "table", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v12.5A1.75 1.75 0 0 1 14.25 16H1.75A1.75 1.75 0 0 1 0 14.25ZM6.5 6.5v8h7.75a.25.25 0 0 0 .25-.25V6.5Zm8-1.5V1.75a.25.25 0 0 0-.25-.25H6.5V5Zm-13 1.5v7.75c0 .138.112.25.25.25H5v-8ZM5 5V1.5H1.75a.25.25 0 0 0-.25.25V5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25ZM9 9v11.5h11.25a.25.25 0 0 0 .25-.25V9Zm11.5-1.5V3.75a.25.25 0 0 0-.25-.25H9v4ZM3.5 9v11.25c0 .138.112.25.25.25H7.5V9Zm4-1.5v-4H3.75a.25.25 0 0 0-.25.25V7.5Z" }, "children": [] } ] } } } }, "tag": { "name": "tag", "keywords": [ "release" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 7.775V2.75C1 1.784 1.784 1 2.75 1h5.025c.464 0 .91.184 1.238.513l6.25 6.25a1.75 1.75 0 0 1 0 2.474l-5.026 5.026a1.75 1.75 0 0 1-2.474 0l-6.25-6.25A1.752 1.752 0 0 1 1 7.775Zm1.5 0c0 .066.026.13.073.177l6.25 6.25a.25.25 0 0 0 .354 0l5.025-5.025a.25.25 0 0 0 0-.354l-6.25-6.25a.25.25 0 0 0-.177-.073H2.75a.25.25 0 0 0-.25.25ZM6 5a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.75 6.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.5 1h8.44a1.5 1.5 0 0 1 1.06.44l10.25 10.25a1.5 1.5 0 0 1 0 2.12l-8.44 8.44a1.5 1.5 0 0 1-2.12 0L1.44 12A1.497 1.497 0 0 1 1 10.94V2.5A1.5 1.5 0 0 1 2.5 1Zm0 1.5v8.44l10.25 10.25 8.44-8.44L10.94 2.5Z" }, "children": [] } ] } } } }, "tasklist": { "name": "tasklist", "keywords": [ "todo" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2 2h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V3a1 1 0 0 1 1-1Zm4.655 8.595a.75.75 0 0 1 0 1.06L4.03 14.28a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.095-2.095a.75.75 0 0 1 1.06 0ZM9.75 2.5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5Zm0 5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5Zm0 5h5.5a.75.75 0 0 1 0 1.5h-5.5a.75.75 0 0 1 0-1.5Zm-7.25-9v3h3v-3Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3 6a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1Zm1.5 4.5h4v-4h-4Zm8.25-5a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm0 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm0 6a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5h-7.5Zm-2.97-2.53a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 1 1 1.06-1.06l1.47 1.47 2.97-2.97a.75.75 0 0 1 1.06 0Z" }, "children": [] } ] } } } }, "telescope": { "name": "telescope", "keywords": [ "science", "space", "look", "view", "explore" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.184 1.143v-.001l1.422 2.464a1.75 1.75 0 0 1-.757 2.451L3.104 11.713a1.75 1.75 0 0 1-2.275-.702l-.447-.775a1.75 1.75 0 0 1 .53-2.32L11.682.573a1.748 1.748 0 0 1 2.502.57Zm-4.709 9.32h-.001l2.644 3.863a.75.75 0 1 1-1.238.848l-1.881-2.75v2.826a.75.75 0 0 1-1.5 0v-2.826l-1.881 2.75a.75.75 0 1 1-1.238-.848l2.049-2.992a.746.746 0 0 1 .293-.253l1.809-.87a.749.749 0 0 1 .944.252ZM9.436 3.92h-.001l-4.97 3.39.942 1.63 5.42-2.61Zm3.091-2.108h.001l-1.85 1.26 1.505 2.605 2.016-.97a.247.247 0 0 0 .13-.151.247.247 0 0 0-.022-.199l-1.422-2.464a.253.253 0 0 0-.161-.119.254.254 0 0 0-.197.038ZM1.756 9.157a.25.25 0 0 0-.075.33l.447.775a.25.25 0 0 0 .325.1l1.598-.769-.83-1.436-1.465 1Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a1.999 1.999 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm5.263-4.066 1.987 3.44 8.712-4.135-2.857-4.76Zm12.06-1.34.001-.001 3.49-1.656a.498.498 0 0 0 .212-.712l-2.826-4.644a.503.503 0 0 0-.713-.151l-3.148 2.19Zm-13.295 2.2L1.854 13.72a.5.5 0 0 0-.147.66l1.105 1.915a.5.5 0 0 0 .648.201l2.838-1.347ZM17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.278l-2.75 1.25a.75.75 0 0 0-.318.274l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226Z" }, "children": [] } ] } } } }, "telescope-fill": { "name": "telescope-fill", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.905.42a1.5 1.5 0 0 1 2.144.49l1.692 2.93a1.5 1.5 0 0 1-.649 2.102L2.895 11.815a1.5 1.5 0 0 1-1.95-.602l-.68-1.176a1.5 1.5 0 0 1 .455-1.99L11.905.422Zm-3.374 9.79a.75.75 0 0 1 .944.253l2.644 3.864a.751.751 0 0 1-1.238.847L9 12.424v2.826a.75.75 0 0 1-1.5 0v-2.826l-1.881 2.75a.75.75 0 1 1-1.238-.848l2.048-2.992a.752.752 0 0 1 .293-.252l1.81-.871Zm2.476-3.965v-.001l1.356-.653-1.52-2.631-1.243.848ZM3.279 8.119l.835 1.445 1.355-.653-.947-1.64Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.277l-2.75 1.25a.75.75 0 0 0-.318.273l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226ZM.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a1.999 1.999 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm13.105-9.521 2.857 4.76 1.361-.646-2.984-4.973Zm-7.842 5.455-1.235.86 1.862 3.225 1.36-.645Z" }, "children": [] } ] } } } }, "terminal": { "name": "terminal", "keywords": [ "code", "ops", "shell" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 14.25 15H1.75A1.75 1.75 0 0 1 0 13.25Zm1.75-.25a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V2.75a.25.25 0 0 0-.25-.25ZM7.25 8a.749.749 0 0 1-.22.53l-2.25 2.25a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L5.44 8 3.72 6.28a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l2.25 2.25c.141.14.22.331.22.53Zm1.5 1.5h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.25 12a.75.75 0 0 1-.22.53l-2.75 2.75a.75.75 0 0 1-1.06-1.06L7.44 12 5.22 9.78a.75.75 0 1 1 1.06-1.06l2.75 2.75c.141.14.22.331.22.53Zm2 2a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "three-bars": { "name": "three-bars", "keywords": [ "hamburger", "menu", "dropdown" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 2.75A.75.75 0 0 1 1.75 2h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 2.75Zm0 5A.75.75 0 0 1 1.75 7h12.5a.75.75 0 0 1 0 1.5H1.75A.75.75 0 0 1 1 7.75ZM1.75 12h12.5a.75.75 0 0 1 0 1.5H1.75a.75.75 0 0 1 0-1.5Z" }, "children": [] } ] } } } }, "thumbsdown": { "name": "thumbsdown", "keywords": [ "thumb", "thumbsdown", "rejected", "dislike" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.083 15.986c-.763-.087-1.499-.295-2.011-.884-.504-.581-.655-1.378-.655-2.299 0-.468.087-1.12.157-1.638l.015-.112H3.167c-.603 0-1.174-.086-1.669-.334a2.415 2.415 0 0 1-1.136-1.2c-.454-.998-.438-2.447-.188-4.316l.04-.306C.32 4.108.41 3.424.526 2.864c.132-.63.316-1.209.669-1.672C1.947.205 3.211.053 4.917.053c1.848 0 3.234.332 4.388.652l.474.133c.658.187 1.201.341 1.726.415a1.75 1.75 0 0 1 1.662-1.2h1c.966 0 1.75.784 1.75 1.75v7.5a1.75 1.75 0 0 1-1.75 1.75h-1a1.75 1.75 0 0 1-1.514-.872c-.259.105-.59.268-.919.508-.671.491-1.317 1.285-1.317 2.614v.5c0 1.201-.994 2.336-2.334 2.183Zm4.334-13.232c-.706-.089-1.39-.284-2.072-.479l-.441-.125c-1.096-.304-2.335-.597-3.987-.597-1.794 0-2.28.222-2.529.548-.147.193-.275.505-.393 1.07-.105.502-.188 1.124-.295 1.93l-.04.3c-.25 1.882-.19 2.933.067 3.497a.923.923 0 0 0 .443.48c.208.104.52.175.997.175h1.75c.685 0 1.295.577 1.205 1.335-.022.192-.049.39-.075.586-.066.488-.13.97-.13 1.329 0 .808.144 1.15.288 1.316.137.157.401.303 1.048.377.307.035.664-.237.664-.693v-.5c0-1.922.978-3.127 1.932-3.825a5.878 5.878 0 0 1 1.568-.809Zm1.75 6.798h1a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25h-1a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.596 21.957c-1.301.092-2.303-.986-2.303-2.206v-1.053c0-2.666-1.813-3.785-2.774-4.2a1.884 1.884 0 0 0-.523-.13A1.75 1.75 0 0 1 5.25 16h-1.5A1.75 1.75 0 0 1 2 14.25V3.75C2 2.784 2.784 2 3.75 2h1.5a1.75 1.75 0 0 1 1.742 1.58c.838-.06 1.667-.296 2.69-.586l.602-.17C11.748 2.419 13.497 2 15.828 2c2.188 0 3.693.204 4.583 1.372.422.554.65 1.255.816 2.05.148.708.262 1.57.396 2.58l.051.39c.319 2.386.328 4.18-.223 5.394-.293.644-.743 1.125-1.355 1.431-.59.296-1.284.404-2.036.404h-2.05l.056.429c.025.18.05.372.076.572.06.483.117 1.006.117 1.438 0 1.245-.222 2.253-.92 2.942-.684.674-1.668.879-2.743.955ZM7 5.082v7.779c.383.025.759.113 1.113.26 1.192.514 3.68 2.027 3.68 5.577v1.053c0 .436.347.734.698.71 1.021-.072 1.52-.258 1.795-.528.26-.256.473-.748.473-1.873 0-.328-.045-.768-.105-1.25l-.07-.527c-.04-.297-.079-.59-.105-.834-.082-.758.53-1.328 1.211-1.328h2.37c.625 0 1.06-.092 1.365-.245.285-.142.5-.359.66-.711.355-.78.422-2.176.102-4.574l-.05-.385c-.137-1.027-.243-1.827-.379-2.477-.152-.73-.324-1.165-.54-1.448-.386-.507-1.113-.781-3.39-.781-2.136 0-3.736.379-5.142.771-.191.052-.38.106-.568.16-1.039.296-2.059.587-3.118.651ZM3.75 3.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25V3.75a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } } } }, "thumbsup": { "name": "thumbsup", "keywords": [ "thumb", "thumbsup", "prop", "ship", "like" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M8.834.066c.763.087 1.5.295 2.01.884.505.581.656 1.378.656 2.3 0 .467-.087 1.119-.157 1.637L11.328 5h1.422c.603 0 1.174.085 1.668.333.508.254.911.679 1.137 1.2.453.998.438 2.447.188 4.316l-.04.306c-.105.79-.195 1.473-.313 2.033-.131.63-.315 1.209-.668 1.672C13.97 15.847 12.706 16 11 16c-1.848 0-3.234-.333-4.388-.653-.165-.045-.323-.09-.475-.133-.658-.186-1.2-.34-1.725-.415A1.75 1.75 0 0 1 2.75 16h-1A1.75 1.75 0 0 1 0 14.25v-7.5C0 5.784.784 5 1.75 5h1a1.75 1.75 0 0 1 1.514.872c.258-.105.59-.268.918-.508C5.853 4.874 6.5 4.079 6.5 2.75v-.5c0-1.202.994-2.337 2.334-2.184ZM4.5 13.3c.705.088 1.39.284 2.072.478l.441.125c1.096.305 2.334.598 3.987.598 1.794 0 2.28-.223 2.528-.549.147-.193.276-.505.394-1.07.105-.502.188-1.124.295-1.93l.04-.3c.25-1.882.189-2.933-.068-3.497a.921.921 0 0 0-.442-.48c-.208-.104-.52-.174-.997-.174H11c-.686 0-1.295-.577-1.206-1.336.023-.192.05-.39.076-.586.065-.488.13-.97.13-1.328 0-.809-.144-1.15-.288-1.316-.137-.158-.402-.304-1.048-.378C8.357 1.521 8 1.793 8 2.25v.5c0 1.922-.978 3.128-1.933 3.825a5.831 5.831 0 0 1-1.567.81ZM2.75 6.5h-1a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h1a.25.25 0 0 0 .25-.25v-7.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.596 2.043c1.075.076 2.059.281 2.743.956.698.688.92 1.696.92 2.941 0 .432-.057.955-.117 1.438-.026.2-.051.392-.076.572l-.056.429h2.05c.752 0 1.446.108 2.036.404.612.306 1.062.787 1.355 1.431.551 1.214.542 3.008.223 5.394l-.051.39c-.134 1.01-.248 1.872-.396 2.58-.166.795-.394 1.496-.816 2.05-.89 1.168-2.395 1.372-4.583 1.372-2.331 0-4.08-.418-5.544-.824l-.602-.17c-1.023-.29-1.852-.526-2.69-.586A1.75 1.75 0 0 1 5.25 22h-1.5A1.75 1.75 0 0 1 2 20.25V9.75C2 8.784 2.784 8 3.75 8h1.5a1.75 1.75 0 0 1 1.746 1.633 1.85 1.85 0 0 0 .523-.131c.961-.415 2.774-1.534 2.774-4.2V4.249c0-1.22 1.002-2.298 2.303-2.206ZM7 18.918c1.059.064 2.079.355 3.118.652l.568.16c1.406.39 3.006.77 5.142.77 2.277 0 3.004-.274 3.39-.781.216-.283.388-.718.54-1.448.136-.65.242-1.45.379-2.477l.05-.384c.32-2.4.253-3.795-.102-4.575-.16-.352-.375-.568-.66-.711-.305-.153-.74-.245-1.365-.245h-2.37c-.681 0-1.293-.57-1.211-1.328.026-.243.065-.537.105-.834l.07-.527c.06-.482.105-.921.105-1.25 0-1.125-.213-1.617-.473-1.873-.275-.27-.774-.455-1.795-.528-.351-.024-.698.274-.698.71v1.053c0 3.55-2.488 5.063-3.68 5.577-.372.16-.754.232-1.113.26ZM3.75 20.5h1.5a.25.25 0 0 0 .25-.25V9.75a.25.25 0 0 0-.25-.25h-1.5a.25.25 0 0 0-.25.25v10.5c0 .138.112.25.25.25Z" }, "children": [] } ] } } } }, "tools": { "name": "tools", "keywords": [ "screwdriver", "wrench", "settings" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.433 2.304A4.492 4.492 0 0 0 3.5 6c0 1.598.832 3.002 2.09 3.802.518.328.929.923.902 1.64v.008l-.164 3.337a.75.75 0 1 1-1.498-.073l.163-3.33c.002-.085-.05-.216-.207-.316A5.996 5.996 0 0 1 2 6a5.993 5.993 0 0 1 2.567-4.92 1.482 1.482 0 0 1 1.673-.04c.462.296.76.827.76 1.423v2.82c0 .082.041.16.11.206l.75.51a.25.25 0 0 0 .28 0l.75-.51A.249.249 0 0 0 9 5.282V2.463c0-.596.298-1.127.76-1.423a1.482 1.482 0 0 1 1.673.04A5.993 5.993 0 0 1 14 6a5.996 5.996 0 0 1-2.786 5.068c-.157.1-.209.23-.207.315l.163 3.33a.752.752 0 0 1-1.094.714.75.75 0 0 1-.404-.64l-.164-3.345c-.027-.717.384-1.312.902-1.64A4.495 4.495 0 0 0 12.5 6a4.492 4.492 0 0 0-1.933-3.696c-.024.017-.067.067-.067.16v2.818a1.75 1.75 0 0 1-.767 1.448l-.75.51a1.75 1.75 0 0 1-1.966 0l-.75-.51A1.75 1.75 0 0 1 5.5 5.282V2.463c0-.092-.043-.142-.067-.159Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.875 2.292a.114.114 0 0 0-.032.018A7.239 7.239 0 0 0 4.75 8.25a7.248 7.248 0 0 0 3.654 6.297c.57.327.982.955.941 1.682v.002l-.317 6.058a.75.75 0 1 1-1.498-.078l.317-6.062v-.004c.006-.09-.047-.215-.188-.296A8.749 8.749 0 0 1 3.25 8.25a8.738 8.738 0 0 1 3.732-7.169 1.547 1.547 0 0 1 1.709-.064c.484.292.809.835.809 1.46v4.714a.25.25 0 0 0 .119.213l2.25 1.385c.08.05.182.05.262 0l2.25-1.385a.25.25 0 0 0 .119-.213V2.478c0-.626.325-1.169.81-1.461a1.547 1.547 0 0 1 1.708.064 8.741 8.741 0 0 1 3.732 7.17 8.747 8.747 0 0 1-4.41 7.598c-.14.081-.193.206-.188.296v.004l.318 6.062a.75.75 0 1 1-1.498.078l-.317-6.058v-.002c-.041-.727.37-1.355.94-1.682A7.247 7.247 0 0 0 19.25 8.25a7.239 7.239 0 0 0-3.093-5.94.114.114 0 0 0-.032-.018l-.01-.001c-.003 0-.014 0-.031.01-.036.022-.084.079-.084.177V7.19c0 .608-.315 1.172-.833 1.49l-2.25 1.385a1.75 1.75 0 0 1-1.834 0l-2.25-1.384A1.752 1.752 0 0 1 8 7.192V2.477c0-.098-.048-.155-.084-.176a.068.068 0 0 0-.031-.011l-.01.001Z" }, "children": [] } ] } } } }, "tracked-by-closed-completed": { "name": "tracked-by-closed-completed", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 8a6.5 6.5 0 1 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.677 12.427 2.896 2.896a.25.25 0 0 0 .427-.177V13h3.25a.75.75 0 0 0 0-1.5H12V9.354a.25.25 0 0 0-.427-.177l-2.896 2.896a.25.25 0 0 0 0 .354ZM11.28 6.78a.749.749 0 1 0-1.06-1.06L7.25 8.689 5.78 7.22a.749.749 0 1 0-1.06 1.06l2 2a.749.749 0 0 0 1.06 0l3.5-3.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5.75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23l-3.728 3.314a.307.307 0 0 0 0 .46Zm3.521-8.2a.749.749 0 1 0-1.06-1.06l-5.97 5.969-2.47-2.469a.749.749 0 1 0-1.06 1.06l3 3a.749.749 0 0 0 1.06 0l6.5-6.5Z" }, "children": [] } ] } } } }, "tracked-by-closed-not-planned": { "name": "tracked-by-closed-not-planned", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.5 8a6.5 6.5 0 1 1 13 0A.75.75 0 0 0 16 8a8 8 0 1 0-8 8 .75.75 0 0 0 0-1.5A6.5 6.5 0 0 1 1.5 8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.677 12.427 2.896 2.896a.25.25 0 0 0 .427-.177V13h3.25a.75.75 0 0 0 0-1.5H12V9.354a.25.25 0 0 0-.427-.177l-2.896 2.896a.25.25 0 0 0 0 .354ZM11.28 5.78a.749.749 0 1 0-1.06-1.06l-5.5 5.5a.749.749 0 1 0 1.06 1.06l5.5-5.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 2.5A9.5 9.5 0 0 0 2.5 12a9.5 9.5 0 0 0 9.5 9.5.75.75 0 0 1 0 1.5C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11a.75.75 0 0 1-1.5 0A9.5 9.5 0 0 0 12 2.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m13.759 17.48 3.728 3.314a.308.308 0 0 0 .513-.23V18h4.25a.75.75 0 0 0 0-1.5H18v-2.564a.308.308 0 0 0-.513-.23l-3.728 3.314a.307.307 0 0 0 0 .46Zm3.521-9.7a.749.749 0 1 0-1.06-1.06l-9.5 9.5a.749.749 0 1 0 1.06 1.06l9.5-9.5Z" }, "children": [] } ] } } } }, "trash": { "name": "trash", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11 1.75V3h2.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H5V1.75C5 .784 5.784 0 6.75 0h2.5C10.216 0 11 .784 11 1.75ZM4.496 6.675l.66 6.6a.25.25 0 0 0 .249.225h5.19a.25.25 0 0 0 .249-.225l.66-6.6a.75.75 0 0 1 1.492.149l-.66 6.6A1.748 1.748 0 0 1 10.595 15h-5.19a1.75 1.75 0 0 1-1.741-1.575l-.66-6.6a.75.75 0 1 1 1.492-.15ZM6.5 1.75V3h3V1.75a.25.25 0 0 0-.25-.25h-2.5a.25.25 0 0 0-.25.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16 1.75V3h5.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H8V1.75C8 .784 8.784 0 9.75 0h4.5C15.216 0 16 .784 16 1.75Zm-6.5 0V3h5V1.75a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25ZM4.997 6.178a.75.75 0 1 0-1.493.144L4.916 20.92a1.75 1.75 0 0 0 1.742 1.58h10.684a1.75 1.75 0 0 0 1.742-1.581l1.413-14.597a.75.75 0 0 0-1.494-.144l-1.412 14.596a.25.25 0 0 1-.249.226H6.658a.25.25 0 0 1-.249-.226L4.997 6.178Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.206 7.501a.75.75 0 0 1 .793.705l.5 8.5A.75.75 0 1 1 9 16.794l-.5-8.5a.75.75 0 0 1 .705-.793Zm6.293.793A.75.75 0 1 0 14 8.206l-.5 8.5a.75.75 0 0 0 1.498.088l.5-8.5Z" }, "children": [] } ] } } } }, "triangle-down": { "name": "triangle-down", "keywords": [ "arrow", "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m4.427 7.427 3.396 3.396a.25.25 0 0 0 .354 0l3.396-3.396A.25.25 0 0 0 11.396 7H4.604a.25.25 0 0 0-.177.427Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.646 15.146 5.854 9.354a.5.5 0 0 1 .353-.854h11.586a.5.5 0 0 1 .353.854l-5.793 5.792a.5.5 0 0 1-.707 0Z" }, "children": [] } ] } } } }, "triangle-left": { "name": "triangle-left", "keywords": [ "arrow", "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.573 4.427 6.177 7.823a.25.25 0 0 0 0 .354l3.396 3.396a.25.25 0 0 0 .427-.177V4.604a.25.25 0 0 0-.427-.177Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.854 11.646 5.792-5.792a.5.5 0 0 1 .854.353v11.586a.5.5 0 0 1-.854.353l-5.792-5.792a.5.5 0 0 1 0-.708Z" }, "children": [] } ] } } } }, "triangle-right": { "name": "triangle-right", "keywords": [ "arrow", "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m6.427 4.427 3.396 3.396a.25.25 0 0 1 0 .354l-3.396 3.396A.25.25 0 0 1 6 11.396V4.604a.25.25 0 0 1 .427-.177Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m15.146 12.354-5.792 5.792a.5.5 0 0 1-.854-.353V6.207a.5.5 0 0 1 .854-.353l5.792 5.792a.5.5 0 0 1 0 .708Z" }, "children": [] } ] } } } }, "triangle-up": { "name": "triangle-up", "keywords": [ "arrow", "point", "direction" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m4.427 9.573 3.396-3.396a.25.25 0 0 1 .354 0l3.396 3.396a.25.25 0 0 1-.177.427H4.604a.25.25 0 0 1-.177-.427Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m12.354 8.854 5.792 5.792a.5.5 0 0 1-.353.854H6.207a.5.5 0 0 1-.353-.854l5.792-5.792a.5.5 0 0 1 .708 0Z" }, "children": [] } ] } } } }, "trophy": { "name": "trophy", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.217 6.962A3.75 3.75 0 0 1 0 3.25v-.5C0 1.784.784 1 1.75 1h1.356c.228-.585.796-1 1.462-1h6.864c.647 0 1.227.397 1.462 1h1.356c.966 0 1.75.784 1.75 1.75v.5a3.75 3.75 0 0 1-3.217 3.712 5.014 5.014 0 0 1-2.771 3.117l.144 1.446c.005.05.03.12.114.204.086.087.217.17.373.227.283.103.618.274.89.568.285.31.467.723.467 1.226v.75h1.25a.75.75 0 0 1 0 1.5H2.75a.75.75 0 0 1 0-1.5H4v-.75c0-.503.182-.916.468-1.226.27-.294.606-.465.889-.568.139-.048.266-.126.373-.227.084-.085.109-.153.114-.204l.144-1.446a5.015 5.015 0 0 1-2.77-3.117ZM4.5 1.568V5.5a3.5 3.5 0 1 0 7 0V1.568a.068.068 0 0 0-.068-.068H4.568a.068.068 0 0 0-.068.068Zm2.957 8.902-.12 1.204c-.093.925-.858 1.47-1.467 1.691a.766.766 0 0 0-.3.176c-.037.04-.07.093-.07.21v.75h5v-.75c0-.117-.033-.17-.07-.21a.766.766 0 0 0-.3-.176c-.609-.221-1.374-.766-1.466-1.69l-.12-1.204a5.064 5.064 0 0 1-1.087 0ZM13 2.5v2.872a2.25 2.25 0 0 0 1.5-2.122v-.5a.25.25 0 0 0-.25-.25H13Zm-10 0H1.75a.25.25 0 0 0-.25.25v.5c0 .98.626 1.813 1.5 2.122Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.09 10.121A5.251 5.251 0 0 1 1 5V3.75C1 2.784 1.784 2 2.75 2h2.364c.236-.586.81-1 1.48-1h10.812c.67 0 1.244.414 1.48 1h2.489c.966 0 1.75.784 1.75 1.75V5a5.252 5.252 0 0 1-4.219 5.149 7.01 7.01 0 0 1-4.644 5.478l.231 3.003a.5.5 0 0 0 .034.031c.079.065.303.203.836.282.838.124 1.637.81 1.637 1.807v.75h2.25a.75.75 0 0 1 0 1.5H4.75a.75.75 0 0 1 0-1.5H7v-.75c0-.996.8-1.683 1.637-1.807.533-.08.757-.217.836-.282a.5.5 0 0 0 .034-.031l.231-3.003A7.012 7.012 0 0 1 5.09 10.12ZM6.5 2.594V9a5.5 5.5 0 1 0 11 0V2.594a.094.094 0 0 0-.094-.094H6.594a.094.094 0 0 0-.094.094Zm4.717 13.363-.215 2.793-.001.021-.003.043a1.212 1.212 0 0 1-.022.147c-.05.237-.194.567-.553.86-.348.286-.853.5-1.566.605a.478.478 0 0 0-.274.136.264.264 0 0 0-.083.188v.75h7v-.75a.264.264 0 0 0-.083-.188.478.478 0 0 0-.274-.136c-.713-.105-1.218-.32-1.567-.604-.358-.294-.502-.624-.552-.86a1.22 1.22 0 0 1-.025-.19l-.001-.022-.215-2.793a7.069 7.069 0 0 1-1.566 0ZM19 8.578A3.751 3.751 0 0 0 21.625 5V3.75a.25.25 0 0 0-.25-.25H19ZM5 3.5H2.75a.25.25 0 0 0-.25.25V5A3.752 3.752 0 0 0 5 8.537Z" }, "children": [] } ] } } } }, "typography": { "name": "typography", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.71 10H2.332l-.874 2.498a.75.75 0 0 1-1.415-.496l3.39-9.688a1.217 1.217 0 0 1 2.302.018l3.227 9.681a.75.75 0 0 1-1.423.474Zm3.13-4.358C10.53 4.374 11.87 4 13 4c1.5 0 3 .939 3 2.601v5.649a.75.75 0 0 1-1.448.275C13.995 12.82 13.3 13 12.5 13c-.77 0-1.514-.231-2.078-.709-.577-.488-.922-1.199-.922-2.041 0-.694.265-1.411.887-1.944C11 7.78 11.88 7.5 13 7.5h1.5v-.899c0-.54-.5-1.101-1.5-1.101-.869 0-1.528.282-1.84.858a.75.75 0 1 1-1.32-.716ZM6.21 8.5 4.574 3.594 2.857 8.5Zm8.29.5H13c-.881 0-1.375.22-1.637.444-.253.217-.363.5-.363.806 0 .408.155.697.39.896.249.21.63.354 1.11.354.732 0 1.26-.209 1.588-.449.35-.257.412-.495.412-.551Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.414 15H3.586l-1.631 4.505a.75.75 0 1 1-1.41-.51l5.08-14.03a1.463 1.463 0 0 1 2.75 0l5.08 14.03a.75.75 0 1 1-1.411.51Zm4.532-5.098c.913-1.683 2.703-2.205 4.284-2.205 1.047 0 2.084.312 2.878.885.801.577 1.392 1.455 1.392 2.548v8.12a.75.75 0 0 1-1.5 0v-.06l-.044.025c-.893.52-2.096.785-3.451.785-1.051 0-2.048-.315-2.795-.948-.76-.643-1.217-1.578-1.217-2.702 0-.919.349-1.861 1.168-2.563.81-.694 2-1.087 3.569-1.087H22v-1.57c0-.503-.263-.967-.769-1.332-.513-.37-1.235-.6-2.001-.6-1.319 0-2.429.43-2.966 1.42a.75.75 0 0 1-1.318-.716ZM9.87 13.5 7 5.572 4.13 13.5Zm12.13.7h-2.77c-1.331 0-2.134.333-2.593.726a1.822 1.822 0 0 0-.644 1.424c0 .689.267 1.203.686 1.557.43.365 1.065.593 1.826.593 1.183 0 2.102-.235 2.697-.581.582-.34.798-.74.798-1.134Z" }, "children": [] } ] } } } }, "undo": { "name": "undo", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.22 6.28a.749.749 0 0 1 0-1.06l3.5-3.5a.749.749 0 1 1 1.06 1.06L3.561 5h7.188l.001.007L10.749 5c.058 0 .116.007.171.019A4.501 4.501 0 0 1 10.5 14H8.796a.75.75 0 0 1 0-1.5H10.5a3 3 0 1 0 0-6H3.561L5.78 8.72a.749.749 0 1 1-1.06 1.06l-3.5-3.5Z" }, "children": [] } ] } } } }, "unfold": { "name": "unfold", "keywords": [ "expand", "open", "reveal" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m8.177.677 2.896 2.896a.25.25 0 0 1-.177.427H8.75v1.25a.75.75 0 0 1-1.5 0V4H5.104a.25.25 0 0 1-.177-.427L7.823.677a.25.25 0 0 1 .354 0ZM7.25 10.75a.75.75 0 0 1 1.5 0V12h2.146a.25.25 0 0 1 .177.427l-2.896 2.896a.25.25 0 0 1-.354 0l-2.896-2.896A.25.25 0 0 1 5.104 12H7.25v-1.25Zm-5-2a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM6 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 6 8Zm2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5ZM12 8a.75.75 0 0 1-.75.75h-.5a.75.75 0 0 1 0-1.5h.5A.75.75 0 0 1 12 8Zm2.25.75a.75.75 0 0 0 0-1.5h-.5a.75.75 0 0 0 0 1.5h.5Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 23a.749.749 0 0 1-.53-.22l-3.25-3.25a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215L12 21.19l2.72-2.72a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734l-3.25 3.25A.749.749 0 0 1 12 23Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.47 1.22a.75.75 0 0 1 1.06 0l3.25 3.25a.751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018L12 2.81 9.28 5.53a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042ZM12 22.25a.75.75 0 0 1-.75-.75v-5.75a.75.75 0 0 1 1.5 0v5.75a.75.75 0 0 1-.75.75ZM2.75 12a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm4 0a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1.5a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6A.75.75 0 0 1 12 1.5Z" }, "children": [] } ] } } } }, "unlink": { "name": "unlink", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12.914 5.914a2 2 0 0 0-2.828-2.828l-.837.837a.75.75 0 1 1-1.06-1.061l.836-.837a3.5 3.5 0 1 1 4.95 4.95l-.195.194a.75.75 0 0 1-1.06-1.06l.194-.195Zm-1.87 3.482a.759.759 0 0 1-.07.079c-.63.63-1.468 1.108-2.343 1.263-.89.159-1.86-.017-2.606-.763a.75.75 0 1 1 1.06-1.06c.329.327.767.438 1.284.347.493-.088 1.018-.36 1.445-.752l-1.247-.897a.709.709 0 0 1-.01-.008l-.295-.212c-.94-.597-1.984-.499-2.676.193l-2.5 2.5a2 2 0 1 0 2.828 2.828l.837-.836a.75.75 0 0 1 1.06 1.06l-.836.837a3.5 3.5 0 0 1-4.95-4.95l2.5-2.5a3.472 3.472 0 0 1 1.354-.848L2.312 3.109a.75.75 0 0 1 .876-1.218l5.93 4.27c.115.074.226.155.335.24l6.235 4.49a.75.75 0 0 1-.876 1.218l-3.768-2.713Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M20.347 3.653a3.936 3.936 0 0 0-5.567 0l-1.75 1.75a.75.75 0 0 1-1.06-1.06l1.75-1.75a5.436 5.436 0 0 1 7.688 7.687l-1.564 1.564a.75.75 0 0 1-1.06-1.06l1.563-1.564a3.936 3.936 0 0 0 0-5.567ZM9.786 12.369a.75.75 0 0 1 1.053.125c.096.122.2.24.314.353 1.348 1.348 3.386 1.587 4.89.658l-3.922-2.858a.745.745 0 0 1-.057-.037c-1.419-1.013-3.454-.787-4.784.543L3.653 14.78a3.936 3.936 0 0 0 5.567 5.567l3-3a.75.75 0 1 1 1.06 1.06l-3 3a5.436 5.436 0 1 1-7.688-7.687l3.628-3.628a5.517 5.517 0 0 1 3.014-1.547l-7.05-5.136a.75.75 0 0 1 .883-1.213l20.25 14.75a.75.75 0 0 1-.884 1.213l-5.109-3.722c-2.155 1.709-5.278 1.425-7.232-.53a5.491 5.491 0 0 1-.431-.485.75.75 0 0 1 .125-1.053Z" }, "children": [] } ] } } } }, "unlock": { "name": "unlock", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.5 4v2h7A1.5 1.5 0 0 1 14 7.5v6a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5v-6A1.5 1.5 0 0 1 3.499 6H4V4a4 4 0 0 1 7.371-2.154.75.75 0 0 1-1.264.808A2.5 2.5 0 0 0 5.5 4Zm-2 3.5v6h9v-6h-9Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.5 7.25V9h11a2.5 2.5 0 0 1 2.5 2.5v8a2.5 2.5 0 0 1-2.5 2.5h-13A2.5 2.5 0 0 1 3 19.5v-8A2.5 2.5 0 0 1 5.5 9H6V7.25C6 3.845 8.503 1 12 1c2.792 0 4.971 1.825 5.718 4.31a.75.75 0 1 1-1.436.432C15.71 3.84 14.079 2.5 12 2.5c-2.578 0-4.5 2.08-4.5 4.75Zm-3 4.25v8a1 1 0 0 0 1 1h13a1 1 0 0 0 1-1v-8a1 1 0 0 0-1-1h-13a1 1 0 0 0-1 1Z" }, "children": [] } ] } } } }, "unmute": { "name": "unmute", "keywords": [ "loud", "volume", "audio", "sound", "play" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.563 2.069A.75.75 0 0 1 8 2.75v10.5a.751.751 0 0 1-1.238.57L3.472 11H1.75A1.75 1.75 0 0 1 0 9.25v-2.5C0 5.784.784 5 1.75 5h1.723l3.289-2.82a.75.75 0 0 1 .801-.111ZM6.5 4.38 4.238 6.319a.748.748 0 0 1-.488.181h-2a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2c.179 0 .352.064.488.18L6.5 11.62Zm6.096-2.038a.75.75 0 0 1 1.06 0 8 8 0 0 1 0 11.314.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042 6.5 6.5 0 0 0 0-9.193.75.75 0 0 1 0-1.06Zm-1.06 2.121-.001.001a5 5 0 0 1 0 7.07.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734 3.5 3.5 0 0 0 0-4.95.75.75 0 1 1 1.061-1.061Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.553 3.064A.75.75 0 0 1 12 3.75v16.5a.75.75 0 0 1-1.255.555L5.46 16H2.75A1.75 1.75 0 0 1 1 14.25v-4.5C1 8.784 1.784 8 2.75 8h2.71l5.285-4.805a.752.752 0 0 1 .808-.13ZM10.5 5.445l-4.245 3.86a.748.748 0 0 1-.505.195h-3a.25.25 0 0 0-.25.25v4.5c0 .138.112.25.25.25h3c.187 0 .367.069.505.195l4.245 3.86Zm8.218-1.223a.75.75 0 0 1 1.06 0c4.296 4.296 4.296 11.26 0 15.556a.75.75 0 0 1-1.06-1.06 9.5 9.5 0 0 0 0-13.436.75.75 0 0 1 0-1.06Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M16.243 7.757a.75.75 0 1 0-1.061 1.061 4.5 4.5 0 0 1 0 6.364.75.75 0 0 0 1.06 1.06 6 6 0 0 0 0-8.485Z" }, "children": [] } ] } } } }, "unread": { "name": "unread", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.5 3.5H1.75a.25.25 0 0 0-.25.25v.32L8 7.88l3.02-1.77a.75.75 0 0 1 .758 1.295L8.379 9.397a.75.75 0 0 1-.758 0L1.5 5.809v6.441c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-4.5a.75.75 0 0 1 1.5 0v4.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25V4.513a.75.75 0 0 1 0-.027V3.75C0 2.784.784 2 1.75 2h8.75a.75.75 0 0 1 0 1.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14 6a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.75 4.5a.25.25 0 0 0-.25.25v.852l10.36 7a.25.25 0 0 0 .28 0l5.69-3.845A.75.75 0 0 1 18.67 10l-5.69 3.845c-.592.4-1.368.4-1.96 0L1.5 7.412V19.25c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25v-8.5a.75.75 0 0 1 1.5 0v8.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25V4.75C0 3.784.784 3 1.75 3h15.5a.75.75 0 0 1 0 1.5H1.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M24 5.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z" }, "children": [] } ] } } } }, "unverified": { "name": "unverified", "keywords": [ "insecure", "untrusted", "signed" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6.415.52a2.677 2.677 0 0 1 3.17 0l.928.68c.153.113.33.186.518.215l1.138.175a2.678 2.678 0 0 1 2.241 2.24l.175 1.138c.029.187.102.365.215.518l.68.928a2.677 2.677 0 0 1 0 3.17l-.68.928a1.186 1.186 0 0 0-.215.518l-.175 1.138a2.678 2.678 0 0 1-2.241 2.241l-1.138.175a1.186 1.186 0 0 0-.518.215l-.928.68a2.677 2.677 0 0 1-3.17 0l-.928-.68a1.186 1.186 0 0 0-.518-.215L3.83 14.41a2.678 2.678 0 0 1-2.24-2.24l-.175-1.138a1.186 1.186 0 0 0-.215-.518l-.68-.928a2.677 2.677 0 0 1 0-3.17l.68-.928a1.17 1.17 0 0 0 .215-.518l.175-1.14a2.678 2.678 0 0 1 2.24-2.24l1.138-.175c.187-.029.365-.102.518-.215l.928-.68Zm2.282 1.209a1.18 1.18 0 0 0-1.394 0l-.928.68a2.67 2.67 0 0 1-1.18.489l-1.136.174a1.18 1.18 0 0 0-.987.987l-.174 1.137a2.67 2.67 0 0 1-.489 1.18l-.68.927c-.305.415-.305.98 0 1.394l.68.928c.256.348.423.752.489 1.18l.174 1.136c.078.51.478.909.987.987l1.137.174c.427.066.831.233 1.18.489l.927.68c.415.305.98.305 1.394 0l.928-.68a2.67 2.67 0 0 1 1.18-.489l1.136-.174c.51-.078.909-.478.987-.987l.174-1.137c.066-.427.233-.831.489-1.18l.68-.927c.305-.415.305-.98 0-1.394l-.68-.928a2.67 2.67 0 0 1-.489-1.18l-.174-1.136a1.18 1.18 0 0 0-.987-.987l-1.137-.174a2.67 2.67 0 0 1-1.18-.489ZM6.92 6.085h.001a.75.75 0 0 1-1.342-.67c.169-.339.436-.701.849-.977C6.846 4.16 7.369 4 8 4a2.76 2.76 0 0 1 1.638.525c.502.377.862.965.862 1.725 0 .448-.115.83-.329 1.15-.205.307-.47.513-.692.662-.109.072-.22.138-.313.195l-.006.004a6.24 6.24 0 0 0-.26.16.952.952 0 0 0-.276.245.75.75 0 0 1-1.248-.832c.184-.264.42-.489.692-.661.109-.073.22-.139.313-.195l.007-.004c.1-.061.182-.11.258-.161a.969.969 0 0 0 .277-.245C8.96 6.514 9 6.427 9 6.25a.612.612 0 0 0-.262-.525A1.27 1.27 0 0 0 8 5.5c-.369 0-.595.09-.74.187a1.01 1.01 0 0 0-.34.398ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M13 16.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-2.517-7.665c.112-.223.268-.424.488-.57C11.186 8.12 11.506 8 12 8c.384 0 .766.118 1.034.319a.953.953 0 0 1 .403.806c0 .48-.218.81-.62 1.186a9.293 9.293 0 0 1-.409.354 19.8 19.8 0 0 0-.294.249c-.246.213-.524.474-.738.795l-.126.19V13.5a.75.75 0 0 0 1.5 0v-1.12c.09-.1.203-.208.347-.333.063-.055.14-.119.222-.187.166-.14.358-.3.52-.452.536-.5 1.098-1.2 1.098-2.283a2.45 2.45 0 0 0-1.003-2.006C13.37 6.695 12.658 6.5 12 6.5c-.756 0-1.373.191-1.861.517a2.944 2.944 0 0 0-.997 1.148.75.75 0 0 0 1.341.67Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.864 1.2a3.61 3.61 0 0 1 4.272 0l1.375 1.01c.274.2.593.333.929.384l1.686.259a3.61 3.61 0 0 1 3.021 3.02l.259 1.687c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 0 1 0 4.272l-1.01 1.375a2.106 2.106 0 0 0-.384.929l-.259 1.686a3.61 3.61 0 0 1-3.02 3.021l-1.687.259a2.106 2.106 0 0 0-.929.384l-1.375 1.01a3.61 3.61 0 0 1-4.272 0l-1.375-1.01a2.106 2.106 0 0 0-.929-.384l-1.686-.259a3.61 3.61 0 0 1-3.021-3.02l-.259-1.687a2.106 2.106 0 0 0-.384-.929L1.2 14.136a3.61 3.61 0 0 1 0-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.686a3.61 3.61 0 0 1 3.02-3.021l1.687-.259c.336-.051.655-.183.929-.384Zm3.384 1.209a2.11 2.11 0 0 0-2.496 0l-1.376 1.01a3.61 3.61 0 0 1-1.589.658l-1.686.258a2.111 2.111 0 0 0-1.766 1.766l-.258 1.686a3.614 3.614 0 0 1-.658 1.59l-1.01 1.375a2.11 2.11 0 0 0 0 2.496l1.01 1.376a3.61 3.61 0 0 1 .658 1.589l.258 1.686a2.11 2.11 0 0 0 1.766 1.765l1.686.26a3.613 3.613 0 0 1 1.59.657l1.375 1.01a2.11 2.11 0 0 0 2.496 0l1.376-1.01a3.61 3.61 0 0 1 1.589-.658l1.686-.258a2.11 2.11 0 0 0 1.765-1.766l.26-1.686a3.613 3.613 0 0 1 .657-1.59l1.01-1.375a2.11 2.11 0 0 0 0-2.496l-1.01-1.376a3.61 3.61 0 0 1-.658-1.589l-.258-1.686a2.111 2.111 0 0 0-1.766-1.766l-1.686-.258a3.614 3.614 0 0 1-1.59-.658Z" }, "children": [] } ] } } } }, "upload": { "name": "upload", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.75 14A1.75 1.75 0 0 1 1 12.25v-2.5a.75.75 0 0 1 1.5 0v2.5c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25v-2.5a.75.75 0 0 1 1.5 0v2.5A1.75 1.75 0 0 1 13.25 14Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M11.78 4.72a.749.749 0 1 1-1.06 1.06L8.75 3.811V9.5a.75.75 0 0 1-1.5 0V3.811L5.28 5.78a.749.749 0 1 1-1.06-1.06l3.25-3.25a.749.749 0 0 1 1.06 0l3.25 3.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4 20.25V18a.75.75 0 0 1 1.5 0v2.25c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25V18a.75.75 0 0 1 1.5 0v2.25A1.75 1.75 0 0 1 18.25 22H5.75A1.75 1.75 0 0 1 4 20.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.22 9.53a.749.749 0 0 1 0-1.06l6.25-6.25a.749.749 0 0 1 1.06 0l6.25 6.25a.749.749 0 1 1-1.06 1.06l-4.97-4.969V16.75a.75.75 0 0 1-1.5 0V4.561L6.28 9.53a.749.749 0 0 1-1.06 0Z" }, "children": [] } ] } } } }, "verified": { "name": "verified", "keywords": [ "trusted", "secure", "trustworthy", "signed" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "m9.585.52.929.68c.153.112.331.186.518.215l1.138.175a2.678 2.678 0 0 1 2.24 2.24l.174 1.139c.029.187.103.365.215.518l.68.928a2.677 2.677 0 0 1 0 3.17l-.68.928a1.174 1.174 0 0 0-.215.518l-.175 1.138a2.678 2.678 0 0 1-2.241 2.241l-1.138.175a1.17 1.17 0 0 0-.518.215l-.928.68a2.677 2.677 0 0 1-3.17 0l-.928-.68a1.174 1.174 0 0 0-.518-.215L3.83 14.41a2.678 2.678 0 0 1-2.24-2.24l-.175-1.138a1.17 1.17 0 0 0-.215-.518l-.68-.928a2.677 2.677 0 0 1 0-3.17l.68-.928c.112-.153.186-.331.215-.518l.175-1.14a2.678 2.678 0 0 1 2.24-2.24l1.139-.175c.187-.029.365-.103.518-.215l.928-.68a2.677 2.677 0 0 1 3.17 0ZM7.303 1.728l-.927.68a2.67 2.67 0 0 1-1.18.489l-1.137.174a1.179 1.179 0 0 0-.987.987l-.174 1.136a2.677 2.677 0 0 1-.489 1.18l-.68.928a1.18 1.18 0 0 0 0 1.394l.68.927c.256.348.424.753.489 1.18l.174 1.137c.078.509.478.909.987.987l1.136.174a2.67 2.67 0 0 1 1.18.489l.928.68c.414.305.979.305 1.394 0l.927-.68a2.67 2.67 0 0 1 1.18-.489l1.137-.174a1.18 1.18 0 0 0 .987-.987l.174-1.136a2.67 2.67 0 0 1 .489-1.18l.68-.928a1.176 1.176 0 0 0 0-1.394l-.68-.927a2.686 2.686 0 0 1-.489-1.18l-.174-1.137a1.179 1.179 0 0 0-.987-.987l-1.136-.174a2.677 2.677 0 0 1-1.18-.489l-.928-.68a1.176 1.176 0 0 0-1.394 0ZM11.28 6.78l-3.75 3.75a.75.75 0 0 1-1.06 0L4.72 8.78a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018L7 8.94l3.22-3.22a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M17.03 9.78a.75.75 0 0 0-1.06-1.06l-5.47 5.47-2.47-2.47a.75.75 0 0 0-1.06 1.06l3 3a.75.75 0 0 0 1.06 0l6-6Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "m14.136 1.2 1.375 1.01c.274.201.593.333.929.384l1.687.259a3.61 3.61 0 0 1 3.02 3.021l.259 1.686c.051.336.183.655.384.929l1.01 1.375a3.61 3.61 0 0 1 0 4.272l-1.01 1.375a2.106 2.106 0 0 0-.384.929l-.259 1.687a3.61 3.61 0 0 1-3.021 3.02l-1.686.259a2.106 2.106 0 0 0-.929.384l-1.375 1.01a3.61 3.61 0 0 1-4.272 0l-1.375-1.01a2.106 2.106 0 0 0-.929-.384l-1.687-.259a3.61 3.61 0 0 1-3.02-3.021l-.259-1.686a2.117 2.117 0 0 0-.384-.929L1.2 14.136a3.61 3.61 0 0 1 0-4.272l1.01-1.375c.201-.274.333-.593.384-.929l.259-1.687a3.61 3.61 0 0 1 3.021-3.02l1.686-.259c.336-.051.655-.183.929-.384L9.864 1.2a3.61 3.61 0 0 1 4.272 0Zm-3.384 1.209-1.375 1.01a3.614 3.614 0 0 1-1.59.658l-1.686.258a2.111 2.111 0 0 0-1.766 1.766l-.258 1.686a3.61 3.61 0 0 1-.658 1.589l-1.01 1.376a2.11 2.11 0 0 0 0 2.496l1.01 1.375c.344.469.57 1.015.658 1.59l.258 1.686c.14.911.855 1.626 1.766 1.766l1.686.258a3.61 3.61 0 0 1 1.589.658l1.376 1.01a2.11 2.11 0 0 0 2.496 0l1.375-1.01a3.613 3.613 0 0 1 1.59-.657l1.686-.26a2.11 2.11 0 0 0 1.766-1.765l.258-1.686a3.61 3.61 0 0 1 .658-1.589l1.01-1.376a2.11 2.11 0 0 0 0-2.496l-1.01-1.375a3.613 3.613 0 0 1-.657-1.59l-.26-1.686a2.11 2.11 0 0 0-1.765-1.766l-1.686-.258a3.61 3.61 0 0 1-1.589-.658l-1.376-1.01a2.11 2.11 0 0 0-2.496 0Z" }, "children": [] } ] } } } }, "versions": { "name": "versions", "keywords": [ "history", "commits" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.75 14A1.75 1.75 0 0 1 6 12.25v-8.5C6 2.784 6.784 2 7.75 2h6.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14Zm-.25-1.75c0 .138.112.25.25.25h6.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25h-6.5a.25.25 0 0 0-.25.25ZM4.9 3.508a.75.75 0 0 1-.274 1.025.249.249 0 0 0-.126.217v6.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.75 1.75 0 0 1 3 11.25v-6.5c0-.649.353-1.214.874-1.516a.75.75 0 0 1 1.025.274ZM1.625 5.533h.001a.249.249 0 0 0-.126.217v4.5c0 .09.048.173.126.217a.75.75 0 0 1-.752 1.298A1.748 1.748 0 0 1 0 10.25v-4.5a1.748 1.748 0 0 1 .873-1.516.75.75 0 1 1 .752 1.299Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2Zm-.5-2a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 .5-.5V4a.5.5 0 0 0-.5-.5H10a.5.5 0 0 0-.5.5ZM6.17 4.165a.75.75 0 0 1-.335 1.006c-.228.114-.295.177-.315.201a.035.035 0 0 0-.008.016.423.423 0 0 0-.012.112v13c0 .07.008.102.012.112a.03.03 0 0 0 .008.016c.02.024.087.087.315.201a.749.749 0 1 1-.67 1.342c-.272-.136-.58-.315-.81-.598C4.1 19.259 4 18.893 4 18.5v-13c0-.393.1-.759.355-1.073.23-.283.538-.462.81-.598a.75.75 0 0 1 1.006.336ZM2.15 5.624a.75.75 0 0 1-.274 1.025c-.15.087-.257.17-.32.245C1.5 6.96 1.5 6.99 1.5 7v10c0 .01 0 .04.056.106.063.074.17.158.32.245a.75.75 0 0 1-.752 1.298C.73 18.421 0 17.907 0 17V7c0-.907.73-1.42 1.124-1.65a.75.75 0 0 1 1.025.274Z" }, "children": [] } ] } } } }, "video": { "name": "video", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 3.75C0 2.784.784 2 1.75 2h12.5c.966 0 1.75.784 1.75 1.75v8.5A1.75 1.75 0 0 1 14.25 14H1.75A1.75 1.75 0 0 1 0 12.25Zm1.75-.25a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h12.5a.25.25 0 0 0 .25-.25v-8.5a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M6 10.559V5.442a.25.25 0 0 1 .379-.215l4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 4.75C0 3.784.784 3 1.75 3h20.5c.966 0 1.75.784 1.75 1.75v14.5A1.75 1.75 0 0 1 22.25 21H1.75A1.75 1.75 0 0 1 0 19.25Zm1.75-.25a.25.25 0 0 0-.25.25v14.5c0 .138.112.25.25.25h20.5a.25.25 0 0 0 .25-.25V4.75a.25.25 0 0 0-.25-.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9 15.584V8.416a.5.5 0 0 1 .77-.42l5.576 3.583a.5.5 0 0 1 0 .842L9.77 16.005a.5.5 0 0 1-.77-.42Z" }, "children": [] } ] } } } }, "webhook": { "name": "webhook", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.5 4.25a2.25 2.25 0 0 1 4.5 0 .75.75 0 0 0 1.5 0 3.75 3.75 0 1 0-6.14 2.889l-2.272 4.258a.75.75 0 0 0 1.324.706L7 7.25a.75.75 0 0 0-.309-1.015A2.25 2.25 0 0 1 5.5 4.25Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.364 3.607a.75.75 0 0 1 1.03.257l2.608 4.349a3.75 3.75 0 1 1-.628 6.785.75.75 0 0 1 .752-1.299 2.25 2.25 0 1 0-.033-3.88.75.75 0 0 1-1.03-.256L7.107 4.636a.75.75 0 0 1 .257-1.03Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.9 8.776A.75.75 0 0 1 2.625 9.8 2.25 2.25 0 1 0 6 11.75a.75.75 0 0 1 .75-.751h5.5a.75.75 0 0 1 0 1.5H7.425a3.751 3.751 0 1 1-5.55-3.998.75.75 0 0 1 1.024.274Z" }, "children": [] } ] } } } }, "workflow": { "name": "workflow", "keywords": [ "workflow", "actions" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 1.75C0 .784.784 0 1.75 0h3.5C6.216 0 7 .784 7 1.75v3.5A1.75 1.75 0 0 1 5.25 7H4v4a1 1 0 0 0 1 1h4v-1.25C9 9.784 9.784 9 10.75 9h3.5c.966 0 1.75.784 1.75 1.75v3.5A1.75 1.75 0 0 1 14.25 16h-3.5A1.75 1.75 0 0 1 9 14.25v-.75H5A2.5 2.5 0 0 1 2.5 11V7h-.75A1.75 1.75 0 0 1 0 5.25Zm1.75-.25a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Zm9 9a.25.25 0 0 0-.25.25v3.5c0 .138.112.25.25.25h3.5a.25.25 0 0 0 .25-.25v-3.5a.25.25 0 0 0-.25-.25Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 3a2 2 0 0 1 2-2h6.5a2 2 0 0 1 2 2v6.5a2 2 0 0 1-2 2H7v4.063C7 16.355 7.644 17 8.438 17H12.5v-2.5a2 2 0 0 1 2-2H21a2 2 0 0 1 2 2V21a2 2 0 0 1-2 2h-6.5a2 2 0 0 1-2-2v-2.5H8.437A2.939 2.939 0 0 1 5.5 15.562V11.5H3a2 2 0 0 1-2-2Zm2-.5a.5.5 0 0 0-.5.5v6.5a.5.5 0 0 0 .5.5h6.5a.5.5 0 0 0 .5-.5V3a.5.5 0 0 0-.5-.5ZM14.5 14a.5.5 0 0 0-.5.5V21a.5.5 0 0 0 .5.5H21a.5.5 0 0 0 .5-.5v-6.5a.5.5 0 0 0-.5-.5Z" }, "children": [] } ] } } } }, "x": { "name": "x", "keywords": [ "remove", "close", "delete" ], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.22 2.22a.749.749 0 0 1 1.06 0L6 4.939 8.72 2.22a.749.749 0 1 1 1.06 1.06L7.061 6 9.78 8.72a.749.749 0 1 1-1.06 1.06L6 7.061 3.28 9.78a.749.749 0 1 1-1.06-1.06L4.939 6 2.22 3.28a.749.749 0 0 1 0-1.06Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.72 3.72a.75.75 0 0 1 1.06 0L8 6.94l3.22-3.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l3.22 3.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-3.22 3.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L6.94 8 3.72 4.78a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M5.72 5.72a.75.75 0 0 1 1.06 0L12 10.94l5.22-5.22a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L13.06 12l5.22 5.22a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L12 13.06l-5.22 5.22a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042L10.94 12 5.72 6.78a.75.75 0 0 1 0-1.06Z" }, "children": [] } ] } } } }, "x-circle": { "name": "x-circle", "keywords": [], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.344 2.343h-.001a8 8 0 0 1 11.314 11.314A8.002 8.002 0 0 1 .234 10.089a8 8 0 0 1 2.11-7.746Zm1.06 10.253a6.5 6.5 0 1 0 9.108-9.275 6.5 6.5 0 0 0-9.108 9.275ZM6.03 4.97 8 6.94l1.97-1.97a.749.749 0 0 1 1.275.326.749.749 0 0 1-.215.734L9.06 8l1.97 1.97a.749.749 0 0 1-.326 1.275.749.749 0 0 1-.734-.215L8 9.06l-1.97 1.97a.749.749 0 0 1-1.275-.326.749.749 0 0 1 .215-.734L6.94 8 4.97 6.03a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.036 7.976a.75.75 0 0 0-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 1 0 1.06 1.06L12 13.06l2.963 2.964a.75.75 0 0 0 1.061-1.06L13.061 12l2.963-2.964a.75.75 0 1 0-1.06-1.06L12 10.939 9.036 7.976Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M12 1c6.075 0 11 4.925 11 11s-4.925 11-11 11S1 18.075 1 12 5.925 1 12 1ZM2.5 12a9.5 9.5 0 0 0 9.5 9.5 9.5 9.5 0 0 0 9.5-9.5A9.5 9.5 0 0 0 12 2.5 9.5 9.5 0 0 0 2.5 12Z" }, "children": [] } ] } } } }, "x-circle-fill": { "name": "x-circle-fill", "keywords": [], "heights": { "12": { "width": 12, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "12", "height": "12", "viewBox": "0 0 12 12" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1.757 10.243a6.001 6.001 0 1 1 8.488-8.486 6.001 6.001 0 0 1-8.488 8.486ZM6 4.763l-2-2L2.763 4l2 2-2 2L4 9.237l2-2 2 2L9.237 8l-2-2 2-2L8 2.763Z" }, "children": [] } ] } }, "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M2.343 13.657A8 8 0 1 1 13.658 2.343 8 8 0 0 1 2.343 13.657ZM6.03 4.97a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042L6.94 8 4.97 9.97a.749.749 0 0 0 .326 1.275.749.749 0 0 0 .734-.215L8 9.06l1.97 1.97a.749.749 0 0 0 1.275-.326.749.749 0 0 0-.215-.734L9.06 8l1.97-1.97a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215L8 6.94Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12Zm8.036-4.024a.751.751 0 0 0-1.042.018.751.751 0 0 0-.018 1.042L10.939 12l-2.963 2.963a.749.749 0 0 0 .326 1.275.749.749 0 0 0 .734-.215L12 13.06l2.963 2.964a.75.75 0 0 0 1.061-1.06L13.061 12l2.963-2.964a.749.749 0 0 0-.326-1.275.749.749 0 0 0-.734.215L12 10.939Z" }, "children": [] } ] } } } }, "zap": { "name": "zap", "keywords": [ "electricity", "lightning", "props", "like", "star", "save" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M9.504.43a1.516 1.516 0 0 1 2.437 1.713L10.415 5.5h2.123c1.57 0 2.346 1.909 1.22 3.004l-7.34 7.142a1.249 1.249 0 0 1-.871.354h-.302a1.25 1.25 0 0 1-1.157-1.723L5.633 10.5H3.462c-1.57 0-2.346-1.909-1.22-3.004L9.503.429Zm1.047 1.074L3.286 8.571A.25.25 0 0 0 3.462 9H6.75a.75.75 0 0 1 .694 1.034l-1.713 4.188 6.982-6.793A.25.25 0 0 0 12.538 7H9.25a.75.75 0 0 1-.683-1.06l2.008-4.418.003-.006a.036.036 0 0 0-.004-.009l-.006-.006-.008-.001c-.003 0-.006.002-.009.004Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M15.716 1.329a1.341 1.341 0 0 1 2.109 1.55L15.147 9h4.161c1.623 0 2.372 2.016 1.143 3.075L8.102 22.721a1.148 1.148 0 0 1-1.81-1.317L8.996 15H4.674c-1.619 0-2.37-2.008-1.148-3.07l12.19-10.6Zm.452 1.595L4.51 13.061a.25.25 0 0 0 .164.439h5.45a.749.749 0 0 1 .692 1.041l-2.559 6.066 11.215-9.668a.25.25 0 0 0-.164-.439H14a.75.75 0 0 1-.687-1.05Z" }, "children": [] } ] } } } }, "zoom-in": { "name": "zoom-in", "keywords": [ "zoom", "in", "plus", "bigger" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M3.75 7.5a.75.75 0 0 1 .75-.75h2.25V4.5a.75.75 0 0 1 1.5 0v2.25h2.25a.75.75 0 0 1 0 1.5H8.25v2.25a.75.75 0 0 1-1.5 0V8.25H4.5a.75.75 0 0 1-.75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M7.5 0a7.5 7.5 0 0 1 5.807 12.247l2.473 2.473a.749.749 0 1 1-1.06 1.06l-2.473-2.473A7.5 7.5 0 1 1 7.5 0Zm-6 7.5a6 6 0 1 0 12 0 6 6 0 0 0-12 0Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M10.5 5.75a.75.75 0 0 1 .75.75v3.25h3.25a.75.75 0 0 1 0 1.5h-3.25v3.25a.75.75 0 0 1-1.5 0v-3.25H6.5a.75.75 0 0 1 0-1.5h3.25V6.5a.75.75 0 0 1 .75-.75Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 1 1-1.06 1.06l-4.345-4.344A10.459 10.459 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5Zm10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Z" }, "children": [] } ] } } } }, "zoom-out": { "name": "zoom-out", "keywords": [ "zoom", "out", "minus", "smaller" ], "heights": { "16": { "width": 16, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "16", "height": "16", "viewBox": "0 0 16 16" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M4.5 6.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1 0-1.5Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 7.5a7.5 7.5 0 1 1 13.307 4.747l2.473 2.473a.749.749 0 1 1-1.06 1.06l-2.473-2.473A7.5 7.5 0 0 1 0 7.5Zm7.5-6a6 6 0 1 0 0 12 6 6 0 0 0 0-12Z" }, "children": [] } ] } }, "24": { "width": 24, "path": "", "ast": { "name": "svg", "type": "element", "value": "", "attributes": { "xmlns": "http://www.w3.org/2000/svg", "width": "24", "height": "24", "viewBox": "0 0 24 24" }, "children": [ { "name": "path", "type": "element", "value": "", "attributes": { "d": "M14.5 11.25a.75.75 0 0 0 0-1.5h-8a.75.75 0 0 0 0 1.5h8Z" }, "children": [] }, { "name": "path", "type": "element", "value": "", "attributes": { "d": "M0 10.5C0 4.701 4.701 0 10.5 0S21 4.701 21 10.5c0 2.63-.967 5.033-2.564 6.875l4.344 4.345a.749.749 0 1 1-1.06 1.06l-4.345-4.344A10.459 10.459 0 0 1 10.5 21C4.701 21 0 16.299 0 10.5Zm10.5-9a9 9 0 0 0-9 9 9 9 0 0 0 9 9 9 9 0 0 0 9-9 9 9 0 0 0-9-9Z" }, "children": [] } ] } } } } } sphinx-design-0.6.1/sphinx_design/compiled/sd_tabs.js000066400000000000000000000053341465316142500227250ustar00rootroot00000000000000// @ts-check // Extra JS capability for selected tabs to be synced // The selection is stored in local storage so that it persists across page loads. /** * @type {Record} */ let sd_id_to_elements = {}; const storageKeyPrefix = "sphinx-design-tab-id-"; /** * Create a key for a tab element. * @param {HTMLElement} el - The tab element. * @returns {[string, string, string] | null} - The key. * */ function create_key(el) { let syncId = el.getAttribute("data-sync-id"); let syncGroup = el.getAttribute("data-sync-group"); if (!syncId || !syncGroup) return null; return [syncGroup, syncId, syncGroup + "--" + syncId]; } /** * Initialize the tab selection. * */ function ready() { // Find all tabs with sync data /** @type {string[]} */ let groups = []; document.querySelectorAll(".sd-tab-label").forEach((label) => { if (label instanceof HTMLElement) { let data = create_key(label); if (data) { let [group, id, key] = data; // add click event listener // @ts-ignore label.onclick = onSDLabelClick; // store map of key to elements if (!sd_id_to_elements[key]) { sd_id_to_elements[key] = []; } sd_id_to_elements[key].push(label); if (groups.indexOf(group) === -1) { groups.push(group); // Check if a specific tab has been selected via URL parameter const tabParam = new URLSearchParams(window.location.search).get( group ); if (tabParam) { console.log( "sphinx-design: Selecting tab id for group '" + group + "' from URL parameter: " + tabParam ); window.sessionStorage.setItem(storageKeyPrefix + group, tabParam); } } // Check is a specific tab has been selected previously let previousId = window.sessionStorage.getItem( storageKeyPrefix + group ); if (previousId === id) { // console.log( // "sphinx-design: Selecting tab from session storage: " + id // ); // @ts-ignore label.previousElementSibling.checked = true; } } } }); } /** * Activate other tabs with the same sync id. * * @this {HTMLElement} - The element that was clicked. */ function onSDLabelClick() { let data = create_key(this); if (!data) return; let [group, id, key] = data; for (const label of sd_id_to_elements[key]) { if (label === this) continue; // @ts-ignore label.previousElementSibling.checked = true; } window.sessionStorage.setItem(storageKeyPrefix + group, id); } document.addEventListener("DOMContentLoaded", ready, false); sphinx-design-0.6.1/sphinx_design/compiled/style.min.css000066400000000000000000001403071465316142500234040ustar00rootroot00000000000000.sd-bg-primary{background-color:var(--sd-color-primary) !important}.sd-bg-text-primary{color:var(--sd-color-primary-text) !important}button.sd-bg-primary:focus,button.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}a.sd-bg-primary:focus,a.sd-bg-primary:hover{background-color:var(--sd-color-primary-highlight) !important}.sd-bg-secondary{background-color:var(--sd-color-secondary) !important}.sd-bg-text-secondary{color:var(--sd-color-secondary-text) !important}button.sd-bg-secondary:focus,button.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}a.sd-bg-secondary:focus,a.sd-bg-secondary:hover{background-color:var(--sd-color-secondary-highlight) !important}.sd-bg-success{background-color:var(--sd-color-success) !important}.sd-bg-text-success{color:var(--sd-color-success-text) !important}button.sd-bg-success:focus,button.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}a.sd-bg-success:focus,a.sd-bg-success:hover{background-color:var(--sd-color-success-highlight) !important}.sd-bg-info{background-color:var(--sd-color-info) !important}.sd-bg-text-info{color:var(--sd-color-info-text) !important}button.sd-bg-info:focus,button.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}a.sd-bg-info:focus,a.sd-bg-info:hover{background-color:var(--sd-color-info-highlight) !important}.sd-bg-warning{background-color:var(--sd-color-warning) !important}.sd-bg-text-warning{color:var(--sd-color-warning-text) !important}button.sd-bg-warning:focus,button.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}a.sd-bg-warning:focus,a.sd-bg-warning:hover{background-color:var(--sd-color-warning-highlight) !important}.sd-bg-danger{background-color:var(--sd-color-danger) !important}.sd-bg-text-danger{color:var(--sd-color-danger-text) !important}button.sd-bg-danger:focus,button.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}a.sd-bg-danger:focus,a.sd-bg-danger:hover{background-color:var(--sd-color-danger-highlight) !important}.sd-bg-light{background-color:var(--sd-color-light) !important}.sd-bg-text-light{color:var(--sd-color-light-text) !important}button.sd-bg-light:focus,button.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}a.sd-bg-light:focus,a.sd-bg-light:hover{background-color:var(--sd-color-light-highlight) !important}.sd-bg-muted{background-color:var(--sd-color-muted) !important}.sd-bg-text-muted{color:var(--sd-color-muted-text) !important}button.sd-bg-muted:focus,button.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}a.sd-bg-muted:focus,a.sd-bg-muted:hover{background-color:var(--sd-color-muted-highlight) !important}.sd-bg-dark{background-color:var(--sd-color-dark) !important}.sd-bg-text-dark{color:var(--sd-color-dark-text) !important}button.sd-bg-dark:focus,button.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}a.sd-bg-dark:focus,a.sd-bg-dark:hover{background-color:var(--sd-color-dark-highlight) !important}.sd-bg-black{background-color:var(--sd-color-black) !important}.sd-bg-text-black{color:var(--sd-color-black-text) !important}button.sd-bg-black:focus,button.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}a.sd-bg-black:focus,a.sd-bg-black:hover{background-color:var(--sd-color-black-highlight) !important}.sd-bg-white{background-color:var(--sd-color-white) !important}.sd-bg-text-white{color:var(--sd-color-white-text) !important}button.sd-bg-white:focus,button.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}a.sd-bg-white:focus,a.sd-bg-white:hover{background-color:var(--sd-color-white-highlight) !important}.sd-text-primary,.sd-text-primary>p{color:var(--sd-color-primary) !important}a.sd-text-primary:focus,a.sd-text-primary:hover{color:var(--sd-color-primary-highlight) !important}.sd-text-secondary,.sd-text-secondary>p{color:var(--sd-color-secondary) !important}a.sd-text-secondary:focus,a.sd-text-secondary:hover{color:var(--sd-color-secondary-highlight) !important}.sd-text-success,.sd-text-success>p{color:var(--sd-color-success) !important}a.sd-text-success:focus,a.sd-text-success:hover{color:var(--sd-color-success-highlight) !important}.sd-text-info,.sd-text-info>p{color:var(--sd-color-info) !important}a.sd-text-info:focus,a.sd-text-info:hover{color:var(--sd-color-info-highlight) !important}.sd-text-warning,.sd-text-warning>p{color:var(--sd-color-warning) !important}a.sd-text-warning:focus,a.sd-text-warning:hover{color:var(--sd-color-warning-highlight) !important}.sd-text-danger,.sd-text-danger>p{color:var(--sd-color-danger) !important}a.sd-text-danger:focus,a.sd-text-danger:hover{color:var(--sd-color-danger-highlight) !important}.sd-text-light,.sd-text-light>p{color:var(--sd-color-light) !important}a.sd-text-light:focus,a.sd-text-light:hover{color:var(--sd-color-light-highlight) !important}.sd-text-muted,.sd-text-muted>p{color:var(--sd-color-muted) !important}a.sd-text-muted:focus,a.sd-text-muted:hover{color:var(--sd-color-muted-highlight) !important}.sd-text-dark,.sd-text-dark>p{color:var(--sd-color-dark) !important}a.sd-text-dark:focus,a.sd-text-dark:hover{color:var(--sd-color-dark-highlight) !important}.sd-text-black,.sd-text-black>p{color:var(--sd-color-black) !important}a.sd-text-black:focus,a.sd-text-black:hover{color:var(--sd-color-black-highlight) !important}.sd-text-white,.sd-text-white>p{color:var(--sd-color-white) !important}a.sd-text-white:focus,a.sd-text-white:hover{color:var(--sd-color-white-highlight) !important}.sd-outline-primary{border-color:var(--sd-color-primary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-primary:focus,a.sd-outline-primary:hover{border-color:var(--sd-color-primary-highlight) !important}.sd-outline-secondary{border-color:var(--sd-color-secondary) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-secondary:focus,a.sd-outline-secondary:hover{border-color:var(--sd-color-secondary-highlight) !important}.sd-outline-success{border-color:var(--sd-color-success) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-success:focus,a.sd-outline-success:hover{border-color:var(--sd-color-success-highlight) !important}.sd-outline-info{border-color:var(--sd-color-info) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-info:focus,a.sd-outline-info:hover{border-color:var(--sd-color-info-highlight) !important}.sd-outline-warning{border-color:var(--sd-color-warning) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-warning:focus,a.sd-outline-warning:hover{border-color:var(--sd-color-warning-highlight) !important}.sd-outline-danger{border-color:var(--sd-color-danger) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-danger:focus,a.sd-outline-danger:hover{border-color:var(--sd-color-danger-highlight) !important}.sd-outline-light{border-color:var(--sd-color-light) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-light:focus,a.sd-outline-light:hover{border-color:var(--sd-color-light-highlight) !important}.sd-outline-muted{border-color:var(--sd-color-muted) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-muted:focus,a.sd-outline-muted:hover{border-color:var(--sd-color-muted-highlight) !important}.sd-outline-dark{border-color:var(--sd-color-dark) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-dark:focus,a.sd-outline-dark:hover{border-color:var(--sd-color-dark-highlight) !important}.sd-outline-black{border-color:var(--sd-color-black) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-black:focus,a.sd-outline-black:hover{border-color:var(--sd-color-black-highlight) !important}.sd-outline-white{border-color:var(--sd-color-white) !important;border-style:solid !important;border-width:1px !important}a.sd-outline-white:focus,a.sd-outline-white:hover{border-color:var(--sd-color-white-highlight) !important}.sd-bg-transparent{background-color:transparent !important}.sd-outline-transparent{border-color:transparent !important}.sd-text-transparent{color:transparent !important}.sd-p-0{padding:0 !important}.sd-pt-0,.sd-py-0{padding-top:0 !important}.sd-pr-0,.sd-px-0{padding-right:0 !important}.sd-pb-0,.sd-py-0{padding-bottom:0 !important}.sd-pl-0,.sd-px-0{padding-left:0 !important}.sd-p-1{padding:.25rem !important}.sd-pt-1,.sd-py-1{padding-top:.25rem !important}.sd-pr-1,.sd-px-1{padding-right:.25rem !important}.sd-pb-1,.sd-py-1{padding-bottom:.25rem !important}.sd-pl-1,.sd-px-1{padding-left:.25rem !important}.sd-p-2{padding:.5rem !important}.sd-pt-2,.sd-py-2{padding-top:.5rem !important}.sd-pr-2,.sd-px-2{padding-right:.5rem !important}.sd-pb-2,.sd-py-2{padding-bottom:.5rem !important}.sd-pl-2,.sd-px-2{padding-left:.5rem !important}.sd-p-3{padding:1rem !important}.sd-pt-3,.sd-py-3{padding-top:1rem !important}.sd-pr-3,.sd-px-3{padding-right:1rem !important}.sd-pb-3,.sd-py-3{padding-bottom:1rem !important}.sd-pl-3,.sd-px-3{padding-left:1rem !important}.sd-p-4{padding:1.5rem !important}.sd-pt-4,.sd-py-4{padding-top:1.5rem !important}.sd-pr-4,.sd-px-4{padding-right:1.5rem !important}.sd-pb-4,.sd-py-4{padding-bottom:1.5rem !important}.sd-pl-4,.sd-px-4{padding-left:1.5rem !important}.sd-p-5{padding:3rem !important}.sd-pt-5,.sd-py-5{padding-top:3rem !important}.sd-pr-5,.sd-px-5{padding-right:3rem !important}.sd-pb-5,.sd-py-5{padding-bottom:3rem !important}.sd-pl-5,.sd-px-5{padding-left:3rem !important}.sd-m-auto{margin:auto !important}.sd-mt-auto,.sd-my-auto{margin-top:auto !important}.sd-mr-auto,.sd-mx-auto{margin-right:auto !important}.sd-mb-auto,.sd-my-auto{margin-bottom:auto !important}.sd-ml-auto,.sd-mx-auto{margin-left:auto !important}.sd-m-0{margin:0 !important}.sd-mt-0,.sd-my-0{margin-top:0 !important}.sd-mr-0,.sd-mx-0{margin-right:0 !important}.sd-mb-0,.sd-my-0{margin-bottom:0 !important}.sd-ml-0,.sd-mx-0{margin-left:0 !important}.sd-m-1{margin:.25rem !important}.sd-mt-1,.sd-my-1{margin-top:.25rem !important}.sd-mr-1,.sd-mx-1{margin-right:.25rem !important}.sd-mb-1,.sd-my-1{margin-bottom:.25rem !important}.sd-ml-1,.sd-mx-1{margin-left:.25rem !important}.sd-m-2{margin:.5rem !important}.sd-mt-2,.sd-my-2{margin-top:.5rem !important}.sd-mr-2,.sd-mx-2{margin-right:.5rem !important}.sd-mb-2,.sd-my-2{margin-bottom:.5rem !important}.sd-ml-2,.sd-mx-2{margin-left:.5rem !important}.sd-m-3{margin:1rem !important}.sd-mt-3,.sd-my-3{margin-top:1rem !important}.sd-mr-3,.sd-mx-3{margin-right:1rem !important}.sd-mb-3,.sd-my-3{margin-bottom:1rem !important}.sd-ml-3,.sd-mx-3{margin-left:1rem !important}.sd-m-4{margin:1.5rem !important}.sd-mt-4,.sd-my-4{margin-top:1.5rem !important}.sd-mr-4,.sd-mx-4{margin-right:1.5rem !important}.sd-mb-4,.sd-my-4{margin-bottom:1.5rem !important}.sd-ml-4,.sd-mx-4{margin-left:1.5rem !important}.sd-m-5{margin:3rem !important}.sd-mt-5,.sd-my-5{margin-top:3rem !important}.sd-mr-5,.sd-mx-5{margin-right:3rem !important}.sd-mb-5,.sd-my-5{margin-bottom:3rem !important}.sd-ml-5,.sd-mx-5{margin-left:3rem !important}.sd-w-25{width:25% !important}.sd-w-50{width:50% !important}.sd-w-75{width:75% !important}.sd-w-100{width:100% !important}.sd-w-auto{width:auto !important}.sd-h-25{height:25% !important}.sd-h-50{height:50% !important}.sd-h-75{height:75% !important}.sd-h-100{height:100% !important}.sd-h-auto{height:auto !important}.sd-d-none{display:none !important}.sd-d-inline{display:inline !important}.sd-d-inline-block{display:inline-block !important}.sd-d-block{display:block !important}.sd-d-grid{display:grid !important}.sd-d-flex-row{display:-ms-flexbox !important;display:flex !important;flex-direction:row !important}.sd-d-flex-column{display:-ms-flexbox !important;display:flex !important;flex-direction:column !important}.sd-d-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}@media(min-width: 576px){.sd-d-sm-none{display:none !important}.sd-d-sm-inline{display:inline !important}.sd-d-sm-inline-block{display:inline-block !important}.sd-d-sm-block{display:block !important}.sd-d-sm-grid{display:grid !important}.sd-d-sm-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-sm-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 768px){.sd-d-md-none{display:none !important}.sd-d-md-inline{display:inline !important}.sd-d-md-inline-block{display:inline-block !important}.sd-d-md-block{display:block !important}.sd-d-md-grid{display:grid !important}.sd-d-md-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-md-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 992px){.sd-d-lg-none{display:none !important}.sd-d-lg-inline{display:inline !important}.sd-d-lg-inline-block{display:inline-block !important}.sd-d-lg-block{display:block !important}.sd-d-lg-grid{display:grid !important}.sd-d-lg-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-lg-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}@media(min-width: 1200px){.sd-d-xl-none{display:none !important}.sd-d-xl-inline{display:inline !important}.sd-d-xl-inline-block{display:inline-block !important}.sd-d-xl-block{display:block !important}.sd-d-xl-grid{display:grid !important}.sd-d-xl-flex{display:-ms-flexbox !important;display:flex !important}.sd-d-xl-inline-flex{display:-ms-inline-flexbox !important;display:inline-flex !important}}.sd-align-major-start{justify-content:flex-start !important}.sd-align-major-end{justify-content:flex-end !important}.sd-align-major-center{justify-content:center !important}.sd-align-major-justify{justify-content:space-between !important}.sd-align-major-spaced{justify-content:space-evenly !important}.sd-align-minor-start{align-items:flex-start !important}.sd-align-minor-end{align-items:flex-end !important}.sd-align-minor-center{align-items:center !important}.sd-align-minor-stretch{align-items:stretch !important}.sd-text-justify{text-align:justify !important}.sd-text-left{text-align:left !important}.sd-text-right{text-align:right !important}.sd-text-center{text-align:center !important}.sd-font-weight-light{font-weight:300 !important}.sd-font-weight-lighter{font-weight:lighter !important}.sd-font-weight-normal{font-weight:400 !important}.sd-font-weight-bold{font-weight:700 !important}.sd-font-weight-bolder{font-weight:bolder !important}.sd-font-italic{font-style:italic !important}.sd-text-decoration-none{text-decoration:none !important}.sd-text-lowercase{text-transform:lowercase !important}.sd-text-uppercase{text-transform:uppercase !important}.sd-text-capitalize{text-transform:capitalize !important}.sd-text-wrap{white-space:normal !important}.sd-text-nowrap{white-space:nowrap !important}.sd-text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sd-fs-1,.sd-fs-1>p{font-size:calc(1.375rem + 1.5vw) !important;line-height:unset !important}.sd-fs-2,.sd-fs-2>p{font-size:calc(1.325rem + 0.9vw) !important;line-height:unset !important}.sd-fs-3,.sd-fs-3>p{font-size:calc(1.3rem + 0.6vw) !important;line-height:unset !important}.sd-fs-4,.sd-fs-4>p{font-size:calc(1.275rem + 0.3vw) !important;line-height:unset !important}.sd-fs-5,.sd-fs-5>p{font-size:1.25rem !important;line-height:unset !important}.sd-fs-6,.sd-fs-6>p{font-size:1rem !important;line-height:unset !important}.sd-border-0{border:0 solid !important}.sd-border-top-0{border-top:0 solid !important}.sd-border-bottom-0{border-bottom:0 solid !important}.sd-border-right-0{border-right:0 solid !important}.sd-border-left-0{border-left:0 solid !important}.sd-border-1{border:1px solid !important}.sd-border-top-1{border-top:1px solid !important}.sd-border-bottom-1{border-bottom:1px solid !important}.sd-border-right-1{border-right:1px solid !important}.sd-border-left-1{border-left:1px solid !important}.sd-border-2{border:2px solid !important}.sd-border-top-2{border-top:2px solid !important}.sd-border-bottom-2{border-bottom:2px solid !important}.sd-border-right-2{border-right:2px solid !important}.sd-border-left-2{border-left:2px solid !important}.sd-border-3{border:3px solid !important}.sd-border-top-3{border-top:3px solid !important}.sd-border-bottom-3{border-bottom:3px solid !important}.sd-border-right-3{border-right:3px solid !important}.sd-border-left-3{border-left:3px solid !important}.sd-border-4{border:4px solid !important}.sd-border-top-4{border-top:4px solid !important}.sd-border-bottom-4{border-bottom:4px solid !important}.sd-border-right-4{border-right:4px solid !important}.sd-border-left-4{border-left:4px solid !important}.sd-border-5{border:5px solid !important}.sd-border-top-5{border-top:5px solid !important}.sd-border-bottom-5{border-bottom:5px solid !important}.sd-border-right-5{border-right:5px solid !important}.sd-border-left-5{border-left:5px solid !important}.sd-rounded-0{border-radius:0 !important}.sd-rounded-1{border-radius:.2rem !important}.sd-rounded-2{border-radius:.3rem !important}.sd-rounded-3{border-radius:.5rem !important}.sd-rounded-pill{border-radius:50rem !important}.sd-rounded-circle{border-radius:50% !important}.shadow-none{box-shadow:none !important}.sd-shadow-sm{box-shadow:0 .125rem .25rem var(--sd-color-shadow) !important}.sd-shadow-md{box-shadow:0 .5rem 1rem var(--sd-color-shadow) !important}.sd-shadow-lg{box-shadow:0 1rem 3rem var(--sd-color-shadow) !important}@keyframes sd-slide-from-left{0%{transform:translateX(-100%)}100%{transform:translateX(0)}}@keyframes sd-slide-from-right{0%{transform:translateX(200%)}100%{transform:translateX(0)}}@keyframes sd-grow100{0%{transform:scale(0);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50{0%{transform:scale(0.5);opacity:.5}100%{transform:scale(1);opacity:1}}@keyframes sd-grow50-rot20{0%{transform:scale(0.5) rotateZ(-20deg);opacity:.5}75%{transform:scale(1) rotateZ(5deg);opacity:1}95%{transform:scale(1) rotateZ(-1deg);opacity:1}100%{transform:scale(1) rotateZ(0);opacity:1}}.sd-animate-slide-from-left{animation:1s ease-out 0s 1 normal none running sd-slide-from-left}.sd-animate-slide-from-right{animation:1s ease-out 0s 1 normal none running sd-slide-from-right}.sd-animate-grow100{animation:1s ease-out 0s 1 normal none running sd-grow100}.sd-animate-grow50{animation:1s ease-out 0s 1 normal none running sd-grow50}.sd-animate-grow50-rot20{animation:1s ease-out 0s 1 normal none running sd-grow50-rot20}.sd-badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.sd-badge:empty{display:none}a.sd-badge{text-decoration:none}.sd-btn .sd-badge{position:relative;top:-1px}.sd-btn{background-color:transparent;border:1px solid transparent;border-radius:.25rem;cursor:pointer;display:inline-block;font-weight:400;font-size:1rem;line-height:1.5;padding:.375rem .75rem;text-align:center;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;vertical-align:middle;user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none}.sd-btn:hover{text-decoration:none}@media(prefers-reduced-motion: reduce){.sd-btn{transition:none}}.sd-btn-primary,.sd-btn-outline-primary:hover,.sd-btn-outline-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-primary:hover,.sd-btn-primary:focus{color:var(--sd-color-primary-text) !important;background-color:var(--sd-color-primary-highlight) !important;border-color:var(--sd-color-primary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-primary{color:var(--sd-color-primary) !important;border-color:var(--sd-color-primary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary,.sd-btn-outline-secondary:hover,.sd-btn-outline-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-secondary:hover,.sd-btn-secondary:focus{color:var(--sd-color-secondary-text) !important;background-color:var(--sd-color-secondary-highlight) !important;border-color:var(--sd-color-secondary-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-secondary{color:var(--sd-color-secondary) !important;border-color:var(--sd-color-secondary) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success,.sd-btn-outline-success:hover,.sd-btn-outline-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-success:hover,.sd-btn-success:focus{color:var(--sd-color-success-text) !important;background-color:var(--sd-color-success-highlight) !important;border-color:var(--sd-color-success-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-success{color:var(--sd-color-success) !important;border-color:var(--sd-color-success) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info,.sd-btn-outline-info:hover,.sd-btn-outline-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-info:hover,.sd-btn-info:focus{color:var(--sd-color-info-text) !important;background-color:var(--sd-color-info-highlight) !important;border-color:var(--sd-color-info-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-info{color:var(--sd-color-info) !important;border-color:var(--sd-color-info) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning,.sd-btn-outline-warning:hover,.sd-btn-outline-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-warning:hover,.sd-btn-warning:focus{color:var(--sd-color-warning-text) !important;background-color:var(--sd-color-warning-highlight) !important;border-color:var(--sd-color-warning-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-warning{color:var(--sd-color-warning) !important;border-color:var(--sd-color-warning) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger,.sd-btn-outline-danger:hover,.sd-btn-outline-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-danger:hover,.sd-btn-danger:focus{color:var(--sd-color-danger-text) !important;background-color:var(--sd-color-danger-highlight) !important;border-color:var(--sd-color-danger-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-danger{color:var(--sd-color-danger) !important;border-color:var(--sd-color-danger) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light,.sd-btn-outline-light:hover,.sd-btn-outline-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-light:hover,.sd-btn-light:focus{color:var(--sd-color-light-text) !important;background-color:var(--sd-color-light-highlight) !important;border-color:var(--sd-color-light-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-light{color:var(--sd-color-light) !important;border-color:var(--sd-color-light) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted,.sd-btn-outline-muted:hover,.sd-btn-outline-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-muted:hover,.sd-btn-muted:focus{color:var(--sd-color-muted-text) !important;background-color:var(--sd-color-muted-highlight) !important;border-color:var(--sd-color-muted-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-muted{color:var(--sd-color-muted) !important;border-color:var(--sd-color-muted) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark,.sd-btn-outline-dark:hover,.sd-btn-outline-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-dark:hover,.sd-btn-dark:focus{color:var(--sd-color-dark-text) !important;background-color:var(--sd-color-dark-highlight) !important;border-color:var(--sd-color-dark-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-dark{color:var(--sd-color-dark) !important;border-color:var(--sd-color-dark) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black,.sd-btn-outline-black:hover,.sd-btn-outline-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-black:hover,.sd-btn-black:focus{color:var(--sd-color-black-text) !important;background-color:var(--sd-color-black-highlight) !important;border-color:var(--sd-color-black-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-black{color:var(--sd-color-black) !important;border-color:var(--sd-color-black) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white,.sd-btn-outline-white:hover,.sd-btn-outline-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-btn-white:hover,.sd-btn-white:focus{color:var(--sd-color-white-text) !important;background-color:var(--sd-color-white-highlight) !important;border-color:var(--sd-color-white-highlight) !important;border-width:1px !important;border-style:solid !important}.sd-btn-outline-white{color:var(--sd-color-white) !important;border-color:var(--sd-color-white) !important;border-width:1px !important;border-style:solid !important}.sd-stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.sd-hide-link-text{font-size:0}.sd-octicon,.sd-material-icon{display:inline-block;fill:currentColor;vertical-align:middle}.sd-avatar-xs{border-radius:50%;object-fit:cover;object-position:center;width:1rem;height:1rem}.sd-avatar-sm{border-radius:50%;object-fit:cover;object-position:center;width:3rem;height:3rem}.sd-avatar-md{border-radius:50%;object-fit:cover;object-position:center;width:5rem;height:5rem}.sd-avatar-lg{border-radius:50%;object-fit:cover;object-position:center;width:7rem;height:7rem}.sd-avatar-xl{border-radius:50%;object-fit:cover;object-position:center;width:10rem;height:10rem}.sd-avatar-inherit{border-radius:50%;object-fit:cover;object-position:center;width:inherit;height:inherit}.sd-avatar-initial{border-radius:50%;object-fit:cover;object-position:center;width:initial;height:initial}.sd-card{background-clip:border-box;background-color:var(--sd-color-card-background);border:1px solid var(--sd-color-card-border);border-radius:.25rem;color:var(--sd-color-card-text);display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;min-width:0;position:relative;word-wrap:break-word}.sd-card>hr{margin-left:0;margin-right:0}.sd-card-hover:hover{border-color:var(--sd-color-card-border-hover);transform:scale(1.01)}.sd-card-body{-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem 1rem}.sd-card-title{margin-bottom:.5rem}.sd-card-subtitle{margin-top:-0.25rem;margin-bottom:0}.sd-card-text:last-child{margin-bottom:0}.sd-card-link:hover{text-decoration:none}.sd-card-link+.card-link{margin-left:1rem}.sd-card-header{padding:.5rem 1rem;margin-bottom:0;background-color:var(--sd-color-card-header);border-bottom:1px solid var(--sd-color-card-border)}.sd-card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.sd-card-footer{padding:.5rem 1rem;background-color:var(--sd-color-card-footer);border-top:1px solid var(--sd-color-card-border)}.sd-card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.sd-card-header-tabs{margin-right:-0.5rem;margin-bottom:-0.5rem;margin-left:-0.5rem;border-bottom:0}.sd-card-header-pills{margin-right:-0.5rem;margin-left:-0.5rem}.sd-card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom,.sd-card-img-top{width:100%}.sd-card-img,.sd-card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.sd-card-img,.sd-card-img-bottom{border-bottom-left-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.sd-cards-carousel{width:100%;display:flex;flex-wrap:nowrap;-ms-flex-direction:row;flex-direction:row;overflow-x:hidden;scroll-snap-type:x mandatory}.sd-cards-carousel.sd-show-scrollbar{overflow-x:auto}.sd-cards-carousel:hover,.sd-cards-carousel:focus{overflow-x:auto}.sd-cards-carousel>.sd-card{flex-shrink:0;scroll-snap-align:start}.sd-cards-carousel>.sd-card:not(:last-child){margin-right:3px}.sd-card-cols-1>.sd-card{width:90%}.sd-card-cols-2>.sd-card{width:45%}.sd-card-cols-3>.sd-card{width:30%}.sd-card-cols-4>.sd-card{width:22.5%}.sd-card-cols-5>.sd-card{width:18%}.sd-card-cols-6>.sd-card{width:15%}.sd-card-cols-7>.sd-card{width:12.8571428571%}.sd-card-cols-8>.sd-card{width:11.25%}.sd-card-cols-9>.sd-card{width:10%}.sd-card-cols-10>.sd-card{width:9%}.sd-card-cols-11>.sd-card{width:8.1818181818%}.sd-card-cols-12>.sd-card{width:7.5%}.sd-container,.sd-container-fluid,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container-xl{margin-left:auto;margin-right:auto;padding-left:var(--sd-gutter-x, 0.75rem);padding-right:var(--sd-gutter-x, 0.75rem);width:100%}@media(min-width: 576px){.sd-container-sm,.sd-container{max-width:540px}}@media(min-width: 768px){.sd-container-md,.sd-container-sm,.sd-container{max-width:720px}}@media(min-width: 992px){.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:960px}}@media(min-width: 1200px){.sd-container-xl,.sd-container-lg,.sd-container-md,.sd-container-sm,.sd-container{max-width:1140px}}.sd-row{--sd-gutter-x: 1.5rem;--sd-gutter-y: 0;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:calc(var(--sd-gutter-y) * -1);margin-right:calc(var(--sd-gutter-x) * -0.5);margin-left:calc(var(--sd-gutter-x) * -0.5)}.sd-row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--sd-gutter-x) * 0.5);padding-left:calc(var(--sd-gutter-x) * 0.5);margin-top:var(--sd-gutter-y)}.sd-col{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-auto>*{flex:0 0 auto;width:auto}.sd-row-cols-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}@media(min-width: 576px){.sd-col-sm{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-sm-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-sm-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-sm-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-sm-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-sm-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-sm-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-sm-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-sm-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-sm-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-sm-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-sm-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-sm-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-sm-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 768px){.sd-col-md{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-md-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-md-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-md-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-md-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-md-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-md-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-md-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-md-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-md-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-md-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-md-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-md-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-md-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 992px){.sd-col-lg{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-lg-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-lg-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-lg-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-lg-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-lg-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-lg-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-lg-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-lg-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-lg-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-lg-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-lg-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-lg-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-lg-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}@media(min-width: 1200px){.sd-col-xl{flex:1 0 0%;-ms-flex:1 0 0%}.sd-row-cols-xl-auto{flex:1 0 auto;-ms-flex:1 0 auto;width:100%}.sd-row-cols-xl-1>*{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-row-cols-xl-2>*{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-row-cols-xl-3>*{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-row-cols-xl-4>*{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-row-cols-xl-5>*{flex:0 0 auto;-ms-flex:0 0 auto;width:20%}.sd-row-cols-xl-6>*{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-row-cols-xl-7>*{flex:0 0 auto;-ms-flex:0 0 auto;width:14.2857142857%}.sd-row-cols-xl-8>*{flex:0 0 auto;-ms-flex:0 0 auto;width:12.5%}.sd-row-cols-xl-9>*{flex:0 0 auto;-ms-flex:0 0 auto;width:11.1111111111%}.sd-row-cols-xl-10>*{flex:0 0 auto;-ms-flex:0 0 auto;width:10%}.sd-row-cols-xl-11>*{flex:0 0 auto;-ms-flex:0 0 auto;width:9.0909090909%}.sd-row-cols-xl-12>*{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}}.sd-col-auto{flex:0 0 auto;-ms-flex:0 0 auto;width:auto}.sd-col-1{flex:0 0 auto;-ms-flex:0 0 auto;width:8.3333333333%}.sd-col-2{flex:0 0 auto;-ms-flex:0 0 auto;width:16.6666666667%}.sd-col-3{flex:0 0 auto;-ms-flex:0 0 auto;width:25%}.sd-col-4{flex:0 0 auto;-ms-flex:0 0 auto;width:33.3333333333%}.sd-col-5{flex:0 0 auto;-ms-flex:0 0 auto;width:41.6666666667%}.sd-col-6{flex:0 0 auto;-ms-flex:0 0 auto;width:50%}.sd-col-7{flex:0 0 auto;-ms-flex:0 0 auto;width:58.3333333333%}.sd-col-8{flex:0 0 auto;-ms-flex:0 0 auto;width:66.6666666667%}.sd-col-9{flex:0 0 auto;-ms-flex:0 0 auto;width:75%}.sd-col-10{flex:0 0 auto;-ms-flex:0 0 auto;width:83.3333333333%}.sd-col-11{flex:0 0 auto;-ms-flex:0 0 auto;width:91.6666666667%}.sd-col-12{flex:0 0 auto;-ms-flex:0 0 auto;width:100%}.sd-g-0,.sd-gy-0{--sd-gutter-y: 0}.sd-g-0,.sd-gx-0{--sd-gutter-x: 0}.sd-g-1,.sd-gy-1{--sd-gutter-y: 0.25rem}.sd-g-1,.sd-gx-1{--sd-gutter-x: 0.25rem}.sd-g-2,.sd-gy-2{--sd-gutter-y: 0.5rem}.sd-g-2,.sd-gx-2{--sd-gutter-x: 0.5rem}.sd-g-3,.sd-gy-3{--sd-gutter-y: 1rem}.sd-g-3,.sd-gx-3{--sd-gutter-x: 1rem}.sd-g-4,.sd-gy-4{--sd-gutter-y: 1.5rem}.sd-g-4,.sd-gx-4{--sd-gutter-x: 1.5rem}.sd-g-5,.sd-gy-5{--sd-gutter-y: 3rem}.sd-g-5,.sd-gx-5{--sd-gutter-x: 3rem}@media(min-width: 576px){.sd-col-sm-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-sm-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-sm-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-sm-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-sm-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-sm-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-sm-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-sm-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-sm-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-sm-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-sm-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-sm-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-sm-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-sm-0,.sd-gy-sm-0{--sd-gutter-y: 0}.sd-g-sm-0,.sd-gx-sm-0{--sd-gutter-x: 0}.sd-g-sm-1,.sd-gy-sm-1{--sd-gutter-y: 0.25rem}.sd-g-sm-1,.sd-gx-sm-1{--sd-gutter-x: 0.25rem}.sd-g-sm-2,.sd-gy-sm-2{--sd-gutter-y: 0.5rem}.sd-g-sm-2,.sd-gx-sm-2{--sd-gutter-x: 0.5rem}.sd-g-sm-3,.sd-gy-sm-3{--sd-gutter-y: 1rem}.sd-g-sm-3,.sd-gx-sm-3{--sd-gutter-x: 1rem}.sd-g-sm-4,.sd-gy-sm-4{--sd-gutter-y: 1.5rem}.sd-g-sm-4,.sd-gx-sm-4{--sd-gutter-x: 1.5rem}.sd-g-sm-5,.sd-gy-sm-5{--sd-gutter-y: 3rem}.sd-g-sm-5,.sd-gx-sm-5{--sd-gutter-x: 3rem}}@media(min-width: 768px){.sd-col-md-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-md-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-md-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-md-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-md-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-md-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-md-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-md-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-md-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-md-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-md-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-md-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-md-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-md-0,.sd-gy-md-0{--sd-gutter-y: 0}.sd-g-md-0,.sd-gx-md-0{--sd-gutter-x: 0}.sd-g-md-1,.sd-gy-md-1{--sd-gutter-y: 0.25rem}.sd-g-md-1,.sd-gx-md-1{--sd-gutter-x: 0.25rem}.sd-g-md-2,.sd-gy-md-2{--sd-gutter-y: 0.5rem}.sd-g-md-2,.sd-gx-md-2{--sd-gutter-x: 0.5rem}.sd-g-md-3,.sd-gy-md-3{--sd-gutter-y: 1rem}.sd-g-md-3,.sd-gx-md-3{--sd-gutter-x: 1rem}.sd-g-md-4,.sd-gy-md-4{--sd-gutter-y: 1.5rem}.sd-g-md-4,.sd-gx-md-4{--sd-gutter-x: 1.5rem}.sd-g-md-5,.sd-gy-md-5{--sd-gutter-y: 3rem}.sd-g-md-5,.sd-gx-md-5{--sd-gutter-x: 3rem}}@media(min-width: 992px){.sd-col-lg-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-lg-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-lg-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-lg-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-lg-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-lg-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-lg-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-lg-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-lg-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-lg-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-lg-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-lg-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-lg-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-lg-0,.sd-gy-lg-0{--sd-gutter-y: 0}.sd-g-lg-0,.sd-gx-lg-0{--sd-gutter-x: 0}.sd-g-lg-1,.sd-gy-lg-1{--sd-gutter-y: 0.25rem}.sd-g-lg-1,.sd-gx-lg-1{--sd-gutter-x: 0.25rem}.sd-g-lg-2,.sd-gy-lg-2{--sd-gutter-y: 0.5rem}.sd-g-lg-2,.sd-gx-lg-2{--sd-gutter-x: 0.5rem}.sd-g-lg-3,.sd-gy-lg-3{--sd-gutter-y: 1rem}.sd-g-lg-3,.sd-gx-lg-3{--sd-gutter-x: 1rem}.sd-g-lg-4,.sd-gy-lg-4{--sd-gutter-y: 1.5rem}.sd-g-lg-4,.sd-gx-lg-4{--sd-gutter-x: 1.5rem}.sd-g-lg-5,.sd-gy-lg-5{--sd-gutter-y: 3rem}.sd-g-lg-5,.sd-gx-lg-5{--sd-gutter-x: 3rem}}@media(min-width: 1200px){.sd-col-xl-auto{-ms-flex:0 0 auto;flex:0 0 auto;width:auto}.sd-col-xl-1{-ms-flex:0 0 auto;flex:0 0 auto;width:8.3333333333%}.sd-col-xl-2{-ms-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.sd-col-xl-3{-ms-flex:0 0 auto;flex:0 0 auto;width:25%}.sd-col-xl-4{-ms-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.sd-col-xl-5{-ms-flex:0 0 auto;flex:0 0 auto;width:41.6666666667%}.sd-col-xl-6{-ms-flex:0 0 auto;flex:0 0 auto;width:50%}.sd-col-xl-7{-ms-flex:0 0 auto;flex:0 0 auto;width:58.3333333333%}.sd-col-xl-8{-ms-flex:0 0 auto;flex:0 0 auto;width:66.6666666667%}.sd-col-xl-9{-ms-flex:0 0 auto;flex:0 0 auto;width:75%}.sd-col-xl-10{-ms-flex:0 0 auto;flex:0 0 auto;width:83.3333333333%}.sd-col-xl-11{-ms-flex:0 0 auto;flex:0 0 auto;width:91.6666666667%}.sd-col-xl-12{-ms-flex:0 0 auto;flex:0 0 auto;width:100%}.sd-g-xl-0,.sd-gy-xl-0{--sd-gutter-y: 0}.sd-g-xl-0,.sd-gx-xl-0{--sd-gutter-x: 0}.sd-g-xl-1,.sd-gy-xl-1{--sd-gutter-y: 0.25rem}.sd-g-xl-1,.sd-gx-xl-1{--sd-gutter-x: 0.25rem}.sd-g-xl-2,.sd-gy-xl-2{--sd-gutter-y: 0.5rem}.sd-g-xl-2,.sd-gx-xl-2{--sd-gutter-x: 0.5rem}.sd-g-xl-3,.sd-gy-xl-3{--sd-gutter-y: 1rem}.sd-g-xl-3,.sd-gx-xl-3{--sd-gutter-x: 1rem}.sd-g-xl-4,.sd-gy-xl-4{--sd-gutter-y: 1.5rem}.sd-g-xl-4,.sd-gx-xl-4{--sd-gutter-x: 1.5rem}.sd-g-xl-5,.sd-gy-xl-5{--sd-gutter-y: 3rem}.sd-g-xl-5,.sd-gx-xl-5{--sd-gutter-x: 3rem}}.sd-flex-row-reverse{flex-direction:row-reverse !important}details.sd-dropdown{position:relative;font-size:var(--sd-fontsize-dropdown)}details.sd-dropdown:hover{cursor:pointer}details.sd-dropdown .sd-summary-content{cursor:default}details.sd-dropdown summary.sd-summary-title{padding:.5em .6em .5em 1em;font-size:var(--sd-fontsize-dropdown-title);font-weight:var(--sd-fontweight-dropdown-title);user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-user-select:none;list-style:none;display:inline-flex;justify-content:space-between}details.sd-dropdown summary.sd-summary-title::-webkit-details-marker{display:none}details.sd-dropdown summary.sd-summary-title:focus{outline:none}details.sd-dropdown summary.sd-summary-title .sd-summary-icon{margin-right:.6em;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-icon svg{opacity:.8}details.sd-dropdown summary.sd-summary-title .sd-summary-text{flex-grow:1;line-height:1.5;padding-right:.5rem}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker{pointer-events:none;display:inline-flex;align-items:center}details.sd-dropdown summary.sd-summary-title .sd-summary-state-marker svg{opacity:.6}details.sd-dropdown summary.sd-summary-title:hover .sd-summary-state-marker svg{opacity:1;transform:scale(1.1)}details.sd-dropdown[open] summary .sd-octicon.no-title{visibility:hidden}details.sd-dropdown .sd-summary-chevron-right{transition:.25s}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-right{transform:rotate(90deg)}details.sd-dropdown[open]>.sd-summary-title .sd-summary-chevron-down{transform:rotate(180deg)}details.sd-dropdown:not([open]).sd-card{border:none}details.sd-dropdown:not([open])>.sd-card-header{border:1px solid var(--sd-color-card-border);border-radius:.25rem}details.sd-dropdown.sd-fade-in[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out;animation:sd-fade-in .5s ease-in-out}details.sd-dropdown.sd-fade-in-slide-down[open] summary~*{-moz-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;-webkit-animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out;animation:sd-fade-in .5s ease-in-out,sd-slide-down .5s ease-in-out}.sd-col>.sd-dropdown{width:100%}.sd-summary-content>.sd-tab-set:first-child{margin-top:0}@keyframes sd-fade-in{0%{opacity:0}100%{opacity:1}}@keyframes sd-slide-down{0%{transform:translate(0, -10px)}100%{transform:translate(0, 0)}}.sd-tab-set{border-radius:.125rem;display:flex;flex-wrap:wrap;margin:1em 0;position:relative}.sd-tab-set>input{opacity:0;position:absolute}.sd-tab-set>input:checked+label{border-color:var(--sd-color-tabs-underline-active);color:var(--sd-color-tabs-label-active)}.sd-tab-set>input:checked+label+.sd-tab-content{display:block}.sd-tab-set>input:not(:checked)+label:hover{color:var(--sd-color-tabs-label-hover);border-color:var(--sd-color-tabs-underline-hover)}.sd-tab-set>input:focus+label{outline-style:auto}.sd-tab-set>input:not(.focus-visible)+label{outline:none;-webkit-tap-highlight-color:transparent}.sd-tab-set>label{border-bottom:.125rem solid transparent;margin-bottom:0;color:var(--sd-color-tabs-label-inactive);border-color:var(--sd-color-tabs-underline-inactive);cursor:pointer;font-size:var(--sd-fontsize-tabs-label);font-weight:700;padding:1em 1.25em .5em;transition:color 250ms;width:auto;z-index:1}html .sd-tab-set>label:hover{color:var(--sd-color-tabs-label-active)}.sd-col>.sd-tab-set{width:100%}.sd-tab-content{box-shadow:0 -0.0625rem var(--sd-color-tabs-overline),0 .0625rem var(--sd-color-tabs-underline);display:none;order:99;padding-bottom:.75rem;padding-top:.75rem;width:100%}.sd-tab-content>:first-child{margin-top:0 !important}.sd-tab-content>:last-child{margin-bottom:0 !important}.sd-tab-content>.sd-tab-set{margin:0}.sd-sphinx-override,.sd-sphinx-override *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.sd-sphinx-override p{margin-top:0}:root{--sd-color-primary: #0071bc;--sd-color-secondary: #6c757d;--sd-color-success: #28a745;--sd-color-info: #17a2b8;--sd-color-warning: #f0b37e;--sd-color-danger: #dc3545;--sd-color-light: #f8f9fa;--sd-color-muted: #6c757d;--sd-color-dark: #212529;--sd-color-black: black;--sd-color-white: white;--sd-color-primary-highlight: #0060a0;--sd-color-secondary-highlight: #5c636a;--sd-color-success-highlight: #228e3b;--sd-color-info-highlight: #148a9c;--sd-color-warning-highlight: #cc986b;--sd-color-danger-highlight: #bb2d3b;--sd-color-light-highlight: #d3d4d5;--sd-color-muted-highlight: #5c636a;--sd-color-dark-highlight: #1c1f23;--sd-color-black-highlight: black;--sd-color-white-highlight: #d9d9d9;--sd-color-primary-bg: rgba(0, 113, 188, 0.2);--sd-color-secondary-bg: rgba(108, 117, 125, 0.2);--sd-color-success-bg: rgba(40, 167, 69, 0.2);--sd-color-info-bg: rgba(23, 162, 184, 0.2);--sd-color-warning-bg: rgba(240, 179, 126, 0.2);--sd-color-danger-bg: rgba(220, 53, 69, 0.2);--sd-color-light-bg: rgba(248, 249, 250, 0.2);--sd-color-muted-bg: rgba(108, 117, 125, 0.2);--sd-color-dark-bg: rgba(33, 37, 41, 0.2);--sd-color-black-bg: rgba(0, 0, 0, 0.2);--sd-color-white-bg: rgba(255, 255, 255, 0.2);--sd-color-primary-text: #fff;--sd-color-secondary-text: #fff;--sd-color-success-text: #fff;--sd-color-info-text: #fff;--sd-color-warning-text: #212529;--sd-color-danger-text: #fff;--sd-color-light-text: #212529;--sd-color-muted-text: #fff;--sd-color-dark-text: #fff;--sd-color-black-text: #fff;--sd-color-white-text: #212529;--sd-color-shadow: rgba(0, 0, 0, 0.15);--sd-color-card-border: rgba(0, 0, 0, 0.125);--sd-color-card-border-hover: hsla(231, 99%, 66%, 1);--sd-color-card-background: transparent;--sd-color-card-text: inherit;--sd-color-card-header: transparent;--sd-color-card-footer: transparent;--sd-color-tabs-label-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1);--sd-color-tabs-label-inactive: hsl(0, 0%, 66%);--sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1);--sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62);--sd-color-tabs-underline-inactive: transparent;--sd-color-tabs-overline: rgb(222, 222, 222);--sd-color-tabs-underline: rgb(222, 222, 222);--sd-fontsize-tabs-label: 1rem;--sd-fontsize-dropdown: inherit;--sd-fontsize-dropdown-title: 1rem;--sd-fontweight-dropdown-title: 700} sphinx-design-0.6.1/sphinx_design/dropdown.py000066400000000000000000000175071465316142500213670ustar00rootroot00000000000000"""Originally Adapted from sphinxcontrib.details.directive""" from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.transforms.post_transforms import SphinxPostTransform from sphinx_design.shared import ( SEMANTIC_COLORS, SdDirective, create_component, is_component, make_choice, margin_option, ) from ._compat import findall from .icons import get_octicon, list_octicons def setup_dropdown(app: Sphinx) -> None: app.add_node(dropdown_main, html=(visit_dropdown_main, depart_dropdown_main)) app.add_node(dropdown_title, html=(visit_dropdown_title, depart_dropdown_title)) app.add_directive("dropdown", DropdownDirective) app.add_post_transform(DropdownHtmlTransform) class dropdown_main(nodes.Element, nodes.General): # noqa: N801 pass class dropdown_title(nodes.TextElement, nodes.General): # noqa: N801 pass def visit_dropdown_main(self, node): if node.get("opened"): self.body.append(self.starttag(node, "details", open="open")) else: self.body.append(self.starttag(node, "details")) def depart_dropdown_main(self, node): self.body.append("") def visit_dropdown_title(self, node): self.body.append(self.starttag(node, "summary")) def depart_dropdown_title(self, node): self.body.append("") class DropdownDirective(SdDirective): """A directive to generate a collapsible container. Note: This directive generates a single container, for the title (optional) and content:: ...title nodes ...content nodes This allows for a default rendering in non-HTML outputs. The ``DropdownHtmlTransform`` then transforms this container into the HTML specific structure. """ optional_arguments = 1 # title of dropdown final_argument_whitespace = True has_content = True option_spec = { "open": directives.flag, # make open by default "color": make_choice(SEMANTIC_COLORS), "icon": make_choice(list_octicons()), "chevron": make_choice( ["right-down", "down-up"] ), # chevron direction closed-open "animate": make_choice(("fade-in", "fade-in-slide-down")), "margin": margin_option, "name": directives.unchanged, "class-container": directives.class_option, "class-title": directives.class_option, "class-body": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: # default classes classes = { "container_classes": self.options.get("margin", ["sd-mb-3"]) + self.options.get("class-container", []), "title_classes": self.options.get("class-title", []), "body_classes": self.options.get("class-body", []), } # add color classes title_color = self.options.get("color") if title_color: classes["title_classes"].extend( [f"sd-bg-{title_color}", f"sd-bg-text-{title_color}"] ) # add animation classes if ( "animate" in self.options and ("sd-" + self.options["animate"]) not in classes["container_classes"] ): classes["container_classes"].append("sd-" + self.options["animate"]) container = create_component( "dropdown", opened="open" in self.options, type="dropdown", has_title=len(self.arguments) > 0, icon=self.options.get("icon"), chevron=self.options.get("chevron"), **classes, ) self.set_source_info(container) if self.arguments: textnodes, messages = self.state.inline_text(self.arguments[0], self.lineno) title_node = nodes.rubric(self.arguments[0], "", *textnodes) container += title_node container += messages # where possible we add the target to the title node, # so that it can be used as the reference text self.add_name(title_node) else: self.add_name(container) self.state.nested_parse(self.content, self.content_offset, container) return [container] class DropdownHtmlTransform(SphinxPostTransform): """Transform dropdown containers into the HTML specific AST structures::
...title nodes
...content nodes """ default_priority = 199 formats = ("html",) def run(self) -> None: """Run the transform""" document: nodes.document = self.document for node in findall(document)(lambda node: is_component(node, "dropdown")): # TODO option to not have card css (but requires more formatting) use_card = True marker_type = ( "chevron-down" if node["chevron"] == "down-up" else "chevron-right" ) state_marker = nodes.inline( "", "", nodes.raw( "", nodes.Text(get_octicon(marker_type, height="1.5em")), format="html", ), classes=["sd-summary-state-marker", f"sd-summary-{marker_type}"], ) newnode = dropdown_main( opened=node["opened"], classes=["sd-sphinx-override", "sd-dropdown"] + (["sd-card"] if use_card else ["sd-d-flex-column"]) + node["container_classes"], ) if node["has_title"]: title_text_children = node[0].children if node[0].get("ids"): newnode["ids"] += node[0]["ids"] body_children = node[1:] else: title_text_children = [ nodes.raw( "...", nodes.Text( get_octicon( "kebab-horizontal", height="1.5em", classes=["no-title"] ) ), format="html", ) ] body_children = node.children title_text_node = nodes.inline( "", "", *title_text_children, classes=["sd-summary-text"], ) title_children = [title_text_node, state_marker] if node["icon"]: title_children.insert( 0, nodes.raw( "", get_octicon(node["icon"], height="1em"), classes=["sd-summary-icon"], format="html", ), ) newnode += dropdown_title( "", "", *title_children, classes=["sd-summary-title"] + (["sd-card-header"] if use_card else []) + node["title_classes"], ) body_node = create_component( "dropdown-body", classes=["sd-summary-content"] + (["sd-card-body"] if use_card else []) + node["body_classes"], children=body_children, ) if use_card: for para in findall(body_node)(nodes.paragraph): para["classes"] = ([] if "classes" in para else para["classes"]) + [ "sd-card-text" ] newnode += body_node # newnode += open_marker node.replace_self(newnode) sphinx-design-0.6.1/sphinx_design/extension.py000066400000000000000000000150421465316142500215370ustar00rootroot00000000000000from contextlib import contextmanager from functools import partial import hashlib from pathlib import Path from docutils import nodes from docutils.parsers.rst import directives from sphinx import version_info as sphinx_version from sphinx.application import Sphinx from sphinx.environment import BuildEnvironment from sphinx.transforms import SphinxTransform from . import compiled as static_module from ._compat import findall, read_text from .article_info import setup_article_info from .badges_buttons import setup_badges_and_buttons from .cards import setup_cards from .dropdown import setup_dropdown from .grids import setup_grids from .icons import setup_icons from .shared import ( PassthroughTextElement, SdDirective, create_component, setup_custom_directives, ) from .tabs import setup_tabs def setup_extension(app: Sphinx) -> None: """Set up the sphinx extension.""" app.connect("builder-inited", update_css_js) app.connect("env-updated", update_css_links) # we override container html visitors, to stop the default behaviour # of adding the `container` class to all nodes.container app.add_node( nodes.container, override=True, html=(visit_container, depart_container) ) app.add_node( PassthroughTextElement, html=(visit_depart_null, visit_depart_null), latex=(visit_depart_null, visit_depart_null), text=(visit_depart_null, visit_depart_null), man=(visit_depart_null, visit_depart_null), texinfo=(visit_depart_null, visit_depart_null), ) with capture_directives(app) as directive_map: app.add_directive("div", Div, override=True) app.add_transform(AddFirstTitleCss) setup_badges_and_buttons(app) setup_cards(app) setup_grids(app) setup_dropdown(app) setup_icons(app) setup_tabs(app) setup_article_info(app) app.add_config_value("sd_custom_directives", {}, "env") app.connect( "config-inited", partial(setup_custom_directives, directive_map=directive_map) ) @contextmanager def capture_directives(app: Sphinx): """Capture the directives that are registered by the extension.""" directive_map = {} add_directive = app.add_directive def _add_directive(name, directive, **kwargs): directive_map[name] = directive add_directive(name, directive, **kwargs) app.add_directive = _add_directive yield directive_map app.add_directive = add_directive def update_css_js(app: Sphinx): """Copy the CSS to the build directory.""" # reset changed identifier app.env.sphinx_design_css_changed = False # setup up new static path in output dir static_path = (Path(app.outdir) / "_sphinx_design_static").absolute() static_existed = static_path.exists() static_path.mkdir(exist_ok=True) app.config.html_static_path.append(str(static_path)) # Copy JS to the build directory. js_path = static_path / "design-tabs.js" app.add_js_file(js_path.name) if not js_path.exists(): content = read_text(static_module, "sd_tabs.js") js_path.write_text(content) # Read the css content and hash it content = read_text(static_module, "style.min.css") # Write the css file if sphinx_version < (7, 1): hash = hashlib.md5(content.encode("utf8"), usedforsecurity=False).hexdigest() css_path = static_path / f"sphinx-design.{hash}.min.css" else: # since sphinx 7.1 a checksum is added to the css file URL, so there is no need to do it here # https://github.com/sphinx-doc/sphinx/pull/11415 css_path = static_path / "sphinx-design.min.css" app.add_css_file(css_path.name) if css_path.exists(): return if static_existed: app.env.sphinx_design_css_changed = True for path in static_path.glob("*.css"): path.unlink() css_path.write_text(content, encoding="utf8") def update_css_links(app: Sphinx, env: BuildEnvironment): """If CSS has changed, all files must be re-written, to include the correct stylesheets.""" if env.sphinx_design_css_changed: return list(env.all_docs.keys()) def visit_container(self, node: nodes.Node): classes = "docutils container" attrs = {} if node.get("is_div", False): # we don't want the CSS for container for these nodes classes = "docutils" if "style" in node: attrs["style"] = node["style"] self.body.append(self.starttag(node, "div", CLASS=classes, **attrs)) def depart_container(self, node: nodes.Node): self.body.append("
\n") def visit_depart_null(self, node: nodes.Element) -> None: """visit/depart passthrough""" class Div(SdDirective): """Same as the ``container`` directive, but does not add the ``container`` class in HTML outputs, which can interfere with Bootstrap CSS. """ optional_arguments = 1 # css classes final_argument_whitespace = True option_spec = {"style": directives.unchanged, "name": directives.unchanged} has_content = True def run_with_defaults(self) -> list[nodes.Node]: try: if self.arguments: classes = directives.class_option(self.arguments[0]) else: classes = [] except ValueError as exc: raise self.error( f'Invalid class attribute value for "{self.name}" directive: "{self.arguments[0]}".' ) from exc node = create_component("div", rawtext="\n".join(self.content), classes=classes) if "style" in self.options: node["style"] = self.options["style"] self.set_source_info(node) self.add_name(node) if self.content: self.state.nested_parse(self.content, self.content_offset, node) return [node] class AddFirstTitleCss(SphinxTransform): """Add a CSS class to to the first sections title.""" default_priority = 699 # priority main def apply(self): hide = False for docinfo in findall(self.document)(nodes.docinfo): for name in findall(docinfo)(nodes.field_name): if name.astext() == "sd_hide_title": hide = True break break if not hide: return for section in findall(self.document)(nodes.section): if isinstance(section.children[0], nodes.title): if "classes" in section.children[0]: section.children[0]["classes"].append("sd-d-none") else: section.children[0]["classes"] = ["sd-d-none"] break sphinx-design-0.6.1/sphinx_design/grids.py000066400000000000000000000230551465316142500206360ustar00rootroot00000000000000from typing import Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.util.logging import getLogger from .cards import CardDirective from .shared import ( WARNING_TYPE, SdDirective, create_component, is_component, make_choice, margin_option, padding_option, text_align, ) LOGGER = getLogger(__name__) DIRECTIVE_NAME_GRID = "grid" DIRECTIVE_NAME_GRID_ITEM = "grid-item" DIRECTIVE_NAME_GRID_ITEM_CARD = "grid-item-card" def setup_grids(app: Sphinx): """Setup the grid components.""" app.add_directive(DIRECTIVE_NAME_GRID, GridDirective) app.add_directive(DIRECTIVE_NAME_GRID_ITEM, GridItemDirective) app.add_directive(DIRECTIVE_NAME_GRID_ITEM_CARD, GridItemCardDirective) def _media_option( argument: Optional[str], prefix: str, *, allow_auto: bool = False, min_num: int = 1, max_num: int = 12, ) -> list[str]: """Validate the number of columns (out of 12). One or four integers (for "xs sm md lg") between 1 and 12. """ validate_error_msg = ( "argument must be 1 or 4 (xs sm md lg) values, and each value should be " f"{'either auto or ' if allow_auto else ''}an integer from {min_num} to {max_num}" ) if argument is None: raise ValueError(validate_error_msg) values = argument.strip().split() if len(values) == 1: values = [values[0], values[0], values[0], values[0]] if len(values) != 4: raise ValueError(validate_error_msg) for value in values: if allow_auto and value == "auto": continue try: int_value = int(value) except Exception as exc: raise ValueError(validate_error_msg) from exc if not (min_num <= int_value <= max_num): raise ValueError(validate_error_msg) return [f"{prefix}{values[0]}"] + [ f"{prefix}{size}-{value}" for size, value in zip(["xs", "sm", "md", "lg"], values) ] def row_columns_option(argument: Optional[str]) -> list[str]: """Validate the number of columns (out of 12) a grid row will have. One or four integers (for "xs sm md lg") between 1 and 12 (or 'auto'). """ return _media_option(argument, "sd-row-cols-", allow_auto=True) def item_columns_option(argument: Optional[str]) -> list[str]: """Validate the number of columns (out of 12) a grid-item will take up. One or four integers (for "xs sm md lg") between 1 and 12 (or 'auto'). """ return _media_option(argument, "sd-col-", allow_auto=True) def gutter_option(argument: Optional[str]) -> list[str]: """Validate the gutter size between grid items. One or four integers (for "xs sm md lg") between 0 and 5. """ return _media_option(argument, "sd-g-", min_num=0, max_num=5) class GridDirective(SdDirective): """A grid component, which is a container for grid items (i.e. columns).""" has_content = True required_arguments = 0 optional_arguments = 1 # columns final_argument_whitespace = True option_spec = { "gutter": gutter_option, "margin": margin_option, "padding": padding_option, "outline": directives.flag, "reverse": directives.flag, "class-container": directives.class_option, "class-row": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: try: column_classes = ( row_columns_option(self.arguments[0]) if self.arguments else [] ) except ValueError as exc: raise self.error(f"Invalid directive argument: {exc}") from exc self.assert_has_content() # container-fluid is 100% width for all breakpoints, # rather than the fixed width of the breakpoint (like container) grid_classes = ["sd-container-fluid", "sd-sphinx-override"] container = create_component( "grid-container", grid_classes + self.options.get("margin", ["sd-mb-4"]) + self.options.get("padding", []) + (["sd-border-1"] if "outline" in self.options else []) + self.options.get("class-container", []), ) self.set_source_info(container) row = create_component( "grid-row", ["sd-row"] + column_classes + self.options.get("gutter", []) + (["sd-flex-row-reverse"] if "reverse" in self.options else []) + self.options.get("class-row", []), ) self.set_source_info(row) container += row self.state.nested_parse(self.content, self.content_offset, row) # each item in a row should be a column for item in row.children: if not is_component(item, "grid-item"): LOGGER.warning( f"All children of a 'grid-row' " f"should be 'grid-item' [{WARNING_TYPE}.grid]", location=item, type=WARNING_TYPE, subtype="grid", ) break return [container] class GridItemDirective(SdDirective): """An item within a grid row. Can "occupy" 1 to 12 columns. """ has_content = True option_spec = { "columns": item_columns_option, "margin": margin_option, "padding": padding_option, "child-direction": make_choice(["column", "row"]), "child-align": make_choice(["start", "end", "center", "justify", "spaced"]), "outline": directives.flag, "class": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: if not is_component(self.state_machine.node, "grid-row"): LOGGER.warning( f"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="grid", ) column = create_component( "grid-item", [ "sd-col", f"sd-d-flex-{self.options.get('child-direction', 'column')}", ] + self.options.get("columns", []) + self.options.get("margin", []) + self.options.get("padding", []) + ( [f'sd-align-major-{self.options["child-align"]}'] if "child-align" in self.options else [] ) + (["sd-border-1"] if "outline" in self.options else []) + self.options.get("class", []), ) self.set_source_info(column) self.state.nested_parse(self.content, self.content_offset, column) return [column] class GridItemCardDirective(SdDirective): """An item within a grid row, with an internal card.""" has_content = True required_arguments = 0 optional_arguments = 1 # card title final_argument_whitespace = True option_spec = { "columns": item_columns_option, "margin": margin_option, "padding": padding_option, "class-item": directives.class_option, # The options below must be sync'ed with CardDirective.option_spec (minus margin). "width": make_choice(["auto", "25%", "50%", "75%", "100%"]), "text-align": text_align, "img-background": directives.uri, "img-top": directives.uri, "img-bottom": directives.uri, "img-alt": directives.unchanged, "link": directives.uri, "link-type": make_choice(["url", "any", "ref", "doc"]), "link-alt": directives.unchanged, "shadow": make_choice(["none", "sm", "md", "lg"]), "class-card": directives.class_option, "class-body": directives.class_option, "class-title": directives.class_option, "class-header": directives.class_option, "class-footer": directives.class_option, "class-img-top": directives.class_option, "class-img-bottom": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: if not is_component(self.state_machine.node, "grid-row"): LOGGER.warning( f"The parent of a 'grid-item' should be a 'grid-row' [{WARNING_TYPE}.grid]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="grid", ) column = create_component( "grid-item", [ "sd-col", "sd-d-flex-row", *self.options.get("columns", []), *self.options.get("margin", []), *self.options.get("padding", []), *self.options.get("class-item", []), ], ) card_options = { key: value for key, value in self.options.items() if key in [ "width", "text-align", "img-background", "img-top", "img-bottom", "img-alt", "link", "link-type", "link-alt", "shadow", "class-card", "class-body", "class-title", "class-header", "class-footer", "class-img-top", "class-img-bottom", ] } if "width" not in card_options: card_options["width"] = "100%" card_options["margin"] = [] card = CardDirective.create_card(self, self.arguments, card_options) column += card return [column] sphinx-design-0.6.1/sphinx_design/icons.py000066400000000000000000000251071465316142500206410ustar00rootroot00000000000000from collections.abc import Sequence from functools import lru_cache import json import re from typing import Any, Optional from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.util import logging from sphinx.util.docutils import SphinxRole from . import compiled from ._compat import read_text from .shared import WARNING_TYPE, SdDirective logger = logging.getLogger(__name__) OCTICON_VERSION = "v19.8.0" OCTICON_CSS = """\ .octicon { display: inline-block; vertical-align: text-top; fill: currentColor; }""" def setup_icons(app: Sphinx) -> None: app.add_role("octicon", OcticonRole()) app.add_directive("_all-octicon", AllOcticons) for style in ["fa", "fas", "fab", "far"]: # note: fa is deprecated in v5, fas is the default and fab is the other free option app.add_role(style, FontawesomeRole(style)) for style in ["regular", "outlined", "round", "sharp", "twotone"]: app.add_role("material-" + style, MaterialRole(style)) app.add_config_value("sd_fontawesome_latex", False, "env") app.connect("config-inited", add_fontawesome_pkg) app.add_node( fontawesome, html=(visit_fontawesome_html, depart_fontawesome_html), latex=(visit_fontawesome_latex, None), man=(visit_fontawesome_warning, None), text=(visit_fontawesome_warning, None), texinfo=(visit_fontawesome_warning, None), ) @lru_cache(1) def get_octicon_data() -> dict[str, Any]: """Load all octicon data.""" content = read_text(compiled, "octicons.json") return json.loads(content) def list_octicons() -> list[str]: """List available octicon names.""" return list(get_octicon_data().keys()) HEIGHT_REGEX = re.compile(r"^(?P\d+(\.\d+)?)(?Ppx|em|rem)$") def get_octicon( name: str, height: str = "1em", classes: Sequence[str] = (), aria_label: Optional[str] = None, ) -> str: """Return the HTML for an GitHub octicon SVG icon. :height: the height of the octicon, with suffix unit 'px', 'em' or 'rem'. """ try: data = get_octicon_data()[name] except KeyError as exc: raise KeyError(f"Unrecognised octicon: {name}") from exc match = HEIGHT_REGEX.match(height) if not match: raise ValueError( f"Invalid height: '{height}', must be format " ) height_value = round(float(match.group("value")), 3) height_unit = match.group("unit") original_height = 16 if "16" not in data["heights"]: original_height = int(next(iter(data["heights"].keys()))) elif "24" in data["heights"]: if height_unit == "px": if height_value >= 24: original_height = 24 elif height_value >= 1.5: original_height = 24 original_width = data["heights"][str(original_height)]["width"] width_value = round(original_width * height_value / original_height, 3) content = data["heights"][str(original_height)]["path"] options = { "version": "1.1", "width": f"{width_value}{height_unit}", "height": f"{height_value}{height_unit}", "class": " ".join(("sd-octicon", f"sd-octicon-{name}", *classes)), } options["viewBox"] = f"0 0 {original_width} {original_height}" if aria_label is not None: options["aria-label"] = aria_label options["role"] = "img" else: options["aria-hidden"] = "true" opt_string = " ".join(f'{k}="{v}"' for k, v in options.items()) return f"{content}" class OcticonRole(SphinxRole): """Role to display a GitHub octicon SVG. Additional classes can be added to the element after a semicolon. """ def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" values = self.text.split(";") if ";" in self.text else [self.text] icon = values[0] height = "1em" if len(values) < 2 else values[1] classes = "" if len(values) < 3 else values[2] icon = icon.strip() try: svg = get_octicon(icon, height=height, classes=classes.split()) except Exception as exc: msg = self.inliner.reporter.error( f"Invalid octicon content: {exc}", line=self.lineno, ) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] node = nodes.raw("", nodes.Text(svg), format="html") self.set_source_info(node) return [node], [] class AllOcticons(SdDirective): """Directive to generate all octicon icons. Primarily for self documentation. """ option_spec = { "class": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: classes = self.options.get("class", []) table = nodes.table() group = nodes.tgroup(cols=2) table += group group.extend( ( nodes.colspec(colwidth=1), nodes.colspec(colwidth=1), ) ) body = nodes.tbody() group += body for icon in list_octicons(): row = nodes.row() body += row cell = nodes.entry() row += cell cell += nodes.literal(icon, icon) cell = nodes.entry() row += cell cell += nodes.raw( "", get_octicon(icon, classes=classes), format="html", ) return [table] class fontawesome(nodes.Element, nodes.General): # noqa: N801 """Node for rendering fontawesome icon.""" class FontawesomeRole(SphinxRole): """Role to display a Fontawesome icon. Additional classes can be added to the element after a semicolon. """ def __init__(self, style: str) -> None: super().__init__() self.style = style def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" icon, classes = self.text.split(";", 1) if ";" in self.text else [self.text, ""] icon = icon.strip() node = fontawesome( icon=icon, classes=[self.style, f"fa-{icon}", *classes.split()] ) self.set_source_info(node) return [node], [] def visit_fontawesome_html(self, node): self.body.append(self.starttag(node, "span", "")) def depart_fontawesome_html(self, node): self.body.append("") def add_fontawesome_pkg(app, config): if app.config.sd_fontawesome_latex: app.add_latex_package("fontawesome") def visit_fontawesome_latex(self, node): """Add latex fonteawesome icon, if configured, else warn.""" if self.config.sd_fontawesome_latex: self.body.append(f"\\faicon{{{node['icon']}}}") else: logger.warning( "Fontawesome icons not included in LaTeX output, " f"consider 'sd_fontawesome_latex=True' [{WARNING_TYPE}.fa-build]", location=node, type=WARNING_TYPE, subtype="fa-build", ) raise nodes.SkipNode def visit_fontawesome_warning(self, node: nodes.Element) -> None: """Warn that fontawesome is not supported for this builder.""" logger.warning( "Fontawesome icons not supported for builder: " f"{self.builder.name} [{WARNING_TYPE}.fa-build]", location=node, type=WARNING_TYPE, subtype="fa-build", ) raise nodes.SkipNode @lru_cache(1) def get_material_icon_data(style: str) -> dict[str, Any]: """Load all octicon data.""" content = read_text(compiled, f"material_{style}.json") return json.loads(content) def get_material_icon( style: str, name: str, height: str = "1em", classes: Sequence[str] = (), aria_label: Optional[str] = None, ) -> str: """Return the HTML for an Google material icon SVG icon. :height: the height of the material icon, with suffix unit 'px', 'em' or 'rem'. """ try: data = get_material_icon_data(style)[name] except KeyError as exc: raise KeyError(f"Unrecognised material-{style} icon: {name}") from exc match = HEIGHT_REGEX.match(height) if not match: raise ValueError( f"Invalid height: '{height}', must be format " ) height_value = round(float(match.group("value")), 3) height_unit = match.group("unit") original_height = 20 if "20" not in data["heights"]: original_height = int(next(iter(data["heights"].keys()))) elif "24" in data["heights"]: if height_unit == "px": if height_value >= 24: original_height = 24 elif height_value >= 1.5: original_height = 24 original_width = data["heights"][str(original_height)]["width"] width_value = round(original_width * height_value / original_height, 3) content = data["heights"][str(original_height)]["path"] options = { "version": "4.0.0.63c5cb3", "width": f"{width_value}{height_unit}", "height": f"{height_value}{height_unit}", "class": " ".join(("sd-material-icon", f"sd-material-icon-{name}", *classes)), } options["viewBox"] = f"0 0 {original_width} {original_height}" if aria_label is not None: options["aria-label"] = aria_label options["role"] = "img" else: options["aria-hidden"] = "true" opt_string = " ".join(f'{k}="{v}"' for k, v in options.items()) return f"{content}" class MaterialRole(SphinxRole): """Role to display a Material-* icon. Additional classes can be added to the element after a semicolon. """ def __init__(self, style: str) -> None: super().__init__() self.style = style def run(self) -> tuple[list[nodes.Node], list[nodes.system_message]]: """Run the role.""" values = self.text.split(";") if ";" in self.text else [self.text] icon = values[0] height = "1em" if len(values) < 2 else values[1] classes = "" if len(values) < 3 else values[2] icon = icon.strip() try: svg = get_material_icon( self.style, icon, height=height, classes=classes.split() ) except Exception as exc: msg = self.inliner.reporter.error( f"Invalid material-{self.style} icon content: {type(exc)} {exc}", line=self.lineno, ) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] node = nodes.raw("", nodes.Text(svg), format="html") self.set_source_info(node) return [node], [] sphinx-design-0.6.1/sphinx_design/py.typed000066400000000000000000000000321465316142500206410ustar00rootroot00000000000000# Marker file for PEP 561 sphinx-design-0.6.1/sphinx_design/shared.py000066400000000000000000000155411465316142500207750ustar00rootroot00000000000000"""Shared constants and functions.""" from __future__ import annotations from collections.abc import Sequence from typing import final from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.config import Config from sphinx.util.docutils import SphinxDirective from sphinx.util.logging import getLogger LOGGER = getLogger(__name__) WARNING_TYPE = "design" SEMANTIC_COLORS = ( "primary", "secondary", "success", "info", "warning", "danger", "light", "muted", "dark", "white", "black", ) def setup_custom_directives( app: Sphinx, config: Config, directive_map: dict[str, SdDirective] ) -> None: conf_value = config.sd_custom_directives def _warn(msg): LOGGER.warning( f"sd_custom_directives: {msg}", type=WARNING_TYPE, subtype="config" ) if not isinstance(conf_value, dict): _warn("must be a dictionary") config.sd_custom_directives = {} return for name, data in conf_value.items(): if not isinstance(name, str): _warn(f"key must be a string: {name!r}") continue if not isinstance(data, dict): _warn(f"{name!r} value must be a dictionary") continue if "inherit" not in data: _warn(f"{name!r} value must have an 'inherit' key") continue if data["inherit"] not in directive_map: _warn(f"'{name}.inherit' is an unknown directive key: {data['inherit']}") continue directive_cls = directive_map[data["inherit"]] if "options" in data: if not isinstance(data["options"], dict): _warn(f"'{name}.options' value must be a dictionary") continue if "argument" in data and not isinstance(data["argument"], str): _warn(f"'{name}.argument' value must be a string") continue for key, value in data["options"].items(): if key not in directive_cls.option_spec: _warn(f"'{name}.options' unknown key {key!r}") continue if not isinstance(value, str): _warn(f"'{name}.options.{key}' value must be a string") continue app.add_directive(name, directive_cls, override=True) class SdDirective(SphinxDirective): """Base class for all sphinx-design directives. Having a base class allows for shared functionality to be implemented in one place. Namely, we allow for default options to be configured, per directive name. This class should be sub-classed by all directives in the sphinx-design extension. """ # TODO perhaps ideally there would be separate sphinx extension, # that generalises the concept of default directive options (that does not require subclassing) # but for now I couldn't think of a trivial way to achieve this. @final def run(self) -> list[nodes.Node]: """Run the directive. This method should not be overridden, instead override `run_with_defaults`. """ if data := self.config.sd_custom_directives.get(self.name): if (not self.arguments) and (argument := data.get("argument")): # type: ignore[has-type] self.arguments = [str(argument)] for key, value in data.get("options", {}).items(): if key not in self.options and key in self.option_spec: try: self.options[key] = self.option_spec[key](str(value)) except Exception as exc: LOGGER.warning( f"Invalid default option {key!r} for {self.name!r}: {exc}", type=WARNING_TYPE, subtype="directive", location=(self.env.docname, self.lineno), ) return self.run_with_defaults() def run_with_defaults(self) -> list[nodes.Node]: """Run the directive, after default options have been set. This method should be overridden by subclasses. """ raise NotImplementedError def create_component( name: str, classes: Sequence[str] = (), *, rawtext: str = "", children: Sequence[nodes.Node] = (), **attributes, ) -> nodes.container: """Create a container node for a design component.""" node = nodes.container( rawtext, is_div=True, design_component=name, classes=list(classes), **attributes ) node.extend(children) return node def is_component(node: nodes.Node, name: str): """Check if a node is a certain design component.""" try: return node.get("design_component") == name except AttributeError: return False def make_choice(choices: Sequence[str]): """Create a choice validator.""" return lambda argument: directives.choice(argument, choices) def _margin_or_padding_option( argument: str | None, class_prefix: str, allowed: Sequence[str], ) -> list[str]: """Validate the margin/padding is one (all) or four (top bottom left right) integers, between 0 and 5 or 'auto'. """ if argument is None: raise ValueError("argument required but none supplied") values = argument.split() for value in values: if value not in allowed: raise ValueError(f"{value} is not in: {allowed}") if len(values) == 1: return [f"{class_prefix}-{values[0]}"] if len(values) == 4: return [ f"{class_prefix}{side}-{value}" for side, value in zip(["t", "b", "l", "r"], values) ] raise ValueError( "argument must be one (all) or four (top bottom left right) integers" ) def margin_option(argument: str | None) -> list[str]: """Validate the margin is one (all) or four (top bottom left right) integers, between 0 and 5 or 'auto'. """ return _margin_or_padding_option( argument, "sd-m", ("auto", "0", "1", "2", "3", "4", "5") ) def padding_option(argument: str | None) -> list[str]: """Validate the padding is one (all) or four (top bottom left right) integers, between 0 and 5. """ return _margin_or_padding_option(argument, "sd-p", ("0", "1", "2", "3", "4", "5")) def text_align(argument: str | None) -> list[str]: """Validate the text align is left, right, center or justify.""" value = directives.choice(argument, ["left", "right", "center", "justify"]) return [f"sd-text-{value}"] class PassthroughTextElement(nodes.TextElement): """A text element which will not render anything. This is required for reference node to render correctly outside of paragraphs. Since sphinx expects them to be within a ``TextElement``: https://github.com/sphinx-doc/sphinx/blob/068f802df90ea790f89319094e407c4d5f6c26ff/sphinx/writers/html5.py#L224 """ sphinx-design-0.6.1/sphinx_design/tabs.py000066400000000000000000000236531465316142500204630ustar00rootroot00000000000000from docutils import nodes from docutils.parsers.rst import directives from sphinx.application import Sphinx from sphinx.transforms.post_transforms import SphinxPostTransform from sphinx.util.logging import getLogger from ._compat import findall from .shared import WARNING_TYPE, SdDirective, create_component, is_component LOGGER = getLogger(__name__) def setup_tabs(app: Sphinx) -> None: app.add_directive("tab-set", TabSetDirective) app.add_directive("tab-item", TabItemDirective) app.add_directive("tab-set-code", TabSetCodeDirective) app.add_post_transform(TabSetHtmlTransform) app.add_node(sd_tab_input, html=(visit_tab_input, depart_tab_input)) app.add_node(sd_tab_label, html=(visit_tab_label, depart_tab_label)) class TabSetDirective(SdDirective): """A container for a set of tab items.""" has_content = True option_spec = { "sync-group": directives.unchanged_required, "class": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: self.assert_has_content() tab_set = create_component( "tab-set", classes=["sd-tab-set", *self.options.get("class", [])] ) self.set_source_info(tab_set) self.state.nested_parse(self.content, self.content_offset, tab_set) for item in tab_set.children: if not is_component(item, "tab-item"): LOGGER.warning( f"All children of a 'tab-set' " f"should be 'tab-item' [{WARNING_TYPE}.tab]", location=item, type=WARNING_TYPE, subtype="tab", ) break if "sync_id" in item.children[0]: item.children[0]["sync_group"] = self.options.get("sync-group", "tab") return [tab_set] class TabItemDirective(SdDirective): """A single tab item in a tab set. Note: This directive generates a single container, for the label and content:: ...title nodes ...content nodes This allows for a default rendering in non-HTML outputs. The ``TabHtmlTransform`` then transforms this container into the HTML specific structure. """ required_arguments = 1 # the tab label is the first argument final_argument_whitespace = True has_content = True option_spec = { "selected": directives.flag, "sync": directives.unchanged_required, "name": directives.unchanged, "class-container": directives.class_option, "class-label": directives.class_option, "class-content": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: self.assert_has_content() if not is_component(self.state_machine.node, "tab-set"): LOGGER.warning( f"The parent of a 'tab-item' should be a 'tab-set' [{WARNING_TYPE}.tab]", location=(self.env.docname, self.lineno), type=WARNING_TYPE, subtype="tab", ) tab_item = create_component( "tab-item", classes=["sd-tab-item", *self.options.get("class-container", [])], selected=("selected" in self.options), ) # add tab label textnodes, _ = self.state.inline_text(self.arguments[0], self.lineno) tab_label = nodes.rubric( self.arguments[0], "", *textnodes, classes=["sd-tab-label", *self.options.get("class-label", [])], ) if "sync" in self.options: tab_label["sync_id"] = self.options["sync"] self.add_name(tab_label) tab_item += tab_label # add tab content tab_content = create_component( "tab-content", classes=["sd-tab-content", *self.options.get("class-content", [])], ) self.state.nested_parse(self.content, self.content_offset, tab_content) tab_item += tab_content return [tab_item] class TabSetCodeDirective(SdDirective): """A container for a set of tab items, generated from code blocks.""" has_content = True option_spec = { "no-sync": directives.flag, "sync-group": directives.unchanged_required, "class-set": directives.class_option, "class-item": directives.class_option, } def run_with_defaults(self) -> list[nodes.Node]: self.assert_has_content() tab_set = create_component( "tab-set", classes=["sd-tab-set", *self.options.get("class-set", [])] ) self.set_source_info(tab_set) self.state.nested_parse(self.content, self.content_offset, tab_set) new_children = [] for item in tab_set.children: if not isinstance(item, nodes.literal_block): LOGGER.warning( f"All children of a 'tab-code-set' " f"should be a 'literal_block' [{WARNING_TYPE}.tab_code]", location=tab_set, type=WARNING_TYPE, subtype="tab_code", ) continue language = item.get("language", "unknown") tab_label = nodes.rubric( language.upper(), nodes.Text(language.upper()), classes=["sd-tab-label", *self.options.get("class-label", [])], ) if "no-sync" not in self.options: tab_label["sync_group"] = self.options.get("sync-group", "code") tab_label["sync_id"] = language tab_content = create_component( "tab-content", children=[item], classes=["sd-tab-content", *self.options.get("class-content", [])], ) tab_item = create_component( "tab-item", children=[tab_label, tab_content], classes=["sd-tab-item", *self.options.get("class-item", [])], ) new_children.append(tab_item) tab_set.children = new_children return [tab_set] class sd_tab_input(nodes.Element, nodes.General): # noqa: N801 pass class sd_tab_label(nodes.TextElement, nodes.General): # noqa: N801 pass def visit_tab_input(self, node): attributes = {"ids": [node["id"]], "type": node["type"], "name": node["set_id"]} if node["checked"]: attributes["checked"] = "checked" self.body.append(self.starttag(node, "input", **attributes)) def depart_tab_input(self, node): # note do not add a closing tag, since this is a void element: # https://developer.mozilla.org/en-US/docs/Glossary/Void_element pass def visit_tab_label(self, node): attributes = {"for": node["input_id"]} if "sync_id" in node and "sync_group" in node: attributes["data-sync-id"] = node["sync_id"] attributes["data-sync-group"] = node["sync_group"] self.body.append(self.starttag(node, "label", **attributes)) def depart_tab_label(self, node): self.body.append("") class TabSetHtmlTransform(SphinxPostTransform): """Transform tab-set to HTML specific AST structure.""" default_priority = 200 formats = ("html",) def run(self) -> None: """Run the transform.""" # setup id generators tab_set_id_base = "sd-tab-set-" tab_item_id_base = "sd-tab-item-" tab_item_id_num = 0 for tab_set_id_num, tab_set in enumerate( findall(self.document)(lambda node: is_component(node, "tab-set")) ): tab_set_identity = tab_set_id_base + str(tab_set_id_num) children = [] # get the first selected node selected_idx = None for idx, tab_item in enumerate(tab_set.children): if tab_item.get("selected", False): if selected_idx is None: selected_idx = idx else: LOGGER.warning( f"Multiple selected 'tab-item' directives [{WARNING_TYPE}.tab]", location=tab_item, type=WARNING_TYPE, subtype="tab", ) selected_idx = 0 if selected_idx is None else selected_idx for idx, tab_item in enumerate(tab_set.children): try: tab_label, tab_content = tab_item.children except ValueError: raise tab_item_identity = tab_item_id_base + str(tab_item_id_num) tab_item_id_num += 1 # create: input_node = sd_tab_input( "", id=tab_item_identity, set_id=tab_set_identity, type="radio", checked=(idx == selected_idx), ) input_node.source, input_node.line = tab_item.source, tab_item.line children.append(input_node) # create: label_node = sd_tab_label( "", "", *tab_label.children, input_id=tab_item_identity, classes=tab_label["classes"], ) if tab_label.get("ids"): label_node["ids"] += tab_label["ids"] if "sync_group" in tab_label and "sync_id" in tab_label: label_node["sync_group"] = tab_label["sync_group"] label_node["sync_id"] = tab_label["sync_id"] label_node.source, label_node.line = tab_item.source, tab_item.line children.append(label_node) # add content children.append(tab_content) tab_set.children = children sphinx-design-0.6.1/style/000077500000000000000000000000001465316142500154455ustar00rootroot00000000000000sphinx-design-0.6.1/style/_animations.scss000066400000000000000000000026551465316142500206530ustar00rootroot00000000000000@keyframes sd-slide-from-left { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } } @keyframes sd-slide-from-right { 0% { transform: translateX(200%); } 100% { transform: translateX(0); } } @keyframes sd-grow100 { 0% { transform: scale(0); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } } @keyframes sd-grow50 { 0% { transform: scale(0.5); opacity: 0.5; } 100% { transform: scale(1); opacity: 1; } } @keyframes sd-grow50-rot20 { 0% { transform: scale(0.5) rotateZ(-20deg); opacity: 0.5; } 75% { transform: scale(1) rotateZ(5deg); opacity: 1; } 95% { transform: scale(1) rotateZ(-1deg); opacity: 1; } 100% { transform: scale(1) rotateZ(0); opacity: 1; } } // animation is shorthand for 'animation-' properties: // duration | easing-function | delay | iteration-count | direction | fill-mode | play-state | name .sd-animate-slide-from-left { animation: 1s ease-out 0s 1 normal none running sd-slide-from-left; } .sd-animate-slide-from-right { animation: 1s ease-out 0s 1 normal none running sd-slide-from-right; } .sd-animate-grow100 { animation: 1s ease-out 0s 1 normal none running sd-grow100; } .sd-animate-grow50 { animation: 1s ease-out 0s 1 normal none running sd-grow50; } .sd-animate-grow50-rot20 { animation: 1s ease-out 0s 1 normal none running sd-grow50-rot20; } sphinx-design-0.6.1/style/_badge.scss000066400000000000000000000013151465316142500175430ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) .sd-badge { display: inline-block; padding: 0.35em 0.65em; font-size: 0.75em; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; // Empty badges collapse automatically &:empty { display: none; } } // Remove underline a.sd-badge { text-decoration: none; } // Quick fix for badges in buttons .sd-btn .sd-badge { position: relative; top: -1px; } // note badge colors were removed in v5 sphinx-design-0.6.1/style/_borders.scss000066400000000000000000000017271465316142500201500ustar00rootroot00000000000000$borders: ( 0: 0, 1: 1px, 2: 2px, 3: 3px, 4: 4px, 5: 5px, ); @each $name, $value in $borders { .sd-border-#{$name} { border: $value solid !important; } .sd-border-top-#{$name} { border-top: $value solid !important; } .sd-border-bottom-#{$name} { border-bottom: $value solid !important; } .sd-border-right-#{$name} { border-right: $value solid !important; } .sd-border-left-#{$name} { border-left: $value solid !important; } } $rounded: ( 0: 0, 1: 0.2rem, 2: 0.3rem, 3: 0.5rem, pill: 50rem, circle: 50%, ); @each $name, $value in $rounded { .sd-rounded-#{$name} { border-radius: $value !important; } } // shadows .shadow-none { box-shadow: none !important; } .sd-shadow-sm { box-shadow: 0 .125rem 0.25rem var(--sd-color-shadow) !important; } .sd-shadow-md { box-shadow: 0 .5rem 1rem var(--sd-color-shadow) !important; } .sd-shadow-lg { box-shadow: 0 1rem 3rem var(--sd-color-shadow) !important; } sphinx-design-0.6.1/style/_button.scss000066400000000000000000000045271465316142500200240ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) .sd-btn { background-color: transparent; border: 1px solid transparent; border-radius: 0.25rem; // color: var(--sd-color-dark); cursor: pointer; display: inline-block; font-weight: 400; font-size: 1rem; line-height: 1.5; padding: 0.375rem 0.75rem; text-align: center; text-decoration: none; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; vertical-align: middle; user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; &:hover { text-decoration: none; } // &:focus { // box-shadow: 0 0 0 0.2rem rgba(mix($blue, $blue, 15%), .25); // outline: 0; // } // &:visited { // color: var(--sd-color-dark); // } // // override alabaster theme // &.reference { // border-bottom: inherit; // } // &.reference:hover { // border-bottom: inherit; // } } @media (prefers-reduced-motion: reduce) { .sd-btn { transition: none; } } @each $color, $value in $semantic-colors { .sd-btn-#{$color}, .sd-btn-outline-#{$color}:hover, .sd-btn-outline-#{$color}:focus { color: var(--sd-color-#{$color}-text) !important; background-color: var(--sd-color-#{$color}) !important; border-color: var(--sd-color-#{$color}) !important; border-width: 1px !important; border-style: solid !important; } .sd-btn-#{$color}:hover, .sd-btn-#{$color}:focus { color: var(--sd-color-#{$color}-text) !important; background-color: var(--sd-color-#{$color}-highlight) !important; border-color: var(--sd-color-#{$color}-highlight) !important; border-width: 1px !important; border-style: solid !important; } .sd-btn-outline-#{$color} { color: var(--sd-color-#{$color}) !important; border-color: var(--sd-color-#{$color}) !important; border-width: 1px !important; border-style: solid !important; } } // make parent clickable .sd-stretched-link::after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; content: ""; } .sd-hide-link-text { font-size: 0; } sphinx-design-0.6.1/style/_cards.scss000066400000000000000000000062171465316142500176030ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // Copyright 2011-2019 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @use 'sass:math'; .sd-card { background-clip: border-box; background-color: var(--sd-color-card-background); border: 1px solid var(--sd-color-card-border); border-radius: 0.25rem; color: var(--sd-color-card-text); display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; min-width: 0; position: relative; word-wrap: break-word; > hr { margin-left: 0; margin-right: 0; } } .sd-card-hover:hover { border-color: var(--sd-color-card-border-hover); transform: scale(1.01); } .sd-card-body { -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem 1rem; } .sd-card-title { margin-bottom: 0.5rem; } .sd-card-subtitle { margin-top: -0.25rem; margin-bottom: 0; } .sd-card-text:last-child { margin-bottom: 0; } .sd-card-link:hover { text-decoration: none; } .sd-card-link + .card-link { margin-left: 1rem; } .sd-card-header { padding: 0.5rem 1rem; margin-bottom: 0; background-color: var(--sd-color-card-header); border-bottom: 1px solid var(--sd-color-card-border); } .sd-card-header:first-child { border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; } .sd-card-footer { padding: 0.5rem 1rem; background-color: var(--sd-color-card-footer); border-top: 1px solid var(--sd-color-card-border); } .sd-card-footer:last-child { border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); } .sd-card-header-tabs { margin-right: -0.5rem; margin-bottom: -0.5rem; margin-left: -0.5rem; border-bottom: 0; } .sd-card-header-pills { margin-right: -0.5rem; margin-left: -0.5rem; } .sd-card-img-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1rem; border-radius: calc(0.25rem - 1px); } .sd-card-img, .sd-card-img-bottom, .sd-card-img-top { width: 100%; } .sd-card-img, .sd-card-img-top { border-top-left-radius: calc(0.25rem - 1px); border-top-right-radius: calc(0.25rem - 1px); } .sd-card-img, .sd-card-img-bottom { border-bottom-left-radius: calc(0.25rem - 1px); border-bottom-right-radius: calc(0.25rem - 1px); } // sd-cards-carousel is not part of bootstrap // it is intended to create a single row of scrollable cards // with a standard width for each card .sd-cards-carousel { width: 100%; display: flex; flex-wrap: nowrap; -ms-flex-direction: row; flex-direction: row; overflow-x: hidden; scroll-snap-type: x mandatory; } // use to always show the scroll bar .sd-cards-carousel.sd-show-scrollbar { overflow-x: auto; } .sd-cards-carousel:hover, .sd-cards-carousel:focus { overflow-x: auto; } .sd-cards-carousel > .sd-card { flex-shrink: 0; scroll-snap-align: start; } .sd-cards-carousel > .sd-card:not(:last-child) { margin-right: 3px; } @for $i from 1 through 12 { .sd-card-cols-#{$i} > .sd-card { // we use less than 100% here, so that the (i+1)th card will be slightly visible, // so the user is aware that there are more cards available width: math.div(90%, $i); } } sphinx-design-0.6.1/style/_colors.scss000066400000000000000000000050101465316142500177760ustar00rootroot00000000000000$white: #fff !default; $white-50: rgba(255, 255, 255, .5) !default; $gray-100: #f8f9fa !default; $gray-200: #e9ecef !default; $gray-300: #dee2e6 !default; $gray-400: #ced4da !default; $gray-500: #adb5bd !default; $gray-600: #6c757d !default; $gray-700: #495057 !default; $gray-800: #343a40 !default; $gray-900: #212529 !default; $black: #000 !default; $black-0: rgba(0, 0, 0, 0) !default; $black-3: rgba(0, 0, 0, .03) !default; $black-12-5: rgba(0, 0, 0, .125) !default; $black-15: rgba(0, 0, 0, .15) !default; $black-25: rgba(0, 0, 0, .25) !default; $black-50: rgba(0, 0, 0, .5) !default; $blue: #0071bc !default; $indigo: #6610f2 !default; $purple: #6f42c1 !default; $pink: #d63384 !default; $red: #dc3545 !default; $orange: #fd7e14 !default; $yellow: #ffc107 !default; $green: #28a745 !default; $teal: #20c997 !default; $cyan: #17a2b8 !default; $semantic-colors: ( "primary": $blue, "secondary": $gray-600, "success": $green, "info": $cyan, "warning": #f0b37e, "danger": $red, "light": $gray-100, "muted": $gray-600, "dark": $gray-900, "black": black, "white": white, ) !default; @function text-color($value) { @return if(lightness($value) > 70, $gray-900, $white); } @each $color, $value in $semantic-colors { .sd-bg-#{$color} { background-color: var(--sd-color-#{$color}) !important; } .sd-bg-text-#{$color} { color: var(--sd-color-#{$color}-text) !important; } button { &.sd-bg-#{$color}:focus, &.sd-bg-#{$color}:hover { background-color: var(--sd-color-#{$color}-highlight) !important; } } a { &.sd-bg-#{$color}:focus, &.sd-bg-#{$color}:hover { background-color: var(--sd-color-#{$color}-highlight) !important; } } } @each $color, $value in $semantic-colors { .sd-text-#{$color}, .sd-text-#{$color} > p { color: var(--sd-color-#{$color}) !important; } a { &.sd-text-#{$color}:focus, &.sd-text-#{$color}:hover { color: var(--sd-color-#{$color}-highlight) !important; } } } @each $color, $value in $semantic-colors { .sd-outline-#{$color} { border-color: var(--sd-color-#{$color}) !important; border-style: solid !important; border-width: 1px !important; } a { &.sd-outline-#{$color}:focus, &.sd-outline-#{$color}:hover { border-color: var(--sd-color-#{$color}-highlight) !important; } } } // transparent color .sd-bg-transparent { background-color: transparent !important; } .sd-outline-transparent { border-color: transparent !important; } .sd-text-transparent { color: transparent !important; } sphinx-design-0.6.1/style/_display.scss000066400000000000000000000035621465316142500201540ustar00rootroot00000000000000.sd-d-none { display: none !important; } .sd-d-inline { display: inline !important; } .sd-d-inline-block { display: inline-block !important; } .sd-d-block { display: block !important; } .sd-d-grid { display: grid !important; } .sd-d-flex-row { display: -ms-flexbox !important; display: flex !important; flex-direction: row !important; } .sd-d-flex-column { display: -ms-flexbox !important; display: flex !important; flex-direction: column !important; } .sd-d-inline-flex { display: -ms-inline-flexbox !important; display: inline-flex !important; } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-d-#{$cat}-none { display: none !important; } .sd-d-#{$cat}-inline { display: inline !important; } .sd-d-#{$cat}-inline-block { display: inline-block !important; } .sd-d-#{$cat}-block { display: block !important; } .sd-d-#{$cat}-grid { display: grid !important; } .sd-d-#{$cat}-flex { display: -ms-flexbox !important; display: flex !important; } .sd-d-#{$cat}-inline-flex { display: -ms-inline-flexbox !important; display: inline-flex !important; } } } // will align on major axis of flex .sd-align-major-start { justify-content: flex-start !important; } .sd-align-major-end { justify-content: flex-end !important; } .sd-align-major-center { justify-content: center !important; } .sd-align-major-justify { justify-content: space-between !important; } .sd-align-major-spaced { justify-content: space-evenly !important; } // will align on minor axis of flex .sd-align-minor-start { align-items: flex-start !important; } .sd-align-minor-end { align-items: flex-end !important; } .sd-align-minor-center { align-items: center !important; } // default .sd-align-minor-stretch { align-items: stretch !important; } sphinx-design-0.6.1/style/_dropdown.scss000066400000000000000000000065541465316142500203470ustar00rootroot00000000000000details.sd-dropdown { position: relative; font-size: var(--sd-fontsize-dropdown); &:hover { cursor: pointer; } .sd-summary-content { cursor: default; } summary.sd-summary-title { padding: 0.5em 0.6em 0.5em 1em; font-size: var(--sd-fontsize-dropdown-title); font-weight: var(--sd-fontweight-dropdown-title); // make the text un-selectable user-select: none; -moz-user-select: none; -ms-user-select: none; -webkit-user-select: none; // hide the default triangle marker list-style: none; // chrome doesn't yet support list-style &::-webkit-details-marker { display: none; } &:focus { outline: none; } // The title is split into three parts: // 1. The icon (optional), which should be on the left // 2. The text, which should be in the middle, and take all available space // 3. The state marker, which should be on the right display: inline-flex; justify-content: space-between; .sd-summary-icon { margin-right: 0.6em; // align the icon vertically within its container display: inline-flex; align-items: center; } .sd-summary-icon svg { opacity: 0.8; } .sd-summary-text { flex-grow: 1; line-height: 1.5; // note, we add right padding to the text, rather than a left margin to the state marker, // because when you rotate the state marker, left is no longer left padding-right: 0.5rem; } .sd-summary-state-marker { pointer-events: none; // align the icon vertically within its container display: inline-flex; align-items: center; } // make the state marker a bit more prominent when hovered .sd-summary-state-marker svg { opacity: 0.6; } &:hover .sd-summary-state-marker svg { opacity: 1; transform: scale(1.1); } } // Hide the octicon added as a placeholder for when no title is provided, // but only when the summary is open &[open] summary .sd-octicon.no-title { visibility: hidden; } // setup how state marker changes on open/close of the dropdown .sd-summary-chevron-right { transition: 0.25s; } &[open] > .sd-summary-title .sd-summary-chevron-right { transform: rotate(90deg); } &[open] > .sd-summary-title .sd-summary-chevron-down { transform: rotate(180deg); } // Hide the card body border when not open &:not([open]).sd-card { border: none; } &:not([open]) > .sd-card-header { border: 1px solid var(--sd-color-card-border); border-radius: 0.25rem; } // Transition animation &.sd-fade-in[open] summary ~ * { -moz-animation: sd-fade-in 0.5s ease-in-out; -webkit-animation: sd-fade-in 0.5s ease-in-out; animation: sd-fade-in 0.5s ease-in-out; } &.sd-fade-in-slide-down[open] summary ~ * { -moz-animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; -webkit-animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; animation: sd-fade-in 0.5s ease-in-out, sd-slide-down 0.5s ease-in-out; } } .sd-col > .sd-dropdown { width: 100%; } .sd-summary-content > .sd-tab-set:first-child { margin-top: 0; } @keyframes sd-fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes sd-slide-down { 0% { transform: translate(0, -10px); } 100% { transform: translate(0, 0); } } sphinx-design-0.6.1/style/_grids.scss000066400000000000000000000065271465316142500176230ustar00rootroot00000000000000// Adapted from Bootstrap v5.0.2 (https://getbootstrap.com/) // See: dist/css/bootstrap-grid.css // Copyright 2011-2021 The Bootstrap Authors // Copyright 2011-2019 Twitter, Inc. // Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) @use 'sass:math'; $gutter-widths: $spacings; .sd-container, .sd-container-fluid, .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container-xl { margin-left: auto; margin-right: auto; padding-left: var(--sd-gutter-x, 0.75rem); padding-right: var(--sd-gutter-x, 0.75rem); width: 100%; } @media (min-width: $media-min-sm) { .sd-container-sm, .sd-container { max-width: $media-max-sm; } } @media (min-width: $media-min-md) { .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-md; } } @media (min-width: $media-min-lg) { .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-lg; } } @media (min-width: $media-min-xl) { .sd-container-xl, .sd-container-lg, .sd-container-md, .sd-container-sm, .sd-container { max-width: $media-max-xl; } } .sd-row { --sd-gutter-x: 1.5rem; --sd-gutter-y: 0; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-top: calc(var(--sd-gutter-y) * -1); margin-right: calc(var(--sd-gutter-x) * -0.5); margin-left: calc(var(--sd-gutter-x) * -0.5); } .sd-row > * { box-sizing: border-box; flex-shrink: 0; width: 100%; max-width: 100%; padding-right: calc(var(--sd-gutter-x) * 0.5); padding-left: calc(var(--sd-gutter-x) * 0.5); margin-top: var(--sd-gutter-y); } .sd-col { flex: 1 0 0%; -ms-flex: 1 0 0%; } .sd-row-cols-auto > * { flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-row-cols-#{$i} { > * { flex: 0 0 auto; -ms-flex: 0 0 auto; width: math.div(100%, $i); } } } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-col-#{$cat} { flex: 1 0 0%; -ms-flex: 1 0 0%; } .sd-row-cols-#{$cat}-auto { flex: 1 0 auto; -ms-flex: 1 0 auto; width: 100%; } @for $i from 1 through 12 { .sd-row-cols-#{$cat}-#{$i} { > * { flex: 0 0 auto; -ms-flex: 0 0 auto; width: math.div(100%, $i); } } } } } .sd-col-auto { flex: 0 0 auto; -ms-flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-col-#{$i} { flex: 0 0 auto; -ms-flex: 0 0 auto; width: 100% * math.div($i, 12); } } @each $cat, $width in $gutter-widths { .sd-g-#{$cat}, .sd-gy-#{$cat} { --sd-gutter-y: #{$width}; } .sd-g-#{$cat}, .sd-gx-#{$cat} { --sd-gutter-x: #{$width}; } } @each $cat, $width in $media-widths { @media (min-width: $width) { .sd-col-#{$cat}-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; } @for $i from 1 through 12 { .sd-col-#{$cat}-#{$i} { -ms-flex: 0 0 auto; flex: 0 0 auto; width: 100% * math.div($i, 12); } } @each $gcat, $gwidth in $gutter-widths { .sd-g-#{$cat}-#{$gcat}, .sd-gy-#{$cat}-#{$gcat} { --sd-gutter-y: #{$gwidth}; } .sd-g-#{$cat}-#{$gcat}, .sd-gx-#{$cat}-#{$gcat} { --sd-gutter-x: #{$gwidth}; } } } } .sd-flex-row-reverse { flex-direction: row-reverse !important; } sphinx-design-0.6.1/style/_icons.scss000066400000000000000000000007521465316142500176200ustar00rootroot00000000000000.sd-octicon, .sd-material-icon { display: inline-block; fill: currentColor; vertical-align: middle; } $avatar-sizes: ( xs: 1rem, sm: 3rem, md: 5rem, lg: 7rem, xl: 10rem, inherit: inherit, initial: initial ); @each $size, $value in $avatar-sizes { .sd-avatar-#{$size} { border-radius: 50%; object-fit: cover; /* Keep the image aspect ratio */ object-position: center; /* Center the image within the element */ width: $value; height: $value; } } sphinx-design-0.6.1/style/_overrides.scss000066400000000000000000000003611465316142500205030ustar00rootroot00000000000000// Overrides for non-bootstrap themes (such as alabaster) .sd-sphinx-override, .sd-sphinx-override * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .sd-sphinx-override p { margin-top: 0; } sphinx-design-0.6.1/style/_sizing.scss000066400000000000000000000004001465316142500177760ustar00rootroot00000000000000// Width and height $sizes: ( 25: 25%, 50: 50%, 75: 75%, 100: 100%, auto: auto, ); @each $prop, $abbrev in (width: w, height: h) { @each $size, $length in $sizes { .sd-#{$abbrev}-#{$size} { #{$prop}: $length !important; } } } sphinx-design-0.6.1/style/_spacing.scss000066400000000000000000000027711465316142500201340ustar00rootroot00000000000000$spacer: 1rem; $spacings: ( 0: 0, 1: $spacer * 0.25, 2: $spacer * 0.5, 3: $spacer, 4: $spacer * 1.5, 5: $spacer * 3, ) !default; $media-min-sm: 576px; $media-min-md: 768px; $media-min-lg: 992px; $media-min-xl: 1200px; $media-max-sm: 540px; $media-max-md: 720px; $media-max-lg: 960px; $media-max-xl: 1140px; $media-widths: ( "sm": $media-min-sm, "md": $media-min-md, "lg": $media-min-lg, "xl": $media-min-xl, ) !default; @each $id, $value in $spacings { .sd-p-#{$id} { padding: $value !important; } .sd-pt-#{$id}, .sd-py-#{$id} { padding-top: $value !important; } .sd-pr-#{$id}, .sd-px-#{$id} { padding-right: $value !important; } .sd-pb-#{$id}, .sd-py-#{$id} { padding-bottom: $value !important; } .sd-pl-#{$id}, .sd-px-#{$id} { padding-left: $value !important; } } .sd-m-auto { margin: auto !important; } .sd-mt-auto, .sd-my-auto { margin-top: auto !important; } .sd-mr-auto, .sd-mx-auto { margin-right: auto !important; } .sd-mb-auto, .sd-my-auto { margin-bottom: auto !important; } .sd-ml-auto, .sd-mx-auto { margin-left: auto !important; } @each $id, $value in $spacings { .sd-m-#{$id} { margin: $value !important; } .sd-mt-#{$id}, .sd-my-#{$id} { margin-top: $value !important; } .sd-mr-#{$id}, .sd-mx-#{$id} { margin-right: $value !important; } .sd-mb-#{$id}, .sd-my-#{$id} { margin-bottom: $value !important; } .sd-ml-#{$id}, .sd-mx-#{$id} { margin-left: $value !important; } } sphinx-design-0.6.1/style/_tabs.scss000066400000000000000000000034241465316142500174350ustar00rootroot00000000000000// Tabbed block container .sd-tab-set { border-radius: 0.125rem; display: flex; flex-wrap: wrap; margin: 1em 0; position: relative; // Hide radio buttons > input { opacity: 0; position: absolute; // Active tab label &:checked + label { border-color: var(--sd-color-tabs-underline-active); color: var(--sd-color-tabs-label-active); // Show tabbed block content + .sd-tab-content { display: block; } } &:not(:checked) + label:hover { color: var(--sd-color-tabs-label-hover); border-color: var(--sd-color-tabs-underline-hover); } // Focused tab label &:focus + label { outline-style: auto; } // Disable focus indicator for pointer devices &:not(.focus-visible) + label { outline: none; -webkit-tap-highlight-color: transparent; } } // Tab label > label { border-bottom: 0.125rem solid transparent; margin-bottom: 0; color: var(--sd-color-tabs-label-inactive); border-color: var(--sd-color-tabs-underline-inactive); cursor: pointer; font-size: var(--sd-fontsize-tabs-label); font-weight: 700; padding: 1em 1.25em 0.5em; transition: color 250ms; width: auto; z-index: 1; // Hovered label html &:hover { color: var(--sd-color-tabs-label-active); } } } .sd-col > .sd-tab-set { width: 100%; } // Tabbed block content .sd-tab-content { box-shadow: 0 -0.0625rem var(--sd-color-tabs-overline), 0 0.0625rem var(--sd-color-tabs-underline); display: none; order: 99; padding-bottom: 0.75rem; padding-top: 0.75rem; width: 100%; > :first-child { margin-top: 0 !important; } > :last-child { margin-bottom: 0 !important; } // Nested tabs > .sd-tab-set { margin: 0; } } sphinx-design-0.6.1/style/_text.scss000066400000000000000000000025531465316142500174720ustar00rootroot00000000000000.sd-text-justify { text-align: justify !important; } .sd-text-left { text-align: left !important; } .sd-text-right { text-align: right !important; } .sd-text-center { text-align: center !important; } .sd-font-weight-light { font-weight: 300 !important; } .sd-font-weight-lighter { font-weight: lighter !important; } .sd-font-weight-normal { font-weight: 400 !important; } .sd-font-weight-bold { font-weight: 700 !important; } .sd-font-weight-bolder { font-weight: bolder !important; } .sd-font-italic { font-style: italic !important; } .sd-text-decoration-none { text-decoration: none !important; } .sd-text-lowercase { text-transform: lowercase !important; } .sd-text-uppercase { text-transform: uppercase !important; } .sd-text-capitalize { text-transform: capitalize !important; } .sd-text-wrap { white-space: normal !important; } .sd-text-nowrap { white-space: nowrap !important; } // requires `display: inline-block` or `display: block` .sd-text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } $font-sizes: ( 1: calc(1.375rem + 1.5vw), 2: calc(1.325rem + 0.9vw), 3: calc(1.3rem + 0.6vw), 4: calc(1.275rem + 0.3vw), 5: 1.25rem, 6: 1rem ); @each $id, $value in $font-sizes { .sd-fs-#{$id}, .sd-fs-#{$id} > p { font-size: $value !important; line-height: unset !important; } } sphinx-design-0.6.1/style/_variables.scss000066400000000000000000000027321465316142500204550ustar00rootroot00000000000000:root { // semantic colors @each $color, $value in $semantic-colors { --sd-color-#{$color}: #{$value}; } // semantic colors for highlighting (e.g. focus/hover) @each $color, $value in $semantic-colors { --sd-color-#{$color}-highlight: #{mix(black, $value, 15%)}; } // semantic colors for backgrounds @each $color, $value in $semantic-colors { --sd-color-#{$color}-bg: #{rgba($value, 0.2)}; } // colors for text on top of a semantic color background @each $color, $value in $semantic-colors { --sd-color-#{$color}-text: #{text-color($value)}; } // shadow --sd-color-shadow: #{$black-15}; // cards --sd-color-card-border: #{$black-12-5}; --sd-color-card-border-hover: hsla(231, 99%, 66%, 1); --sd-color-card-background: transparent; --sd-color-card-text: inherit; --sd-color-card-header: transparent; --sd-color-card-footer: transparent; // tabs --sd-color-tabs-label-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-hover: hsla(231, 99%, 66%, 1); --sd-color-tabs-label-inactive: hsl(0, 0%, 66%); --sd-color-tabs-underline-active: hsla(231, 99%, 66%, 1); --sd-color-tabs-underline-hover: rgba(178, 206, 245, 0.62); --sd-color-tabs-underline-inactive: transparent; --sd-color-tabs-overline: rgb(222, 222, 222); --sd-color-tabs-underline: rgb(222, 222, 222); --sd-fontsize-tabs-label: 1rem; // dropdown --sd-fontsize-dropdown: inherit; --sd-fontsize-dropdown-title: 1rem; --sd-fontweight-dropdown-title: 700; } sphinx-design-0.6.1/style/index.scss000066400000000000000000000005061465316142500174520ustar00rootroot00000000000000@import './colors'; @import './spacing'; @import './sizing'; @import './display'; @import './text'; @import './borders'; @import './animations'; @import './badge'; @import './button'; @import './icons'; @import './cards'; @import './grids'; @import './dropdown'; @import './tabs'; @import './overrides'; @import './variables' sphinx-design-0.6.1/tests/000077500000000000000000000000001465316142500154475ustar00rootroot00000000000000sphinx-design-0.6.1/tests/__init__.py000066400000000000000000000000001465316142500175460ustar00rootroot00000000000000sphinx-design-0.6.1/tests/conftest.py000066400000000000000000000055401465316142500176520ustar00rootroot00000000000000import os from pathlib import Path from typing import Any, Optional from docutils import nodes import pytest from sphinx import version_info from sphinx.testing.util import SphinxTestApp from sphinx_design._compat import findall pytest_plugins = "sphinx.testing.fixtures" if version_info >= (7, 2): # see https://github.com/sphinx-doc/sphinx/pull/11526 from pathlib import Path as sphinx_path # noqa: N813 else: from sphinx.testing.path import path as sphinx_path # type: ignore[no-redef] class SphinxBuilder: def __init__(self, app: SphinxTestApp, src_path: Path): self.app = app self._src_path = src_path @property def src_path(self) -> Path: return self._src_path @property def out_path(self) -> Path: return Path(self.app.outdir) def build(self, assert_pass=True): self.app.build() if assert_pass: assert self.warnings == "", self.status return self @property def status(self): return self.app._status.getvalue() @property def warnings(self): return self.app._warning.getvalue() def get_doctree( self, docname: str, post_transforms: bool = False ) -> nodes.document: doctree = self.app.env.get_doctree(docname) if post_transforms: self.app.env.apply_post_transforms(doctree, docname) # make source path consistent for test comparisons for node in findall(doctree)(include_self=True): if not (hasattr(node, "get") and node.get("source")): continue node["source"] = Path(node["source"]).relative_to(self.src_path).as_posix() if node["source"].endswith(".rst"): node["source"] = node["source"][:-4] elif node["source"].endswith(".md"): node["source"] = node["source"][:-3] # remove mathjax classes added by myst parser if doctree.children and isinstance(doctree.children[0], nodes.section): doctree.children[0]["classes"] = [] return doctree @pytest.fixture() def sphinx_builder(tmp_path: Path, make_app, monkeypatch): def _create_project( buildername: str = "html", conf_kwargs: Optional[dict[str, Any]] = None ): src_path = tmp_path / "srcdir" src_path.mkdir() conf_kwargs = conf_kwargs or { "extensions": ["myst_parser", "sphinx_design"], "myst_enable_extensions": ["colon_fence"], } content = "\n".join( [f"{key} = {value!r}" for key, value in conf_kwargs.items()] ) src_path.joinpath("conf.py").write_text(content, encoding="utf8") app = make_app( srcdir=sphinx_path(os.path.abspath(str(src_path))), # noqa: PTH100 buildername=buildername, ) return SphinxBuilder(app, src_path) yield _create_project sphinx-design-0.6.1/tests/test_misc.py000066400000000000000000000010041465316142500200060ustar00rootroot00000000000000from sphinx_design.icons import get_octicon_data def test_octicons(file_regression): """Test the available octicon names. This is intended to provide a diff of the octicons available, when the octicons are updated, to check if we are removing any (and hence breaking back-compatibility). """ data = get_octicon_data() content = "" for octicon in sorted(get_octicon_data()): content += f"{octicon}: {','.join(data[octicon]['heights'])}\n" file_regression.check(content) sphinx-design-0.6.1/tests/test_misc/000077500000000000000000000000001465316142500174415ustar00rootroot00000000000000sphinx-design-0.6.1/tests/test_misc/test_octicons.txt000066400000000000000000000127751465316142500230760ustar00rootroot00000000000000accessibility: 16 accessibility-inset: 16 alert: 16,24 alert-fill: 12,16,24 apps: 16 archive: 16,24 arrow-both: 16,24 arrow-down: 16,24 arrow-down-left: 16,24 arrow-down-right: 16,24 arrow-left: 16,24 arrow-right: 16,24 arrow-switch: 16,24 arrow-up: 16,24 arrow-up-left: 16,24 arrow-up-right: 16,24 beaker: 16,24 bell: 16,24 bell-fill: 16,24 bell-slash: 16,24 blocked: 16,24 bold: 16,24 book: 16,24 bookmark: 16,24 bookmark-fill: 24 bookmark-slash: 16,24 bookmark-slash-fill: 24 briefcase: 16,24 broadcast: 16,24 browser: 16,24 bug: 16,24 cache: 16 calendar: 16,24 check: 16,24 check-circle: 16,24 check-circle-fill: 12,16,24 checkbox: 16,24 checklist: 16,24 chevron-down: 12,16,24 chevron-left: 16,24 chevron-right: 12,16,24 chevron-up: 12,16,24 circle: 16,24 circle-slash: 16,24 clock: 16,24 clock-fill: 16,24 cloud: 16,24 cloud-offline: 16,24 code: 16,24 code-of-conduct: 16,24 code-review: 16,24 code-square: 16,24 codescan: 16,24 codescan-checkmark: 16,24 codespaces: 16,24 columns: 16,24 command-palette: 16,24 comment: 16,24 comment-discussion: 16,24 commit: 24 container: 16,24 copilot: 16,24,48,96 copilot-error: 16 copilot-warning: 16 copy: 16,24 cpu: 16,24 credit-card: 16,24 cross-reference: 16,24 dash: 16,24 database: 16,24 dependabot: 16,24 desktop-download: 16,24 device-camera: 16 device-camera-video: 16,24 device-desktop: 16,24 device-mobile: 16,24 devices: 16,24 diamond: 16,24 diff: 16,24 diff-added: 16 diff-ignored: 16 diff-modified: 16 diff-removed: 16 diff-renamed: 16 discussion-closed: 16,24 discussion-duplicate: 16,24 discussion-outdated: 16,24 dot: 16,24 dot-fill: 16,24 download: 16,24 duplicate: 16,24 ellipsis: 16 eye: 16,24 eye-closed: 16,24 feed-discussion: 16 feed-forked: 16 feed-heart: 16 feed-issue-closed: 16 feed-issue-draft: 16 feed-issue-open: 16 feed-issue-reopen: 16 feed-merged: 16 feed-person: 16 feed-plus: 16 feed-public: 16 feed-pull-request-closed: 16 feed-pull-request-draft: 16 feed-pull-request-open: 16 feed-repo: 16 feed-rocket: 16 feed-star: 16 feed-tag: 16 feed-trophy: 16 file: 16,24 file-added: 16 file-badge: 16 file-binary: 16,24 file-code: 16,24 file-diff: 16,24 file-directory: 16,24 file-directory-fill: 16,24 file-directory-open-fill: 16 file-directory-symlink: 16,24 file-media: 24 file-moved: 16 file-removed: 16 file-submodule: 16,24 file-symlink-file: 16,24 file-zip: 16,24 filter: 16,24 filter-remove: 16,24 fiscal-host: 16 flame: 16,24 fold: 16,24 fold-down: 16,24 fold-up: 16,24 gear: 16,24 gift: 16,24 git-branch: 16,24 git-commit: 16,24 git-compare: 16,24 git-merge: 16,24 git-merge-queue: 16,24 git-pull-request: 16,24 git-pull-request-closed: 16,24 git-pull-request-draft: 16,24 globe: 16,24 goal: 16,24 grabber: 16,24 graph: 16,24 hash: 16,24 heading: 16,24 heart: 16,24 heart-fill: 16,24 history: 16,24 home: 16,24 home-fill: 24 horizontal-rule: 16,24 hourglass: 16,24 hubot: 16,24 id-badge: 16 image: 16,24 inbox: 16,24 infinity: 16,24 info: 16,24 issue-closed: 16,24 issue-draft: 16,24 issue-opened: 16,24 issue-reopened: 16,24 issue-tracked-by: 16,24 issue-tracks: 16,24 italic: 16,24 iterations: 16,24 kebab-horizontal: 16,24 key: 16,24 key-asterisk: 16 law: 16,24 light-bulb: 16,24 link: 16,24 link-external: 16,24 list-ordered: 16,24 list-unordered: 16,24 location: 16,24 lock: 16,24 log: 16,24 logo-gist: 16 logo-github: 16 mail: 16,24 mark-github: 16 markdown: 16 megaphone: 16,24 mention: 16,24 meter: 16 milestone: 16,24 mirror: 16,24 moon: 16,24 mortar-board: 16,24 move-to-bottom: 16,24 move-to-end: 16,24 move-to-start: 16,24 move-to-top: 16,24 multi-select: 16,24 mute: 16,24 no-entry: 16,24 no-entry-fill: 12 north-star: 16,24 note: 16,24 number: 16,24 organization: 16,24 package: 16,24 package-dependencies: 16,24 package-dependents: 16,24 paintbrush: 16 paper-airplane: 16,24 paperclip: 16,24 passkey-fill: 16,24 paste: 16,24 pencil: 16,24 people: 16,24 person: 16,24 person-add: 16,24 person-fill: 16,24 pin: 16,24 pin-slash: 16,24 pivot-column: 16,24 play: 16,24 plug: 16,24 plus: 16,24 plus-circle: 16,24 project: 16,24 project-roadmap: 16,24 project-symlink: 16,24 project-template: 16,24 pulse: 16,24 question: 16,24 quote: 16,24 read: 16,24 redo: 16 rel-file-path: 16,24 reply: 16,24 repo: 16,24 repo-clone: 16,24 repo-deleted: 16 repo-forked: 16,24 repo-locked: 16,24 repo-pull: 16,24 repo-push: 16,24 repo-template: 16,24 report: 16,24 rocket: 16,24 rows: 16,24 rss: 16,24 ruby: 16,24 screen-full: 16,24 screen-normal: 16,24 search: 16,24 server: 16,24 share: 16,24 share-android: 16,24 shield: 16,24 shield-check: 16,24 shield-lock: 16,24 shield-slash: 16,24 shield-x: 16,24 sidebar-collapse: 16,24 sidebar-expand: 16,24 sign-in: 16,24 sign-out: 16,24 single-select: 16,24 skip: 16,24 skip-fill: 16,24 sliders: 16 smiley: 16,24 sort-asc: 16,24 sort-desc: 16,24 sparkle-fill: 16 sponsor-tiers: 16,24 square: 16,24 square-fill: 16,24 squirrel: 16,24 stack: 16,24 star: 16,24 star-fill: 16,24 stop: 16,24 stopwatch: 16,24 strikethrough: 16,24 sun: 16,24 sync: 16,24 tab: 24 tab-external: 16 table: 16,24 tag: 16,24 tasklist: 16,24 telescope: 16,24 telescope-fill: 16,24 terminal: 16,24 three-bars: 16 thumbsdown: 16,24 thumbsup: 16,24 tools: 16,24 tracked-by-closed-completed: 16,24 tracked-by-closed-not-planned: 16,24 trash: 16,24 triangle-down: 16,24 triangle-left: 16,24 triangle-right: 16,24 triangle-up: 16,24 trophy: 16,24 typography: 16,24 undo: 16 unfold: 16,24 unlink: 16,24 unlock: 16,24 unmute: 16,24 unread: 16,24 unverified: 16,24 upload: 16,24 verified: 16,24 versions: 16,24 video: 16,24 webhook: 16 workflow: 16,24 x: 12,16,24 x-circle: 16,24 x-circle-fill: 12,16,24 zap: 16,24 zoom-in: 16,24 zoom-out: 16,24 sphinx-design-0.6.1/tests/test_snippets.py000066400000000000000000000157351465316142500207400ustar00rootroot00000000000000"""Test the documented snippets run correctly, and are the same for both RST and MyST.""" from pathlib import Path from typing import Callable import pytest from .conftest import SphinxBuilder try: import myst_parser # noqa: F401 MYST_INSTALLED = True except ImportError: MYST_INSTALLED = False SNIPPETS_PATH = Path(__file__).parent.parent / "docs" / "snippets" SNIPPETS_GLOB_RST = list((SNIPPETS_PATH / "rst").glob("[!_]*")) SNIPPETS_GLOB_MYST = list((SNIPPETS_PATH / "myst").glob("[!_]*")) def write_assets(src_path: Path): """Write additional assets to the src directory.""" src_path.joinpath("snippet.py").write_text("a = 1") src_path.joinpath("images").mkdir() src_path.joinpath("images", "ebp-logo.png").touch() src_path.joinpath("images", "particle_background.jpg").touch() @pytest.mark.parametrize( "path", SNIPPETS_GLOB_RST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST], ) def test_snippets_rst( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in RestructuredText (before post-transforms).""" builder = sphinx_builder(conf_kwargs={"extensions": ["sphinx_design"]}) content = "Heading\n-------" + "\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_pre_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_MYST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST], ) @pytest.mark.skipif(not MYST_INSTALLED, reason="myst-parser not installed") def test_snippets_myst( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in MyST Markdown (before post-transforms).""" builder = sphinx_builder() content = "# Heading" + "\n\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_pre_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_RST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_RST], ) def test_snippets_rst_post( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in RestructuredText (after HTML post-transforms).""" builder = sphinx_builder(conf_kwargs={"extensions": ["sphinx_design"]}) content = "Heading\n-------" + "\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=True) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_post_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) @pytest.mark.parametrize( "path", SNIPPETS_GLOB_MYST, ids=[path.name[: -len(path.suffix)] for path in SNIPPETS_GLOB_MYST], ) @pytest.mark.skipif(not MYST_INSTALLED, reason="myst-parser not installed") def test_snippets_myst_post( sphinx_builder: Callable[..., SphinxBuilder], path: Path, file_regression ): """Test snippets written in MyST Markdown (after HTML post-transforms).""" builder = sphinx_builder() content = "# Heading" + "\n\n\n" + path.read_text(encoding="utf8") builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") write_assets(builder.src_path) builder.build() doctree = builder.get_doctree("index", post_transforms=True) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename=f"snippet_post_{path.name[:-len(path.suffix)]}", extension=".xml", encoding="utf8", ) def test_sd_hide_title_rst( sphinx_builder: Callable[..., SphinxBuilder], file_regression ): """Test that the root title is hidden.""" builder = sphinx_builder(conf_kwargs={"extensions": ["sphinx_design"]}) content = ":sd_hide_title:\n\nHeading\n-------\n\ncontent" builder.src_path.joinpath("index.rst").write_text(content, encoding="utf8") builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename="sd_hide_title", extension=".xml", encoding="utf8", ) @pytest.mark.skipif(not MYST_INSTALLED, reason="myst-parser not installed") def test_sd_hide_title_myst( sphinx_builder: Callable[..., SphinxBuilder], file_regression ): """Test that the root title is hidden.""" builder = sphinx_builder() content = "---\nsd_hide_title: true\n---\n\n# Heading\n\ncontent" builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename="sd_hide_title", extension=".xml", encoding="utf8", ) @pytest.mark.skipif(not MYST_INSTALLED, reason="myst-parser not installed") def test_sd_custom_directives( sphinx_builder: Callable[..., SphinxBuilder], file_regression ): """Test that the defaults are used.""" builder = sphinx_builder( conf_kwargs={ "extensions": ["myst_parser", "sphinx_design"], "sd_custom_directives": { "dropdown-syntax": { "inherit": "dropdown", "argument": "Syntax", "options": { "color": "primary", "icon": "code", }, } }, } ) content = "# Heading\n\n```{dropdown-syntax}\ncontent\n```" builder.src_path.joinpath("index.md").write_text(content, encoding="utf8") builder.build() doctree = builder.get_doctree("index", post_transforms=False) doctree.attributes.pop("translation_progress", None) # added in sphinx 7.1 file_regression.check( doctree.pformat(), basename="sd_custom_directives", extension=".xml", encoding="utf8", ) sphinx-design-0.6.1/tests/test_snippets/000077500000000000000000000000001465316142500203535ustar00rootroot00000000000000sphinx-design-0.6.1/tests/test_snippets/sd_custom_directives.xml000066400000000000000000000006541465316142500253230ustar00rootroot00000000000000
Heading <container body_classes="" chevron="True" container_classes="sd-mb-3" design_component="dropdown" has_title="True" icon="code" is_div="True" opened="False" title_classes="sd-bg-primary sd-bg-text-primary" type="dropdown"> <rubric> Syntax <paragraph> content ������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/sd_hide_title.xml�������������������������������������������0000664�0000000�0000000�00000000246�14653161425�0023677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title classes="sd-d-none"> Heading <paragraph> content ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_article-info.xml�������������������������������0000664�0000000�0000000�00000006001�14653161425�0026255�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-p-0 sd-mt-2 sd-mb-4 sd-p-2 sd-outline-muted sd-rounded-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-gx-2 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <reference refuri="https://executablebooks.org/"> <image alt="" candidates="{'*': 'images/ebp-logo.png'}" classes="sd-avatar-sm sd-outline-muted" uri="images/ebp-logo.png"> <container classes="sd-col sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-3 sd-gx-3 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> Executable Books <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-calendar" viewBox="0 0 16 16" aria-hidden="true"><path d="M4.75 0a.75.75 0 0 1 .75.75V2h5V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 0 1 4.75 0ZM2.5 7.5v6.75c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V7.5Zm10.75-4H2.75a.25.25 0 0 0-.25.25V6h11V3.75a.25.25 0 0 0-.25-.25Z"></path></svg> Jul 24, 2021 <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-clock" viewBox="0 0 16 16" aria-hidden="true"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm7-3.25v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5a.75.75 0 0 1 1.5 0Z"></path></svg> 5 min read �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_badge-basic.xml��������������������������������0000664�0000000�0000000�00000004473�14653161425�0026035�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <inline classes="sd-sphinx-override sd-badge"> plain badge <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary"> primary , <inline classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary"> primary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary"> secondary , <inline classes="sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary"> secondary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success"> success , <inline classes="sd-sphinx-override sd-badge sd-outline-success sd-text-success"> success-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info"> info , <inline classes="sd-sphinx-override sd-badge sd-outline-info sd-text-info"> info-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning"> warning , <inline classes="sd-sphinx-override sd-badge sd-outline-warning sd-text-warning"> warning-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger"> danger , <inline classes="sd-sphinx-override sd-badge sd-outline-danger sd-text-danger"> danger-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light"> light , <inline classes="sd-sphinx-override sd-badge sd-outline-light sd-text-light"> light-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark"> dark , <inline classes="sd-sphinx-override sd-badge sd-outline-dark sd-text-dark"> dark-line �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_badge-link.xml���������������������������������0000664�0000000�0000000�00000001011�14653161425�0025672�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary" refuri="https://example.com"> <inline> explicit title �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_button-link.xml��������������������������������0000664�0000000�0000000�00000002202�14653161425�0026146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> Button text <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <inline classes="sd-d-grid"> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary" refuri="https://example.com"> <inline> https://example.com ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-basic.xml���������������������������������0000664�0000000�0000000�00000001120�14653161425�0025666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-carousel.xml������������������������������0000664�0000000�0000000�00000005673�14653161425�0026443�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-sphinx-override sd-cards-carousel sd-card-cols-2" design_component="card-carousel" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 1 <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 2 <paragraph classes="sd-card-text"> Longer <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 3 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 4 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 5 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 6 ���������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-head-foot.xml�����������������������������0000664�0000000�0000000�00000001650�14653161425�0026463�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer ����������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-images.xml��������������������������������0000664�0000000�0000000�00000007374�14653161425�0026073�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black" design_component="card" is_div="True"> <image alt="my text" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img" uri="images/particle_background.jpg"> <container classes="sd-card-img-overlay" design_component="card-overlay" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Text <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-top" uri="images/particle_background.jpg"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-bottom" uri="images/particle_background.jpg"> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-link.xml����������������������������������0000664�0000000�0000000�00000010467�14653161425�0025560�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="cards-clickable"> <section ids="clickable-cards cards-clickable" names="clickable\ cards cards-clickable"> <title> Clickable cards <paragraph> Using the <literal> link and <literal> link-type options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" refuri="https://example.com"> <inline> https://example.com <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" refuri="https://example.com"> <inline> example.com <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards-clickable reference target. <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" internal="True" refid="cards-clickable"> <inline classes="std std-ref"> Clickable cards <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards-clickable reference target. <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" internal="True" refid="cards-clickable"> <inline classes="std std-ref"> clickable cards ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_card-title-link.xml����������������������������0000664�0000000�0000000�00000001673�14653161425�0026676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="target"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" ids="target" is_div="True" names="target"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <reference refuri="https://example.com"> https://example.com <reference internal="True" refid="target"> <inline classes="std std-ref"> link <paragraph classes="sd-card-text"> Card content ���������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_div-basic.xml����������������������������������0000664�0000000�0000000�00000000430�14653161425�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-text-center sd-font-italic sd-text-primary" design_component="div" is_div="True"> <paragraph> Some CSS styled text ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_dropdown-basic.xml�����������������������������0000664�0000000�0000000�00000006312�14653161425�0026621�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header"> <inline classes="sd-summary-text"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-kebab-horizontal no-title" viewBox="0 0 24 24" aria-hidden="true"><path d="M20 14a2 2 0 1 1-.001-3.999A2 2 0 0 1 20 14ZM6 12a2 2 0 1 1-3.999.001A2 2 0 0 1 6 12Zm8 0a2 2 0 1 1-3.999.001A2 2 0 0 1 14 12Z"></path></svg> <inline classes="sd-summary-state-marker sd-summary-chevron-right"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header"> <inline classes="sd-summary-text"> Dropdown title <inline classes="sd-summary-state-marker sd-summary-chevron-right"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-mb-3" opened="True"> <dropdown_title classes="sd-summary-title sd-card-header"> <inline classes="sd-summary-text"> Open dropdown <inline classes="sd-summary-state-marker sd-summary-chevron-right"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z"></path></svg> <container classes="sd-summary-content sd-card-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_dropdown-options.xml���������������������������0000664�0000000�0000000�00000003650�14653161425�0027235�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <dropdown_main classes="sd-sphinx-override sd-dropdown sd-card sd-m-1 class-container" ids="target" opened="False"> <dropdown_title classes="sd-summary-title sd-card-header class-title sd-bg-info sd-bg-text-info"> <raw classes="sd-summary-icon" format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-alert" viewBox="0 0 16 16" aria-hidden="true"><path d="M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></svg> <inline classes="sd-summary-text"> Title <inline classes="sd-summary-state-marker sd-summary-chevron-right"> <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 0Z"></path></svg> <container classes="sd-summary-content sd-card-body class-body" design_component="dropdown-body" is_div="True"> <paragraph classes="sd-card-text"> Dropdown content <paragraph> <reference internal="True" refid="target"> <inline classes="std std-ref"> Title , <reference internal="True" refid="target"> <inline classes="std std-ref"> text ����������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_grid-basic.xml���������������������������������0000664�0000000�0000000�00000002043�14653161425�0025707�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-2 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> A <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> B <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> C <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> D ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_grid-card-columns.xml��������������������������0000664�0000000�0000000�00000003526�14653161425�0027224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row sd-col-auto sd-col-xs-auto sd-col-sm-auto sd-col-md-auto sd-col-lg-auto" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-6 sd-col-md-6 sd-col-lg-6" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-12 sd-col-md-12 sd-col-lg-12" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> C ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_grid-card.xml����������������������������������0000664�0000000�0000000�00000003261�14653161425�0025542�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 1 <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 2 <paragraph classes="sd-card-text"> B �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_grid-gutter.xml��������������������������������0000664�0000000�0000000�00000004702�14653161425�0026144�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-3 sd-g-xs-3 sd-g-sm-3 sd-g-md-4 sd-g-lg-5" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B ��������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_grid-nested.xml��������������������������������0000664�0000000�0000000�00000012300�14653161425�0026105�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.1 <paragraph classes="sd-card-text"> Multi-line <paragraph classes="sd-card-text"> content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.1 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.3 <paragraph classes="sd-card-text"> Content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_icon-fontawesome.xml���������������������������0000664�0000000�0000000�00000000424�14653161425�0027161�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> An icon <fontawesome classes="fas fa-spinner sd-bg-primary sd-bg-text-primary" icon="spinner"> , some more text. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_icon-material-design.xml�����������������������0000664�0000000�0000000�00000022131�14653161425�0027676�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <bullet_list bullet="-"> <list_item> <paragraph> A regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="2.0em" height="2.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text <list_item> <paragraph> A coloured regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><g><path d="M0,0h24v24H0V0z" fill="none"></path><path d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"></path></g></svg> , some more text. <list_item> <paragraph> A coloured outline icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A coloured sharp icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.44 12.99l-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured round icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M19.5,12c0-0.23-0.01-0.45-0.03-0.68l1.86-1.41c0.4-0.3,0.51-0.86,0.26-1.3l-1.87-3.23c-0.25-0.44-0.79-0.62-1.25-0.42 l-2.15,0.91c-0.37-0.26-0.76-0.49-1.17-0.68l-0.29-2.31C14.8,2.38,14.37,2,13.87,2h-3.73C9.63,2,9.2,2.38,9.14,2.88L8.85,5.19 c-0.41,0.19-0.8,0.42-1.17,0.68L5.53,4.96c-0.46-0.2-1-0.02-1.25,0.42L2.41,8.62c-0.25,0.44-0.14,0.99,0.26,1.3l1.86,1.41 C4.51,11.55,4.5,11.77,4.5,12s0.01,0.45,0.03,0.68l-1.86,1.41c-0.4,0.3-0.51,0.86-0.26,1.3l1.87,3.23c0.25,0.44,0.79,0.62,1.25,0.42 l2.15-0.91c0.37,0.26,0.76,0.49,1.17,0.68l0.29,2.31C9.2,21.62,9.63,22,10.13,22h3.73c0.5,0,0.93-0.38,0.99-0.88l0.29-2.31 c0.41-0.19,0.8-0.42,1.17-0.68l2.15,0.91c0.46,0.2,1,0.02,1.25-0.42l1.87-3.23c0.25-0.44,0.14-0.99-0.26-1.3l-1.86-1.41 C19.49,12.45,19.5,12.23,19.5,12z M12.04,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.97,15.5,12.04,15.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured two-tone icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" opacity=".3"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A fixed size icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="24.0px" height="24.0px" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_icon-octicon.xml�������������������������������0000664�0000000�0000000�00000001502�14653161425�0026266�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> A coloured icon: <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-report sd-text-info" viewBox="0 0 16 16" aria-hidden="true"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></svg> , some more text. ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_tab-basic.xml����������������������������������0000664�0000000�0000000�00000001561�14653161425�0025534�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 �����������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_tab-code-set.xml�������������������������������0000664�0000000�0000000�00000002232�14653161425�0026152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0" sync_group="code" sync_id="python"> PYTHON <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{'linenostart': 1}" language="python" linenos="False" source="snippet.py" xml:space="preserve"> a = 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1" sync_group="code" sync_id="javascript"> JAVASCRIPT <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{}" language="javascript" linenos="False" xml:space="preserve"> a = 1; ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_tab-options.xml��������������������������������0000664�0000000�0000000�00000001603�14653161425�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set class-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label class-label" ids="target" input_id="sd-tab-item-0"> <strong> Label <container classes="sd-tab-content class-content" design_component="tab-content" is_div="True"> <paragraph> Content <paragraph> <reference internal="True" refid="target"> <inline classes="std std-ref"> Label , <reference internal="True" refid="target"> <inline classes="std std-ref"> text �����������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_post_tab-sync.xml�����������������������������������0000664�0000000�0000000�00000003414�14653161425�0025426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-0" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-0" sync_group="category" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-1" set_id="sd-tab-set-0" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-1" sync_group="category" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <sd_tab_input checked="True" id="sd-tab-item-2" set_id="sd-tab-set-1" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-2" sync_group="category" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <sd_tab_input checked="False" id="sd-tab-item-3" set_id="sd-tab-set-1" type="radio"> <sd_tab_label classes="sd-tab-label" input_id="sd-tab-item-3" sync_group="category" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_article-info.xml��������������������������������0000664�0000000�0000000�00000006001�14653161425�0026056�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-p-0 sd-mt-2 sd-mb-4 sd-p-2 sd-outline-muted sd-rounded-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-gx-2 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <reference refuri="https://executablebooks.org/"> <image alt="" candidates="{'*': 'images/ebp-logo.png'}" classes="sd-avatar-sm sd-outline-muted" uri="images/ebp-logo.png"> <container classes="sd-col sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-3 sd-gx-3 sd-gy-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> Executable Books <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-calendar" viewBox="0 0 16 16" aria-hidden="true"><path d="M4.75 0a.75.75 0 0 1 .75.75V2h5V.75a.75.75 0 0 1 1.5 0V2h1.25c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0 1 13.25 16H2.75A1.75 1.75 0 0 1 1 14.25V3.75C1 2.784 1.784 2 2.75 2H4V.75A.75.75 0 0 1 4.75 0ZM2.5 7.5v6.75c0 .138.112.25.25.25h10.5a.25.25 0 0 0 .25-.25V7.5Zm10.75-4H2.75a.25.25 0 0 0-.25.25V6h11V3.75a.25.25 0 0 0-.25-.25Z"></path></svg> Jul 24, 2021 <container classes="sd-col sd-col-auto sd-d-flex-row sd-align-minor-center" design_component="grid-item" is_div="True"> <paragraph classes="sd-p-0 sd-m-0"> <raw classes="sd-pr-2" format="html" xml:space="preserve"> <svg version="1.1" width="16.0px" height="16.0px" class="sd-octicon sd-octicon-clock" viewBox="0 0 16 16" aria-hidden="true"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm7-3.25v2.992l2.028.812a.75.75 0 0 1-.557 1.392l-2.5-1A.751.751 0 0 1 7 8.25v-3.5a.75.75 0 0 1 1.5 0Z"></path></svg> 5 min read �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_badge-basic.xml���������������������������������0000664�0000000�0000000�00000004473�14653161425�0025636�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <inline classes="sd-sphinx-override sd-badge"> plain badge <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary"> primary , <inline classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary"> primary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-secondary sd-bg-text-secondary"> secondary , <inline classes="sd-sphinx-override sd-badge sd-outline-secondary sd-text-secondary"> secondary-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-success sd-bg-text-success"> success , <inline classes="sd-sphinx-override sd-badge sd-outline-success sd-text-success"> success-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-info sd-bg-text-info"> info , <inline classes="sd-sphinx-override sd-badge sd-outline-info sd-text-info"> info-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-warning sd-bg-text-warning"> warning , <inline classes="sd-sphinx-override sd-badge sd-outline-warning sd-text-warning"> warning-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-danger sd-bg-text-danger"> danger , <inline classes="sd-sphinx-override sd-badge sd-outline-danger sd-text-danger"> danger-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-light sd-bg-text-light"> light , <inline classes="sd-sphinx-override sd-badge sd-outline-light sd-text-light"> light-line <paragraph> <inline classes="sd-sphinx-override sd-badge sd-bg-dark sd-bg-text-dark"> dark , <inline classes="sd-sphinx-override sd-badge sd-outline-dark sd-text-dark"> dark-line �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_badge-link.xml����������������������������������0000664�0000000�0000000�00000001011�14653161425�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-badge sd-bg-primary sd-bg-text-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-badge sd-outline-primary sd-text-primary" refuri="https://example.com"> <inline> explicit title �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_button-link.xml���������������������������������0000664�0000000�0000000�00000002202�14653161425�0025747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap" refuri="https://example.com"> <inline> Button text <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-primary sd-shadow-sm" refuri="https://example.com"> <inline> https://example.com <paragraph> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-outline-primary" refuri="https://example.com"> <inline> https://example.com <paragraph> <inline classes="sd-d-grid"> <reference classes="sd-sphinx-override sd-btn sd-text-wrap sd-btn-secondary" refuri="https://example.com"> <inline> https://example.com ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-basic.xml����������������������������������0000664�0000000�0000000�00000001120�14653161425�0025467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-carousel.xml�������������������������������0000664�0000000�0000000�00000005673�14653161425�0026244�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-sphinx-override sd-cards-carousel sd-card-cols-2" design_component="card-carousel" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 1 <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 2 <paragraph classes="sd-card-text"> Longer <paragraph classes="sd-card-text"> content <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 3 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 4 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 5 <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> card 6 ���������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-head-foot.xml������������������������������0000664�0000000�0000000�00000001650�14653161425�0026264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <paragraph classes="sd-card-text"> Card content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer ����������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-images.xml���������������������������������0000664�0000000�0000000�00000007374�14653161425�0025674�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-3 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-text-black" design_component="card" is_div="True"> <image alt="my text" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img" uri="images/particle_background.jpg"> <container classes="sd-card-img-overlay" design_component="card-overlay" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Text <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-top" uri="images/particle_background.jpg"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-header" design_component="card-header" is_div="True"> <paragraph classes="sd-card-text"> Header <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title <paragraph classes="sd-card-text"> Content <container classes="sd-card-footer" design_component="card-footer" is_div="True"> <paragraph classes="sd-card-text"> Footer <image alt="" candidates="{'*': 'images/particle_background.jpg'}" classes="sd-card-img-bottom" uri="images/particle_background.jpg"> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-link.xml�����������������������������������0000664�0000000�0000000�00000010630�14653161425�0025351�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="cards-clickable"> <section ids="clickable-cards cards-clickable" names="clickable\ cards cards-clickable"> <title> Clickable cards <paragraph> Using the <literal> link and <literal> link-type options, you can turn an entire card into a clickable link. Try hovering over then clicking on the cards below: <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" refuri="https://example.com"> <inline> https://example.com <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (external) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to <reference refuri="https://example.com"> https://example.com . <PassthroughTextElement> <reference classes="sd-stretched-link sd-hide-link-text" refuri="https://example.com"> <inline> example.com <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards-clickable reference target. <PassthroughTextElement> <pending_xref classes="sd-stretched-link sd-hide-link-text" refdoc="index" refdomain="std" refexplicit="False" reftarget="cards-clickable" reftype="ref" refwarn="True"> <inline> cards-clickable <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm sd-card-hover" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Clickable Card (internal) <paragraph classes="sd-card-text"> The entire card can be clicked to navigate to the <literal> cards-clickable reference target. <PassthroughTextElement> <pending_xref classes="sd-stretched-link sd-hide-link-text" refdoc="index" refdomain="std" refexplicit="True" reftarget="cards-clickable" reftype="ref" refwarn="True"> <inline> clickable cards ��������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_card-title-link.xml�����������������������������0000664�0000000�0000000�00000002006�14653161425�0026466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <target refid="target"> <container classes="sd-card sd-sphinx-override sd-mb-3 sd-shadow-sm" design_component="card" ids="target" is_div="True" names="target"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Card Title <reference refuri="https://example.com"> https://example.com <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> link <paragraph classes="sd-card-text"> Card content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_div-basic.xml�����������������������������������0000664�0000000�0000000�00000000430�14653161425�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-text-center sd-font-italic sd-text-primary" design_component="div" is_div="True"> <paragraph> Some CSS styled text ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_dropdown-basic.xml������������������������������0000664�0000000�0000000�00000001716�14653161425�0026425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container body_classes="" chevron="True" container_classes="sd-mb-3" design_component="dropdown" has_title="False" icon="True" is_div="True" opened="False" title_classes="" type="dropdown"> <paragraph> Dropdown content <container body_classes="" chevron="True" container_classes="sd-mb-3" design_component="dropdown" has_title="True" icon="True" is_div="True" opened="False" title_classes="" type="dropdown"> <rubric> Dropdown title <paragraph> Dropdown content <container body_classes="" chevron="True" container_classes="sd-mb-3" design_component="dropdown" has_title="True" icon="True" is_div="True" opened="True" title_classes="" type="dropdown"> <rubric> Open dropdown <paragraph> Dropdown content ��������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_dropdown-options.xml����������������������������0000664�0000000�0000000�00000001652�14653161425�0027036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container body_classes="class-body" chevron="True" container_classes="sd-m-1 class-container" design_component="dropdown" has_title="True" icon="alert" is_div="True" opened="False" title_classes="class-title sd-bg-info sd-bg-text-info" type="dropdown"> <rubric ids="target" names="target"> Title <paragraph> Dropdown content <paragraph> <pending_xref refdoc="index" refdomain="std" refexplicit="False" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> target , <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> text ��������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_grid-basic.xml����������������������������������0000664�0000000�0000000�00000002043�14653161425�0025510�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4 sd-border-1" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-2 sd-row-cols-md-3 sd-row-cols-lg-4" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> A <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> B <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> C <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <paragraph> D ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_grid-card-columns.xml���������������������������0000664�0000000�0000000�00000003526�14653161425�0027025�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row sd-col-auto sd-col-xs-auto sd-col-sm-auto sd-col-md-auto sd-col-lg-auto" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-6 sd-col-md-6 sd-col-lg-6" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-col sd-d-flex-row sd-col-12 sd-col-xs-12 sd-col-sm-12 sd-col-md-12 sd-col-lg-12" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> C ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_grid-card.xml�����������������������������������0000664�0000000�0000000�00000003261�14653161425�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 1 <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Title 2 <paragraph classes="sd-card-text"> B �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_grid-gutter.xml���������������������������������0000664�0000000�0000000�00000004702�14653161425�0025745�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-2 sd-row-cols-xs-2 sd-row-cols-sm-2 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-3 sd-g-xs-3 sd-g-sm-3 sd-g-md-4 sd-g-lg-5" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> A <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <paragraph classes="sd-card-text"> B ��������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_grid-nested.xml���������������������������������0000664�0000000�0000000�00000012300�14653161425�0025706�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-2 sd-row-cols-lg-2 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.1 <paragraph classes="sd-card-text"> Multi-line <paragraph classes="sd-card-text"> content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 1.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-column" design_component="grid-item" is_div="True"> <container classes="sd-container-fluid sd-sphinx-override sd-mb-4" design_component="grid-container" is_div="True"> <container classes="sd-row sd-row-cols-1 sd-row-cols-xs-1 sd-row-cols-sm-1 sd-row-cols-md-1 sd-row-cols-lg-1 sd-g-1 sd-g-xs-1 sd-g-sm-1 sd-g-md-1 sd-g-lg-1" design_component="grid-row" is_div="True"> <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.1 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.2 <paragraph classes="sd-card-text"> Content <container classes="sd-col sd-d-flex-row" design_component="grid-item" is_div="True"> <container classes="sd-card sd-sphinx-override sd-w-100 sd-shadow-sm" design_component="card" is_div="True"> <container classes="sd-card-body" design_component="card-body" is_div="True"> <container classes="sd-card-title sd-font-weight-bold" design_component="card-title" is_div="True"> <PassthroughTextElement> Item 2.3 <paragraph classes="sd-card-text"> Content ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_icon-fontawesome.xml����������������������������0000664�0000000�0000000�00000000424�14653161425�0026762�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> An icon <fontawesome classes="fas fa-spinner sd-bg-primary sd-bg-text-primary" icon="spinner"> , some more text. ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_icon-material-design.xml������������������������0000664�0000000�0000000�00000022131�14653161425�0027477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <bullet_list bullet="-"> <list_item> <paragraph> A regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="2.0em" height="2.0em" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text <list_item> <paragraph> A coloured regular icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><g><path d="M0,0h24v24H0V0z" fill="none"></path><path d="M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z"></path></g></svg> , some more text. <list_item> <paragraph> A coloured outline icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98 0 .33.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A coloured sharp icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.44 12.99l-.01.02c.04-.33.08-.67.08-1.01 0-.34-.03-.66-.07-.99l.01.02 2.44-1.92-2.43-4.22-2.87 1.16.01.01c-.52-.4-1.09-.74-1.71-1h.01L14.44 2H9.57l-.44 3.07h.01c-.62.26-1.19.6-1.71 1l.01-.01-2.88-1.17-2.44 4.22 2.44 1.92.01-.02c-.04.33-.07.65-.07.99 0 .34.03.68.08 1.01l-.01-.02-2.1 1.65-.33.26 2.43 4.2 2.88-1.15-.02-.04c.53.41 1.1.75 1.73 1.01h-.03L9.58 22h4.85s.03-.18.06-.42l.38-2.65h-.01c.62-.26 1.2-.6 1.73-1.01l-.02.04 2.88 1.15 2.43-4.2s-.14-.12-.33-.26l-2.11-1.66zM12 15.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured round icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M19.5,12c0-0.23-0.01-0.45-0.03-0.68l1.86-1.41c0.4-0.3,0.51-0.86,0.26-1.3l-1.87-3.23c-0.25-0.44-0.79-0.62-1.25-0.42 l-2.15,0.91c-0.37-0.26-0.76-0.49-1.17-0.68l-0.29-2.31C14.8,2.38,14.37,2,13.87,2h-3.73C9.63,2,9.2,2.38,9.14,2.88L8.85,5.19 c-0.41,0.19-0.8,0.42-1.17,0.68L5.53,4.96c-0.46-0.2-1-0.02-1.25,0.42L2.41,8.62c-0.25,0.44-0.14,0.99,0.26,1.3l1.86,1.41 C4.51,11.55,4.5,11.77,4.5,12s0.01,0.45,0.03,0.68l-1.86,1.41c-0.4,0.3-0.51,0.86-0.26,1.3l1.87,3.23c0.25,0.44,0.79,0.62,1.25,0.42 l2.15-0.91c0.37,0.26,0.76,0.49,1.17,0.68l0.29,2.31C9.2,21.62,9.63,22,10.13,22h3.73c0.5,0,0.93-0.38,0.99-0.88l0.29-2.31 c0.41-0.19,0.8-0.42,1.17-0.68l2.15,0.91c0.46,0.2,1,0.02,1.25-0.42l1.87-3.23c0.25-0.44,0.14-0.99-0.26-1.3l-1.86-1.41 C19.49,12.45,19.5,12.23,19.5,12z M12.04,15.5c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S13.97,15.5,12.04,15.5z"></path></svg> , some more text. <list_item> <paragraph> A coloured two-tone icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="3.0em" height="3.0em" class="sd-material-icon sd-material-icon-settings sd-text-success" viewBox="0 0 24 24" aria-hidden="true"><path d="M0 0h24v24H0V0z" fill="none"></path><path d="M19.28 8.6l-.7-1.21-1.27.51-1.06.43-.91-.7c-.39-.3-.8-.54-1.23-.71l-1.06-.43-.16-1.13L12.7 4h-1.4l-.19 1.35-.16 1.13-1.06.44c-.41.17-.82.41-1.25.73l-.9.68-1.05-.42-1.27-.52-.7 1.21 1.08.84.89.7-.14 1.13c-.03.3-.05.53-.05.73s.02.43.05.73l.14 1.13-.89.7-1.08.84.7 1.21 1.27-.51 1.06-.43.91.7c.39.3.8.54 1.23.71l1.06.43.16 1.13.19 1.36h1.39l.19-1.35.16-1.13 1.06-.43c.41-.17.82-.41 1.25-.73l.9-.68 1.04.42 1.27.51.7-1.21-1.08-.84-.89-.7.14-1.13c.04-.31.05-.52.05-.73 0-.21-.02-.43-.05-.73l-.14-1.13.89-.7 1.1-.84zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" opacity=".3"></path><path d="M19.43 12.98c.04-.32.07-.64.07-.98 0-.34-.03-.66-.07-.98l2.11-1.65c.19-.15.24-.42.12-.64l-2-3.46c-.09-.16-.26-.25-.44-.25-.06 0-.12.01-.17.03l-2.49 1c-.52-.4-1.08-.73-1.69-.98l-.38-2.65C14.46 2.18 14.25 2 14 2h-4c-.25 0-.46.18-.49.42l-.38 2.65c-.61.25-1.17.59-1.69.98l-2.49-1c-.06-.02-.12-.03-.18-.03-.17 0-.34.09-.43.25l-2 3.46c-.13.22-.07.49.12.64l2.11 1.65c-.04.32-.07.65-.07.98s.03.66.07.98l-2.11 1.65c-.19.15-.24.42-.12.64l2 3.46c.09.16.26.25.44.25.06 0 .12-.01.17-.03l2.49-1c.52.4 1.08.73 1.69.98l.38 2.65c.03.24.24.42.49.42h4c.25 0 .46-.18.49-.42l.38-2.65c.61-.25 1.17-.59 1.69-.98l2.49 1c.06.02.12.03.18.03.17 0 .34-.09.43-.25l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.65zm-1.98-1.71c.04.31.05.52.05.73 0 .21-.02.43-.05.73l-.14 1.13.89.7 1.08.84-.7 1.21-1.27-.51-1.04-.42-.9.68c-.43.32-.84.56-1.25.73l-1.06.43-.16 1.13-.2 1.35h-1.4l-.19-1.35-.16-1.13-1.06-.43c-.43-.18-.83-.41-1.23-.71l-.91-.7-1.06.43-1.27.51-.7-1.21 1.08-.84.89-.7-.14-1.13c-.03-.31-.05-.54-.05-.74s.02-.43.05-.73l.14-1.13-.89-.7-1.08-.84.7-1.21 1.27.51 1.04.42.9-.68c.43-.32.84-.56 1.25-.73l1.06-.43.16-1.13.2-1.35h1.39l.19 1.35.16 1.13 1.06.43c.43.18.83.41 1.23.71l.91.7 1.06-.43 1.27-.51.7 1.21-1.07.85-.89.7.14 1.13zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"></path></svg> , some more text. <list_item> <paragraph> A fixed size icon: <raw format="html" xml:space="preserve"> <svg version="4.0.0.63c5cb3" width="24.0px" height="24.0px" class="sd-material-icon sd-material-icon-data_exploration" viewBox="0 0 24 24" aria-hidden="true"><rect fill="none" height="24" width="24"></rect><path d="M12,2C6.48,2,2,6.48,2,12c0,1.33,0.26,2.61,0.74,3.77L8,10.5l3.3,2.78L14.58,10H13V8h5v5h-2v-1.58L11.41,16l-3.29-2.79 l-4.4,4.4C5.52,20.26,8.56,22,12,22h8c1.1,0,2-0.9,2-2v-8C22,6.48,17.52,2,12,2z M19.5,20.5c-0.55,0-1-0.45-1-1s0.45-1,1-1 s1,0.45,1,1S20.05,20.5,19.5,20.5z"></path></svg> , some more text. ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_icon-octicon.xml��������������������������������0000664�0000000�0000000�00000001502�14653161425�0026067�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <paragraph> A coloured icon: <raw format="html" xml:space="preserve"> <svg version="1.1" width="1.0em" height="1.0em" class="sd-octicon sd-octicon-report sd-text-info" viewBox="0 0 16 16" aria-hidden="true"><path d="M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z"></path></svg> , some more text. ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_tab-basic.xml�����������������������������������0000664�0000000�0000000�00000001554�14653161425�0025337�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ����������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_tab-code-set.xml��������������������������������0000664�0000000�0000000�00000002123�14653161425�0025752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True"> <rubric classes="sd-tab-label" sync_group="code" sync_id="python"> PYTHON <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{'linenostart': 1}" language="python" source="snippet.py" xml:space="preserve"> a = 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True"> <rubric classes="sd-tab-label" sync_group="code" sync_id="javascript"> JAVASCRIPT <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <literal_block force="False" highlight_args="{}" language="javascript" xml:space="preserve"> a = 1; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_tab-options.xml���������������������������������0000664�0000000�0000000�00000002073�14653161425�0025746�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set class-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item class-container" design_component="tab-item" is_div="True" selected="True"> <rubric classes="sd-tab-label class-label" ids="target" names="target"> <strong> Label <container classes="sd-tab-content class-content" design_component="tab-content" is_div="True"> <paragraph> Content <paragraph> <pending_xref refdoc="index" refdomain="std" refexplicit="False" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> target , <pending_xref refdoc="index" refdomain="std" refexplicit="True" reftarget="target" reftype="ref" refwarn="True"> <inline classes="xref std std-ref"> text ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tests/test_snippets/snippet_pre_tab-sync.xml������������������������������������0000664�0000000�0000000�00000003402�14653161425�0025224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<document source="index"> <section ids="heading" names="heading"> <title> Heading <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_group="category" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_group="category" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 <container classes="sd-tab-set" design_component="tab-set" is_div="True"> <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_group="category" sync_id="key1"> Label1 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 1 <container classes="sd-tab-item" design_component="tab-item" is_div="True" selected="False"> <rubric classes="sd-tab-label" sync_group="category" sync_id="key2"> Label2 <container classes="sd-tab-content" design_component="tab-content" is_div="True"> <paragraph> Content 2 ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������sphinx-design-0.6.1/tox.ini�������������������������������������������������������������������������0000664�0000000�0000000�00000002626�14653161425�0015626�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# To use tox, see https://tox.readthedocs.io # (you may also want to install tox-uv) # then run `tox` or `tox -- {pytest args}` # run in parallel using `tox -p` [tox] envlist = py39 [testenv] usedevelop = true [testenv:py{39,310,311,312,313}] description = Run unit tests with this Python version extras = testing commands = pytest {posargs} [testenv:py{39,310,311,312,313}-no-myst] description = Run unit tests with this Python version extras = testing-no-myst commands = pytest {posargs} [testenv:docs-{alabaster,rtd,pydata,sbt,furo,im}] description = Run documentation build for this theme extras = rtd rtd: theme_rtd pydata: theme_pydata sbt: theme_sbt furo: theme_furo im: theme_im allowlist_externals = echo passenv = BUILDER CLEAN TERM setenv = alabaster: SPHINX_THEME = alabaster rtd: SPHINX_THEME = sphinx_rtd_theme pydata: SPHINX_THEME = pydata_sphinx_theme sbt: SPHINX_THEME = sphinx_book_theme furo: SPHINX_THEME = furo im: SPHINX_THEME = sphinx_immaterial commands_pre = python -c "import shutil; shutil.rmtree('docs/_build/{env:BUILDER:html}/{env:SPHINX_THEME:}', ignore_errors=True) if '{env:CLEAN:}' else None" commands = sphinx-build -nW --keep-going {posargs} -b {env:BUILDER:html} docs/ docs/_build/{env:BUILDER:html}/{env:SPHINX_THEME:} commands_post = echo "open docs/_build//{env:BUILDER:html}/{env:SPHINX_THEME:}/index.html" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������